This repository runs the permify validate
command on the given schema (authorization model) and relationships (sample authorization data) and assertions (sample check queries and results).
You can find detailed information on this repository in the Testing & Validation part of our documentation.
schema: >-
entity user {}
entity organization {
relation admin @user
relation member @user
permission create_repository = (admin or member)
permission delete = admin
}
entity repository {
relation owner @user
relation parent @organization
permission push = owner
permission read = (owner and (parent.admin and parent.member))
permission delete = (parent.member and (parent.admin or owner))
}
relationships:
- "organization:1#admin@user:1"
- "organization:1#member@user:1"
- "repository:1#owner@user:1"
scenarios:
- name: "scenario 1"
description: "test description"
checks:
- entity: "repository:1"
subject: "user:1"
assertions:
push : true
- entity: "repository:2"
subject: "user:1"
assertions:
push : false
- entity: "repository:3"
subject: "user:1"
assertions:
push : false
Add the action following your workflow:
- With local file
steps:
- uses: "permify/permify-validate-action@v1"
with:
validationFile: "test.yaml"
- With url
steps:
- uses: "permify/permify-validate-action@v1"
with:
validationFile: "https://gist.github.com/permify-bot/bb8f95acb64525d2a41688ae0a6f4274"
Permify is an open-source authorization service for creating and maintaining fine-grained authorizations across your individual applications and services.
You can also test your new authorization model in your local (Permify clone) without using permify-validate-action at all.
For that open up a new file and add a schema yaml file inside. Then build your project with, run make run
command and
run ./permify validate {path of your schema validation file}
.
If we use the above example schema validation file, after
running ./permify validate {path of your schema validation file}
it gives a result on the terminal as:
Join our Discord channel for issues, feature requests, feedbacks or anything else. We love to talk about authorization and access control ❤️