sr-npm 1.0.18 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -103,8 +103,13 @@ async function fetchPositionsFromSRAPI(testObject=undefined) {
|
|
|
103
103
|
return result;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
async function fetchJobDescription(jobId) {
|
|
107
|
-
|
|
106
|
+
async function fetchJobDescription(jobId,testObject=undefined) {
|
|
107
|
+
let companyId, templateType;
|
|
108
|
+
if (testObject) {
|
|
109
|
+
({ companyId, templateType } = testObject);
|
|
110
|
+
} else {
|
|
111
|
+
({ companyId, templateType } = await getApiKeys());
|
|
112
|
+
}
|
|
108
113
|
return await makeSmartRecruitersRequest(`/v1/companies/${companyId}/postings/${jobId}`,templateType);
|
|
109
114
|
}
|
|
110
115
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sr-npm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@hisense-staging/velo-npm": "3.0.19",
|
|
21
21
|
"@wix/data": "^1.0.211",
|
|
22
22
|
"@wix/essentials": "^0.1.24",
|
|
23
|
-
"@wix/secrets": "
|
|
23
|
+
"@wix/secrets": "1.0.53",
|
|
24
24
|
"@wix/site-location": "^1.0.0",
|
|
25
25
|
"@wix/site-window": "^1.0.0",
|
|
26
26
|
"axios": "^1.11.0",
|
|
@@ -3,33 +3,43 @@ const { getRandomPosition, executeRequestAndTest } = require('./testsUtils');
|
|
|
3
3
|
|
|
4
4
|
describe('Job details fetch from SR API Tests', () => {
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
expect(randomPosition.location).toBeDefined();
|
|
20
|
-
expect(randomPosition.department).toBeDefined();
|
|
21
|
-
});
|
|
6
|
+
const templateTypes = [
|
|
7
|
+
{ templatename: 'External', templateType: 'PUBLIC'},
|
|
8
|
+
{ templatename: 'Internal', templateType: 'INTERNAL'}
|
|
9
|
+
];
|
|
10
|
+
|
|
11
|
+
templateTypes.forEach(({ templateType ,templatename}) => {
|
|
12
|
+
describe(`Job details fetch from SR API Tests - ${templatename}`, () => {
|
|
13
|
+
let positions;
|
|
14
|
+
beforeAll(async () => {
|
|
15
|
+
const fetchPositionsFromSRAPIRequestBody = `fetchPositionsFromSRAPI({companyId:'WixTest',templateType: '${templateType}'});`;
|
|
16
|
+
positions = await executeApiRequest(fetchPositionsFromSRAPIRequestBody);
|
|
17
|
+
});
|
|
18
|
+
|
|
22
19
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
20
|
+
test(`should successfully fetch job details from SR API (${templatename})`, async () => {
|
|
21
|
+
const randomPosition = getRandomPosition(positions.data.result.content);
|
|
22
|
+
expect(positions.data.result.totalFound).toBeGreaterThan(0);
|
|
23
|
+
expect(positions.data.result.content.length).toBeGreaterThan(0);
|
|
24
|
+
expect(randomPosition.id.length).toBeGreaterThan(0);
|
|
25
|
+
expect(randomPosition.name.length).toBeGreaterThan(0);
|
|
26
|
+
expect(randomPosition.jobAdId.length).toBeGreaterThan(0);
|
|
27
|
+
expect(randomPosition.location).toBeDefined();
|
|
28
|
+
expect(randomPosition.department).toBeDefined();
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
test(`should successfully fetch job description from SR API (${templatename})`, async () => {
|
|
32
|
+
const randomPosition = getRandomPosition(positions.data.result.content);
|
|
33
|
+
const fetchJobDescriptionRequestBody = `fetchJobDescription(${randomPosition.id},{companyId:'WixTest',templateType: '${templateType}'});`;
|
|
34
|
+
const jobFetchResponse = await executeApiRequest(fetchJobDescriptionRequestBody);
|
|
35
|
+
expect(jobFetchResponse.data.result.id).toBe(randomPosition.id);
|
|
36
|
+
expect(jobFetchResponse.data.result.jobAd.sections.jobDescription).toBeDefined();
|
|
37
|
+
expect(jobFetchResponse.data.result.jobAd.sections.jobDescription.text.length).toBeGreaterThan(0);
|
|
38
|
+
expect(jobFetchResponse.data.result.applyUrl.length).toBeGreaterThan(0);
|
|
39
|
+
expect(jobFetchResponse.data.result.location).toBeDefined();
|
|
40
|
+
});
|
|
32
41
|
});
|
|
42
|
+
});
|
|
33
43
|
});
|
|
34
44
|
|
|
35
45
|
describe('fetchPositionsFromSRAPI error handling', () => {
|