Validating and testing policies
Validating policies
You can use the Cerbos compiler to make sure that your policies are valid before pushing them to a production Cerbos instance. We recommend setting up a git hook or a CI step to run the Cerbos compiler before you push any policy changes to production.
docker run -i -t -v /path/to/policy/dir:/policies ghcr.io/cerbos/cerbos:0.18.0 compile /policies
Testing policies
You can write optional tests for policies and run them as part of the compilation stage to make sure that the policies do exactly what you expect.
Tests are defined using the familiar YAML format as well. Make sure that your tests are in a separate directory from the policies to avoid confusion. We recommend storing them in a top-level directory named tests
. A test file must have _test
suffix in the name and one of the following file extensions: 'yaml', 'yml', or 'json'. For example, album_test.yml
, album_test.yaml
or album_test.json
.
---
name: AlbumObjectTestSuite (1)
description: Tests for verifying the album:object resource policy (2)
principals: (3)
alicia:
id: aliciaID
roles:
- user
bradley:
id: bradleyID
roles:
- user
resources: (4)
alicia_album:
id: XX125
kind: album:object
attr:
owner: aliciaID
public: false
flagged: false
bradley_album:
id: XX250
kind: album:object
attr:
owner: bradleyID
public: false
flagged: false
auxData: (5)
validJWT:
jwt:
iss: my.domain
aud: ["x", "y"]
myField: value
tests: (6)
- name: Accessing an album (7)
input: (8)
principals: (9)
- alicia
- bradley
resources: (10)
- alicia_album
- bradley_album
actions: (11)
- view
- delete
auxData: validJWT (12)
expected: (13)
- principal: alicia (14)
resource: alicia_album (15)
actions: (16)
view: EFFECT_ALLOW
delete: EFFECT_ALLOW
- principal: bradley
resource: bradley_album
actions:
view: EFFECT_ALLOW
delete: EFFECT_ALLOW
1 | Name of the test suite |
2 | Description of the test suite |
3 | Map of principal fixtures. The key is a string that can be used to refer to the associated principal. |
4 | Map of resource fixtures. The key is a string that can be used to refer to the associated resource. |
5 | Map of (optional) auxiliary data fixtures required to evaluate some requests. The key is a string that can be used to refer to the associated auxData. |
6 | List of tests in this suite |
7 | Name of the test |
8 | Input to the policy engine |
9 | List of keys of principal fixtures to test |
10 | List of keys of resource fixtures to test |
11 | List of actions to test |
12 | Key of auxiliary data fixture to test (optional) |
13 | List of outcomes expected for each principal and resource. If a principal+resource pair specified in input is not listed in expected , then EFFECT_DENY is expected for all actions for that pair. |
14 | Key of the principal fixture under test |
15 | Key of the resource fixture under test |
16 | Expected outcomes for each action for the principal+resource pair |
Sharing test fixtures
It is possible to share principals, resources and auxData blocks between test suites stored in the same directory. Create a testdata
directory in the directory containing your test suite files, then define shared resources, principals and auxData in testdata/resources.yml
, testdata/principals.yml
, testdata/auxdata.yml
respectively (yaml
and json
extensions are also supported).
tests ├── album_object_test.yaml ├── gallery_object_test.yaml ├── slideshow_object_test.yaml └── testdata ├── auxdata.yaml ├── principals.yaml └── resources.yaml
testdata/principals.yml
---
principals:
john:
id: johnID
roles:
- user
- moderator
testdata/resources.yml
---
resources:
alicia_album:
id: XX125
kind: "album:object"
attr:
owner: aliciaID
public: false
flagged: false
testdata/auxdata.yml
---
auxData:
validJWT:
jwt:
iss: my.domain
aud: ["x", "y"]
myField: value
YAML anchors and overrides are a great way to reduce repetition and reuse definitions in test cases. For example, the following definitions are equivalent:
|
Running tests
To run the tests, provide the path to the tests directory using the --tests
flag.
docker run -i -t \
-v /path/to/policy/dir:/policies \
-v /path/to/test/dir:/tests \
ghcr.io/cerbos/cerbos:0.18.0 compile --tests=/tests /policies
Machine readable output can be produced by passing --format=json
flag to the command.
By default, all discovered tests are run. To run just some of the tests, provide a regular expression that matches the test using the --run
flag.
docker run -i -t \
-v /path/to/policy/dir:/policies \
-v /path/to/test/dir:/tests \
ghcr.io/cerbos/cerbos:0.18.0 compile --tests=/tests --run=Delete /policies
You can also skip entire suites or individual tests in a suite by adding skip: true
to the test definition.
---
name: AlbumObjectTestSuite
description: Tests for verifying the album:object resource policy
tests:
- name: View private album
skip: true
skipReason: "Policy under review"
input:
principals: ["alicia"]
resources: ["alicia_private_album"]
actions: ["view"]
expected:
- principal: alicia
resource: alicia_private_album
actions:
view: EFFECT_ALLOW
Validating and testing policies in CI environments
Because Cerbos artefacts are distributed as self-contained containers and binaries, you should be able to easily integrate Cerbos into any CI environment. Simply configure your workflow to execute the commands described in the sections above using either the Cerbos container (you may need to configure mount points to suit your repo structure) or the binary.
GitHub Actions
-
cerbos-setup-action: Install
cerbos
andcerbosctl
binaries into your workflow tools cache -
cerbos-compile-action: Compile and (optionally) test Cerbos policies
---
name: PR Check
on:
pull_request:
branches:
- main
jobs:
cerbosCheck:
name: Check Cerbos policies
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Cerbos
uses: cerbos/cerbos-setup-action@v1
with:
version: latest
- name: Compile and test policies
uses: cerbos/cerbos-compile-action@v1
with:
policyDir: policies
testDir: tests
See https://github.com/cerbos/photo-share-tutorial for an example of Cerbos GitHub Actions being used in a workflow.
GitLab CI
---
stages:
- prepare
- compile
download-cerbos:
stage: prepare
script:
- curl https://github.com/cerbos/cerbos/releases/download/v0.18.0/cerbos_0.18.0_Linux_x86_64.tar.gz -L --output /tmp/cerbos.tar.gz
- tar -xf /tmp/cerbos.tar.gz -C ./
- chmod +x ./cerbos
artifacts:
paths:
- cerbos
compile-job:
stage: compile
dependencies: ["download-cerbos"]
script:
- ./cerbos compile ./policies --tests ./tests