Skip to content

Commit 61a7b70

Browse files
authored
SCIM integration tests (#27750)
For #27287 This PR adds integration tests for SCIM API endpoints as well as some bug fixes found by these tests. # Checklist for submitter - [x] Added/updated automated tests - [x] Manual QA for all new/changed functionality
1 parent 28232b5 commit 61a7b70

File tree

16 files changed

+1824
-159
lines changed

16 files changed

+1824
-159
lines changed

cmd/fleetctl/users_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func TestCreateBulkUsers(t *testing.T) {
191191
user15,[email protected],false,false,,1:admin
192192
user16,[email protected],false,false,,1:admin 2:maintainer`)
193193

194-
expectedText := `{"kind":"user_roles","apiVersion":"v1","spec":{"roles":{"[email protected]":{"global_role":"admin","teams":null},"[email protected]":{"global_role":"maintainer","teams":null},"[email protected]":{"global_role":"observer","teams":null},"[email protected]":{"global_role":"admin","teams":null},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"maintainer"}]},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"admin"}]},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"admin"},{"team":"","role":"maintainer"}]},"[email protected]":{"global_role":"observer","teams":null},"[email protected]":{"global_role":"observer","teams":null}}}}
194+
expectedText := `{"kind":"user_roles","apiVersion":"v1","spec":{"roles":{"[email protected]":{"global_role":"admin","teams":null},"[email protected]":{"global_role":"maintainer","teams":null},"[email protected]":{"global_role":"observer","teams":null},"[email protected]":{"global_role":"admin","teams":null},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"maintainer"}]},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"admin"}]},"[email protected]":{"global_role":null,"teams":[{"team":"","role":"admin"},{"team":"","role":"maintainer"}]},"[email protected]":{"global_role":"maintainer","teams":null},"[email protected]":{"global_role":"observer","teams":null}}}}
195195
`
196196

197197
assert.Equal(t, "", runAppForTest(t, []string{"user", "create-users", "--csv", csvFile}))

docs/Contributing/MDM-end-user-authentication.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Create a SAML app in an IdP.
1818

1919
## Description
2020

21-
If the IT admin configured end user authentication, we change the `configuration_web_url` value in the [enrollment JSON profile](https://developer.apple.com/documentation/devicemanagement/profile) to be `{server_url}/api/v1/fleet/mdm/sso`. This page initiates the SSO flow in the setup assistant webview.
21+
If the IT admin configured end user authentication, we change the `configuration_web_url` value in the [enrollment JSON profile](https://developer.apple.com/documentation/devicemanagement/profile) to be `{server_url}/mdm/sso`. This page gets the SAML Request from `{server_url}/api/v1/fleet/mdm/sso` and initiates the SSO flow in the setup assistant web view.
2222

2323
`end_user_authentication` setting is global, but `enable_end_user_authentication` is a team setting.
2424

docs/Contributing/MDM-SCIM-integration.md docs/Contributing/SCIM-integration.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111

1212
- https://developer.okta.com/docs/guides/scim-provisioning-integration-prepare/main/
1313

14+
Sample provisioning settings that work. Capabilities can be disabled and attributes can be removed as needed.
15+
16+
![Okta to Fleet provisioning](./assets/SCIM-Okta-provisioning.png)
17+
1418
### Testing Okta integration
1519

1620
First, create at least one SCIM user:
Loading

0 commit comments

Comments
 (0)