/scim2-tester

SCIM RFCs server compliance checker

Primary LanguagePython

scim2-tester

Python methods based on scim2-models and scim2-client, to check if SCIM servers respect the RFC7643 and RFC7644 specifications.

It aims to be used in unit test and Continuous Integration suites and in healthcheck tools. If you are seeking a CLI integration of scim2-tester, take a look at scim2-cli.

What's SCIM anyway?

SCIM stands for System for Cross-domain Identity Management, and it is a provisioning protocol. Provisioning is the action of managing a set of resources across different services, usually users and groups. SCIM is often used between Identity Providers and applications in completion of standards like OAuth2 and OpenID Connect. It allows users and groups creations, modifications and deletions to be synchronized between applications.

Installation

pip install scim2-tester

Usage

scim2-tester provides a very basic command line:

python scim2_tester/checker.py https://scim.example

However, a more complete integration is achieved through scim2-cli:

pip install scim2-cli
scim https://scim.example test

You can check the scim2-cli test command reference for more details.

scim2-tester belongs in a collection of SCIM tools developed by Yaal Coop, with scim2-models, scim2-client and scim2-cli