Enforce Dolby Vision profile policy #61
Reference in New Issue
Block a user
Delete Branch "issue/12-hdr-rule"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Issue
Closes #12
Test plan
just ci@@ -203,0 +221,4 @@.iter().any(|blocked| {blocked.profile == profile.profile&& blocked.compatibility_id.is_none_or(|compatibility_id| {The
Some(compatibility_id)arm of the blocked-entry match is untested: all three tests use wildcard entries (compatibility_id: None) — 5 and 7 reject via the wildcard, and 8.1 passes only because profile 8 is absent from the list. Add a test with a blocked entry carryingSome(cid)that rejects the matching compat id and passes a different one.Reviewed
68e276e. Previous finding addressed —compatibility_specific_rule_matches_only_that_idcovers theSome(cid)arm. No new findings.