-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rule:
annotation-without-metadata
(#882)
Fixes #874 Signed-off-by: Anders Eknert <[email protected]>
- Loading branch information
1 parent
8110bc5
commit 6153d57
Showing
7 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# METADATA | ||
# description: Annotation without metadata | ||
package regal.rules.bugs["annotation-without-metadata"] | ||
|
||
import rego.v1 | ||
|
||
import data.regal.ast | ||
import data.regal.result | ||
|
||
report contains violation if { | ||
some block in ast.comments.blocks | ||
|
||
block[0].Location.col == 1 | ||
ast.comments.annotation_match(trim_space(block[0].Text)) | ||
|
||
violation := result.fail(rego.metadata.chain(), result.location(block[0])) | ||
} |
60 changes: 60 additions & 0 deletions
60
bundle/regal/rules/bugs/annotation_without_metadata_test.rego
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package regal.rules.bugs["annotation-without-metadata_test"] | ||
|
||
import rego.v1 | ||
|
||
import data.regal.ast | ||
import data.regal.config | ||
|
||
import data.regal.rules.bugs["annotation-without-metadata"] as rule | ||
|
||
test_fail_annotation_without_metadata if { | ||
module := ast.with_rego_v1(` | ||
# title: allow | ||
allow := false | ||
`) | ||
|
||
r := rule.report with input as module | ||
r == {{ | ||
"category": "bugs", | ||
"description": "Annotation without metadata", | ||
"level": "error", | ||
"location": {"col": 1, "file": "policy.rego", "row": 6, "text": "# title: allow"}, | ||
"related_resources": [{ | ||
"description": "documentation", | ||
"ref": config.docs.resolve_url("$baseUrl/$category/annotation-without-metadata", "bugs"), | ||
}], | ||
"title": "annotation-without-metadata", | ||
}} | ||
} | ||
|
||
test_success_annotation_with_metadata if { | ||
module := ast.with_rego_v1(` | ||
# METADATA | ||
# title: allow | ||
allow := false | ||
`) | ||
|
||
r := rule.report with input as module | ||
r == set() | ||
} | ||
|
||
test_success_annotation_but_no_metadata_location if { | ||
module := ast.with_rego_v1(` | ||
allow := false # title: allow | ||
`) | ||
|
||
r := rule.report with input as module | ||
r == set() | ||
} | ||
|
||
test_success_annotation_without_metadata_but_comment_preceeding if { | ||
module := ast.with_rego_v1(` | ||
# something that is not an annotation here will cancel this rule | ||
# as this is less likely to be a mistake... but weird | ||
# title: allow | ||
allow := false | ||
`) | ||
|
||
r := rule.report with input as module | ||
r == set() | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# annotation-without-metadata | ||
|
||
**Summary**: Annotation without metadata | ||
|
||
**Category**: Bugs | ||
|
||
**Avoid** | ||
```rego | ||
package policy | ||
import rego.v1 | ||
# description: allow allows | ||
allow if { | ||
# ... some conditions | ||
} | ||
``` | ||
|
||
**Prefer** | ||
```rego | ||
package policy | ||
import rego.v1 | ||
# METADATA | ||
# description: allow allows | ||
allow if { | ||
# ... some conditions | ||
} | ||
``` | ||
|
||
## Rationale | ||
|
||
A comment that starts with `<annotation-attribute>:` but is not part of a metadata block is likely a mistake. Add | ||
`# METADATA` above the line to turn it into a | ||
[metadata](https://www.openpolicyagent.org/docs/latest/policy-language/#annotations) block. | ||
|
||
## Configuration Options | ||
|
||
This linter rule provides the following configuration options: | ||
|
||
```yaml | ||
rules: | ||
bugs: | ||
annotation-without-metadata: | ||
# one of "error", "warning", "ignore" | ||
level: error | ||
``` | ||
## Related Resources | ||
- OPA Docs: [Annotations](https://www.openpolicyagent.org/docs/latest/policy-language/#annotations) | ||
## Community | ||
If you think you've found a problem with this rule or its documentation, would like to suggest improvements, new rules, | ||
or just talk about Regal in general, please join us in the `#regal` channel in the Styra Community | ||
[Slack](https://communityinviter.com/apps/styracommunity/signup)! |
This file contains 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