sr-npm 1.7.448 → 1.7.449

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.
@@ -33,7 +33,6 @@ async function makeSmartRecruitersRequest(path,templateType) {
33
33
  }
34
34
 
35
35
  async function fetchPositionsFromSRAPI(testObject=undefined) {
36
-
37
36
  let allPositions = [];
38
37
  let totalFound = 0;
39
38
  let page = 0;
@@ -104,6 +103,15 @@ async function fetchPositionsFromSRAPI(testObject=undefined) {
104
103
  return result;
105
104
  }
106
105
 
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
+ // }
113
+ // return await makeSmartRecruitersRequest(`/v1/companies/${companyId}/postings/${jobId}`,templateType);
114
+ // }
107
115
  async function fetchJobDescription(jobId) {
108
116
  const {companyId,templateType} = await getApiKeys();
109
117
  return await makeSmartRecruitersRequest(`/v1/companies/${companyId}/postings/${jobId}`,templateType);
@@ -11,10 +11,17 @@ function getSmartToken() {
11
11
  }
12
12
 
13
13
  function getCompanyId() {
14
- return getSecretValue("companyID")
14
+ console.log("Getting the company ID from the secrets");
15
+ const getSecretValue2 = auth.elevate(secrets.getSecretValue);
16
+ console.log("getSecretValue2 is : ", getSecretValue2);
17
+
18
+ return getSecretValue2("companyID")
15
19
  .then((secret) => {
16
20
  return secret;
17
- })
21
+ }).catch((error) => {
22
+ console.error("Error getting the company ID from the secrets: ", error);
23
+ throw error;
24
+ });
18
25
  }
19
26
  module.exports = {
20
27
  getCompanyId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.448",
3
+ "version": "1.7.449",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -3,33 +3,43 @@ const { getRandomPosition, executeRequestAndTest } = require('./testsUtils');
3
3
 
4
4
  describe('Job details fetch from SR API Tests', () => {
5
5
 
6
- let positions;
7
- beforeAll(async () => {
8
- const requestBody = `fetchPositionsFromSRAPI();`;
9
- positions = await executeApiRequest(requestBody);
10
- });
11
-
12
- test('should successfully fetch job details from SR API', async () => {
13
- const randomPosition = getRandomPosition(positions.data.result.content);
14
- expect(positions.data.result.totalFound).toBeGreaterThan(0);
15
- expect(positions.data.result.content.length).toBeGreaterThan(0);
16
- expect(randomPosition.id.length).toBeGreaterThan(0);
17
- expect(randomPosition.name.length).toBeGreaterThan(0);
18
- expect(randomPosition.jobAdId.length).toBeGreaterThan(0);
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
- test('should successfully fetch job description from SR API', async () => {
24
- const randomPosition = getRandomPosition(positions.data.result.content);
25
- const fetchJobDescriptionRequestBody = `fetchJobDescription(${randomPosition.id});`;
26
- const jobFetchResponse = await executeApiRequest(fetchJobDescriptionRequestBody);
27
- expect(jobFetchResponse.data.result.id).toBe(randomPosition.id);
28
- expect(jobFetchResponse.data.result.jobAd.sections.jobDescription).toBeDefined();
29
- expect(jobFetchResponse.data.result.jobAd.sections.jobDescription.text.length).toBeGreaterThan(0);
30
- expect(jobFetchResponse.data.result.applyUrl.length).toBeGreaterThan(0);
31
- expect(jobFetchResponse.data.result.location).toBeDefined();
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', () => {