Choice rule payload validation path#253
Merged
agrare merged 2 commits intoAug 8, 2024
Merged
Conversation
kbrock
commented
Aug 1, 2024
| context "referencing the global context" do | ||
| it "with a missing value" do | ||
| expect(described_class.new("$$.foo").value({})).to be_nil | ||
| expect { described_class.new("$$.foo").value({}, {"foo" => "bar"}) }.to raise_error(Floe::PathError, "Path [$$.foo] references an invalid value") |
Member
Author
There was a problem hiding this comment.
this is the essence of the issue
580ca92 to
dceeab9
Compare
Member
Author
|
update:
|
Before: If the path referenced a missing value in the input, treat it as a nil. After: If the path references a missing value in the input, raise an error. This makes it necessary to catch errors and ensure that the context is marked appropriately. Since a path lookup is so stringent, introduce the presence_check.
dceeab9 to
22c08f9
Compare
Member
|
Checked commits kbrock/floe@29f923a~...22c08f9 with ruby 3.1.5, rubocop 1.56.3, haml-lint 0.51.0, and yamllint |
Member
Author
|
update:
|
Member
Author
|
WIP: moving stuff around. Want to get other stuff merged before this. |
Member
Author
|
WIP: oops. thought this was something else. |
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.
extracted from #189
Before
If the path referenced a missing value in the input, treat it as a nil.
After
If the path references a missing value in the input, raise an error.
presence_checkmethod to check if it is present up front.IsPresent: falseandIsPresent: true