End-to-end testing Identity Management (SCIM) with Micro Focus
Schedule a DemoSystem for Cross-domain Identity Management (SCIM) is a system designed to make managing a single user identify across multiple cloud-based devices easier. SCIM is an essential element of managing multiple applications in a secure way, and is often a hard requirement in large enterprise software contracts.
SCIM with Micro Focus can be a pain to test end-to-end for a variety of reasons:
- Testing SCIM end-to-end with Micro Focus introduces a dependency on both Micro Focus's authentication experience, as well as the UI for provisioning or de-provisioning users using Micro Focus. If the service updates the authentication or provisioning UI, you may need to update your tests.
- Testing Micro Focus SCIM involves managing multiple users and multiple sets of credentials (one for the Micro Focus admin and one for the test user), which can be a pain to maintain.
- Testing SCIM end-to-end has many edge-cases to consider. You need to verify that granting access to a third-party app provisions that user, but also that removing access to the third-party app de-provisions that same user.
What's the easiest way to test SCIM with Micro Focus?
walrus.ai enables engineers to test SCIM using Micro Focus without any of the pain:
- When Micro Focus's UI changes, walrus.ai handles any updates needed on their end, so you never need to refactor your tests based on any third-party dependency outside of your control.
- Writing the full end-to-end test takes minutes, because it's just written in plain English.
- walrus.ai can handle multiple user identities out-of-the-box. Simply add the credentials as variables, and walrus.ai can call those credentials.
- walrus.ai can handle multiple sets of cookies, so you never have to worry about storing different sets of cookies for different users in your test case.
- walrus.ai can handle any test setup or teardown within the test itself, simply add those steps to the test instructions.
A couple one-size-fits-most end-to-end tests for Micro Focus using walrus.ai:
1---2name: 'Micro Focus SCIM'3url: 'https://your-site.com'4variables:5 SCIM_provider_URL: 'https://your-site.Micro Focus.com/app/UserHome'6 SCIM_provider_admin_email: 'Micro Focus_email@your-site.com'7 SCIM_provider_password: 'Micro Focus_password'8 your_app_user_email: 'your_app_email@your-site.com'9instructions:10 - 'Login to :SCIM_provider_URL: with :SCIM_provider_admin_email: and :SCIM_provider_password:'11 - 'In Micro Focus, verify provisioning to App is enabled'12 - 'In Micro Focus, add :your_app_user_email: user to the your_app application'13 - 'Login to your_app with :SCIM_provider_admin_email: and :SCIM_provider_password:'14 - 'In your_app, verify :your_app_user_email: is added to the organization'15 - 'In Micro Focus, change the name of :your_app_user_email:'16 - 'In your_app, verify the name of :your_app_user_email: is updated'17 - 'In Micro Focus, remove :your_app_user_email: user from the your_app application'18 - 'In your_app, verify :your_app_user_email: is removed from the organization'