-
Notifications
You must be signed in to change notification settings - Fork 66
Description
Description
1.1.16 states that for each repository in use, we must validate that no one can “force push” code.
1.1.17 states that for each repository that is being used, we must verify that protected branches cannot be deleted.
The rule logic for these two benchmarks appears to be written in such a way that it produces false positives. When Allow force pushes
and Allow deletions
are checked, thus permitting the ability to force pushes and/or delete branches, Chain-Bench outputs a Passed
where a Failed
would be expected.
The opposite will happen if you have them unchecked - you'll get a Failed
result.
Looking at the rule logic in question
#Looking for default branch protection that restrict force push to branch
CbPolicy[msg] {
not is_no_branch_protection
is_branch_protection_restrict_force_push
msg := {"ids": ["1.1.16"], "status": constsLib.status.Failed}
}
#Looking for default branch protection that restrict who can delete protected branch
CbPolicy[msg] {
not is_no_branch_protection
is_branch_protection_restrict_delete_branch
msg := {"ids": ["1.1.17"], "status": constsLib.status.Failed}
}
this reads to say "when the branch is protected and disallows force pushes or deletions (in other words, if AllowForcePushes and AllowDeletions == false), produce a Failed
result. In my mind, this should read as "when the branch is protected and allows force pushes or deletes, produce a Failed
result.
Prepending not
to both L226 and L233 causes Chain-Bench to produce an expected result.