diff --git a/test/server/lib/Scim.ts b/test/server/lib/Scim.ts index e6ff2abc..3a9c3966 100644 --- a/test/server/lib/Scim.ts +++ b/test/server/lib/Scim.ts @@ -128,6 +128,7 @@ describe('Scim', () => { } return axios[method](scimUrl(path), validBody, USER_CONFIG_BY_NAME[user]); } + it('should return 401 for anonymous', async function () { const res = await makeCallWith('anon'); assert.equal(res.status, 401); @@ -245,6 +246,25 @@ describe('Scim', () => { assert.deepInclude(res.data.Resources, personaToSCIMMYUserWithId('kiwi')); }); + it('should handle pagination', async function () { + const endpointPaginated = '/Users?count=1&sortBy=id'; + { + const firstPage = await axios.get(scimUrl(endpointPaginated), chimpy); + assert.equal(firstPage.status, 200); + assert.lengthOf(firstPage.data.Resources, 1); + const firstPageResourceId = parseInt(firstPage.data.Resources[0].id); + assert.equal(firstPageResourceId, 1); + } + + { + const secondPage = await axios.get(scimUrl(endpointPaginated + '&startIndex=2'), chimpy); + assert.equal(secondPage.status, 200); + assert.lengthOf(secondPage.data.Resources, 1); + const secondPageResourceId = parseInt(secondPage.data.Resources[0].id); + assert.equal(secondPageResourceId, 2); + } + }); + checkCommonErrors('get', '/Users'); });