-
-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathpagination.test.js
62 lines (52 loc) · 1.9 KB
/
pagination.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import path from 'node:path';
import dotenv from 'dotenv';
import {beforeAll, afterAll, describe, expect, it} from 'vitest';
import {back as nockBack} from 'nock';
import {setupClient} from './setup.js';
dotenv.config();
describe('Zendesk Client Pagination', () => {
const testOrganizations = [];
const uniqueOrgName = (iteration) =>
`Test Organization ${('The Quick Brown Foxx' + iteration).toString('hex')}`;
const defaultClient = setupClient();
/**
* Creates a test organization based on the given iteration.
* @param {number} iteration - The iteration number used to generate a unique organization name.
*/
async function createTestOrganization(iteration) {
const {result: organization} = await defaultClient.organizations.create({
organization: {name: uniqueOrgName(iteration)},
});
testOrganizations.push(organization);
}
beforeAll(async () => {
nockBack.setMode('record');
nockBack.fixtures = path.join(__dirname, '/fixtures');
const {nockDone} = await nockBack('pagination_test_setup.json');
await Promise.all([createTestOrganization(1), createTestOrganization(2)]);
nockDone();
});
it(
'should fetch all test items even with pagination applied/forced',
async () => {
const {nockDone} = await nockBack('pagination_test_execute.json');
const paginatedClient = setupClient({query: {page: {size: 1}}});
const organizations = await paginatedClient.organizations.list();
const orgNames = organizations.map((org) => org.name);
for (const testOrg of testOrganizations) {
expect(orgNames).toContain(testOrg.name);
}
nockDone();
},
{timeout: 20_000},
);
afterAll(async () => {
const {nockDone} = await nockBack('pagination_test_cleanup.json');
await Promise.all(
testOrganizations.map((org) =>
defaultClient.organizations.delete(org.id),
),
);
nockDone();
});
});