-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partial schema validation #79
Partial schema validation #79
Conversation
Some comments on the writeup:
This is a single catchall for handling missing actions, and also missing principals/resources associated with a particular action. Would it be worthwhile to include a specific action in the cross-product, but associated with an unknown principal or resource, in case the listed
Why is it weird? Seems natural to me: The fact that you are explicitly declaring the entity in your schema, with an empty record, means you are taking a stand on it. If you want it to be open, you have to declare it as open, in the schema. Same comment about not including a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't review all the testing code, just to get this posted sooner. Will do that on the next review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm making some tweaks to in
, so I'll look at the comments there once I'm done with that
f630d43
to
369b7c8
Compare
72677fd
to
045d0d9
Compare
045d0d9
to
97b40ad
Compare
b474390
to
eb07e44
Compare
2e4f436
to
c014e42
Compare
c014e42
to
f995527
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
High-level comment: it would be helpful for review to split this PR into two: one for incidental refactoring and one for changes that need to be behind the partial validation flag.
But overall looks fine, so approving as-is.
#[test] | ||
fn undeclared_entity_type_partial_schema() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add tests for templates/linked policies too.
/// The type of the context record associated with this action. | ||
pub(crate) context: Type, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also might make sense to move this change to a separate PR.
Co-authored-by: Kesha Hietala <khieta@amazon.com>
…ial-schema-validation
…validation' into feature/jkastner/partial-schema-validation
Experimental implementation of partial schema validation as described in cedar-policy/rfcs#8.
The experimental implementation does not include the
additionalMemberOfTypes
andadditionalMemberOf
fields discussed in the RFC. I'm not convinced these are neccecary for the feature as a whole to be useful, and they require additional changes inside existing validation code.I'm marking this ready for review as an experimental feature, so reviewers do not need to review the semantics of partial schema validation. They should be sure to review:
partial-schema
feature.