-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add v0.2 bundle tests #112
Conversation
b1da294
to
8025e0a
Compare
Signed-off-by: Brian DeHamer <[email protected]>
db8862a
to
2d7481f
Compare
Thanks @bdehamer! |
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 did a quick pass, and LGTM! Tagging @tnytown for an additional review.
Just for xrefs: sigstore/sigstore-python#804 will add DSSE support to sigstore-python
, once complete.
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.
All of these bundles were signed with a private Sigstore instance and must be verified using a custom
trusted_root.json
.
This is sigstore/sigstore-python#821, right?
I didn't check the test assets, but the harness additions look good to me!
Yep, that's right. I'd like to get sigstore/sigstore-python#814 merged in and then move on that. |
Test the happy path of verification for DSSE bundle w/ custom trust root | ||
""" | ||
materials: BundleMaterials | ||
input_path, materials = make_materials_by_type("d.stmt.json", BundleMaterials) |
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 know I'm a bit late, but I don't think is quite right.
test/assets/d.stmt.json
should be the artifact whose hash matches what's in the in-toto statement, not the in-toto statement itself.
sigstore-go
says this test should fail, because the test/assets/d.stmt.good.sigstore
DSSE payload says the hash of the artifact should be sha512:90f22...
, and the hash of the current test/assets/d.stmt.json
is sha512:9163d...
.
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 think you're right -- this is an unfortunate consequence of having sigstore-python
be the only "acceptance" suite currently running 😅
Would you mind sending a PR for this? Otherwise I can poke at it when I have a free moment.
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.
Sure! See #114.
This might have uncovered another bug in test_verify_rejects_bad_tsa_timestamp
, although I'm not sure yet if the bug is in sigstore-go or the conformance test!
sigstore/sigstore-conformance#112 includes confromance tests with a mock Sigstore where there are no Fulcio intermediate certificates. Signed-off-by: Zach Steindler <[email protected]>
* Support Fulcio certificate "chains" that just have a root sigstore/sigstore-conformance#112 includes confromance tests with a mock Sigstore where there are no Fulcio intermediate certificates. Signed-off-by: Zach Steindler <[email protected]> * Clarify leaf CT certificate Signed-off-by: Zach Steindler <[email protected]> --------- Signed-off-by: Zach Steindler <[email protected]>
It seems like this is the behavior that `test_verify_rejects_bad_tsa_timestamp` is assuming, that was added in sigstore/sigstore-conformance#112. Signed-off-by: Zach Steindler <[email protected]>
…cy (#42) `test_verify_rejects_bad_tsa_timestamp`, which was added in sigstore/sigstore-conformance#112, expects us reject bundles that have a bad TSA timestamp when the trust root has TSA information in it. --------- Signed-off-by: Zach Steindler <[email protected]>
Adds a handful of new bundle verification tests to the suite:
All of these bundles were signed with a private Sigstore instance and must be verified using a custom
trusted_root.json
.