Fix --string non-string error reporting - #1039
Closed
He-Pin wants to merge 1 commit into
Closed
Conversation
He-Pin
force-pushed
the
fix/cli-string-non-string-error
branch
from
June 25, 2026 04:48
2dd17d0 to
cedccb2
Compare
Motivation: --string rendering of non-string values leaked internal or upickle errors, including multi and yaml-stream paths. Modification: Reject all non-string renderer visitor paths with sjsonnet.Error, wrap direct transforms, and add CLI regressions. Result: --string now fails cleanly for non-string output without internal stack traces.
He-Pin
force-pushed
the
fix/cli-string-non-string-error
branch
from
June 27, 2026 02:41
8a8b7e8 to
0b440ab
Compare
Contributor
Author
|
Superseded by combined CLI PR #1032 |
stephenamar-db
pushed a commit
that referenced
this pull request
Jun 28, 2026
…y bindings (#1032) ## Motivation Several CLI error paths leaked Java exception names (`NoSuchFileException`, `InvalidPathException`, `upickle.core.Abort`) or stack traces to end users. The `-V` short flag was ambiguously bound to `--ext-str`, `--ext-code`, and `--tla-code`. The `--string` flag produced internal errors for non-string results instead of a clean type mismatch message. Binding file paths with invalid characters (e.g. null bytes) were silently accepted. Reference implementations (C++ jsonnet, go-jsonnet, jrsonnet) reserve `-V` exclusively for `--ext-str`. This PR combines the following fixes into a single cohesive CLI hardening change: | Original PR | Fix | | --- | --- | | #1032 | Reserve `-V` exclusively for `--ext-str` | | #1034 | Report undefined CLI binding env vars with clean error | | #1035 | Make `--ext-str-file`/`--ext-code-file` lazy via importstr/import | | #1036 | Report missing input files without stack traces | | #1038 | Report output file write failures cleanly | | #1039 | Fix `--string` non-string error reporting | ## Modification ### Config / CLI parsing - Remove `short = 'V'` from `--ext-code` and `--tla-code` `@arg` annotations in `Config.scala` - Keep `short = 'V'` on `--ext-str` only - Update README help snapshot ### Error handling (`SjsonnetMainBase.scala`) - Add `CliError` class with no stack trace for clean CLI error messages - Add `handleRenderError` to wrap Jsonnet evaluation errors - Add `handleWriteFile` to wrap file I/O errors with C++/go-jsonnet-style messages - Rewrite `parseBindings` to use `HashMap` with eager `InvalidPathException` validation - Make `--ext-str-file` and `--ext-code-file` lazy (`importstr`/`import`) while still validating path syntax eagerly - Add clean type error for `--string` with non-string results (matching C++/go-jsonnet format) - Wrap output file write and multi/yaml-stream render paths with error handling ### Tests - 18 new CLI integration tests covering all error paths - `ConfigTests` verifies `-V` binds only to `--ext-str` - 24 new test resource files (jsonnet inputs + golden outputs) ## Result - All CLI errors produce clean messages matching C++/go-jsonnet conventions - `-V` binds only to `--ext-str`, matching reference implementations - `--string` rejects non-string types with clear `expected string result, got: <type>` error - Malformed binding file paths fail eagerly with clean error - Unused `--ext-str-file` bindings are lazy (file not read unless referenced) - 45/45 MainTests pass, 0 regressions in full test suite ## CLI Superset Status sjsonnet is now a superset of go-jsonnet and C++ jsonnet CLI features, with these extras: - `--yaml-out`, `--yaml-debug`, `--debug-importer`, `--debug-stats` - `--profile`, `--strict`, `--preserve-order`, `--indent` - `--fatal-warnings`, `--throw-error-for-invalid-sets` - `--max-stack`, `--max-parser-recursion-depth` - `--reverse-jpaths-priority`, `--no-trailing-newline` - `--broken-assertion-logic` (backwards compat)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
--stringmode leakedInternal error: upickle.core.Abortwhen the Jsonnet program produced a non-string result (object, array, number, boolean, null). Other implementations report a clean type error. The error path also lost the source position, making debugging harder.--stringon{}ERROR: expected string result, got: objectexpected string result, got: objectInternal error: upickle.core.Abortexpected string result, got: objectModification
SimpleVisitorthat threwupickle.core.Abortwith a typed visitor that overrides every non-string visitor method to throwsjsonnet.Errorwith a clear message including the Jsonnet type name (object,array,number,boolean,null).returnkeyword inManifestModule.scalamatch expression for idiomatic Scala.--exec --stringtests.Result
sjsonnet.Errorwith position and Jsonnet type name.fillInStackTraceoverride prevents wasted JVM stack capture.