1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Implement find endpoint

This commit is contained in:
adrinr 2023-03-17 11:50:22 +01:00
parent 771e3b8862
commit 6de4588fc1
2 changed files with 52 additions and 0 deletions

View file

@ -179,4 +179,47 @@ describe("/api/global/scim/v2/groups", () => {
})
})
})
describe("GET /api/global/scim/v2/groups/:id", () => {
let group: ScimGroupResponse
beforeEach(async () => {
const body = createScimCreateGroupRequest()
group = await config.api.scimGroupsAPI.post({ body })
})
const findScimGroup = config.api.scimGroupsAPI.find
it("unauthorised calls are not allowed", async () => {
const response = await findScimGroup(group.id, {
setHeaders: false,
expect: 403,
})
expect(response).toEqual({ message: "Tenant id not set", status: 403 })
})
it("cannot be called when feature is disabled", async () => {
mocks.licenses.useCloudFree()
const response = await findScimGroup(group.id, { expect: 400 })
expect(response).toEqual(featureDisabledResponse)
})
it("should return existing group", async () => {
const response = await findScimGroup(group.id)
expect(response).toEqual(group)
})
it("should return 404 when requesting unexisting group id", async () => {
const response = await findScimGroup(structures.uuid(), { expect: 404 })
expect(response).toEqual({
message: "missing",
status: 404,
})
})
})
})

View file

@ -52,4 +52,13 @@ export class ScimGroupsAPI extends ScimTestAPI {
return res.body as ScimGroupResponse
}
find = async (id: string, requestSettings?: Partial<RequestSettings>) => {
const res = await this.call(
`/api/global/scim/v2/groups/${id}`,
"get",
requestSettings
)
return res.body as ScimGroupResponse
}
}