@zohodesk/testinglibrary 0.0.30-n20-experimental → 0.0.32-n20-experimental

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.
package/.gitlab-ci.yml CHANGED
@@ -1,4 +1,4 @@
1
- image: repository.desk.csez.zohocorpin.com/base-image/testing-framework-gitlab-runne-base:v3
1
+ image: zdesk-auto13.csez.zohocorpin.com/long-term-storage/node18-npm10:v2
2
2
 
3
3
  workflow:
4
4
  rules:
@@ -188,19 +188,21 @@ uat-data_generator:
188
188
  paths:
189
189
  - examples/uat/playwright-report
190
190
 
191
- # uat-search_indexing:
192
- # stage: uat
193
- # script:
194
- # - cd examples
195
- # - npm install $(npm pack ../../testing-framework | tail -1)
196
- # - output=$(npm run uat-search_indexing)
197
- # - echo "$output"
198
- # - node ../ValidateUATReport.js examples
199
-
200
- # artifacts:
201
- # when: always
202
- # paths:
203
- # - examples/uat/playwright-report
191
+ uat-search_indexing:
192
+ stage: uat
193
+ script:
194
+ - cd examples
195
+ - npm install $(npm pack ../../testing-framework | tail -1)
196
+ - echo "Removing jsonpath from examples/node_modules to avoid conflicts"
197
+ - rm -rf node_modules/jsonpath || true
198
+ - output=$(npm run uat-search_indexing)
199
+ - echo "$output"
200
+ - node ../ValidateUATReport.js examples
201
+
202
+ artifacts:
203
+ when: always
204
+ paths:
205
+ - examples/uat/playwright-report
204
206
 
205
207
 
206
208
 
package/README.md CHANGED
@@ -17,6 +17,48 @@
17
17
 
18
18
  - npm run report
19
19
 
20
+ ### v4.0.6 - 22-01-2026
21
+
22
+ #### Bug fix
23
+ - Retry added for Missing Step Definitions Issue in the Feature Files
24
+
25
+ ### v4.0.5 - 08-01-2026
26
+
27
+ #### Bug fix
28
+ - @cucumber/cucumber depedency removed from testing-framework package.json
29
+
30
+
31
+ ### v4.0.4/v3.2.20 - 19-12-2025
32
+
33
+ #### Enhancement
34
+ - New common step provided for search index with the data generated entity
35
+
36
+
37
+ ### v4.0.3/v3.2.19 - 17-12-2025
38
+
39
+ #### Enhancement
40
+ - Cookie storage prefix support is provided in this version.
41
+
42
+
43
+ ### v4.0.2 - 16-12-2025
44
+
45
+ #### Bug Fixes
46
+
47
+ - Deprecated the react and react hooks from dependencies
48
+ - @cucumber/cucumber - 10.9.0 version downgraded due to Missing Step Definition Issue
49
+
50
+
51
+ ### v4.0.0 - 04-12-2025
52
+
53
+ #### Features
54
+ - Supported node 20 for the testing-framework
55
+
56
+ - Below package versions are updated in this release.
57
+ - playwright - 1.56.1,
58
+ - playwright-bdd - 8.4.2,
59
+ - @playwright/test - 1.56.1,
60
+ - @cucumber/cucumber - 12.2.0
61
+
20
62
  ### v3.2.15 - 14-11-2025
21
63
 
22
64
  #### Enhancement
@@ -1,6 +1,6 @@
1
- import {createBdd } from '@zohodesk/testinglibrary';
1
+ import {createBdd} from '@zohodesk/testinglibrary';
2
+ import { jsonpath } from '@zohodesk/testinglibrary/thirdPartyHelper';
2
3
  import { executeRpcRequest , entityIdReConstructor } from '../helpers/rpcRequestHelper';
3
- // import jp from 'jsonpath';
4
4
 
5
5
  const { Given } = createBdd();
6
6
 
@@ -54,7 +54,7 @@ Given('a search entity using {string}', async ({page,cacheLayer}, reference,data
54
54
  entityIdValue = searchObj;
55
55
  } else {
56
56
  const jsonPath = searchEntity?.startsWith?.('$') ? searchEntity : `$.${searchEntity}`;
57
- const result = null;//jp.query(searchObj, jsonPath);
57
+ const result = jsonpath.query(searchObj, jsonPath);
58
58
 
59
59
  if (!result || result.length === 0) {
60
60
  throw new Error(`JSONPath query '${jsonPath}' returned no results from cache object for reference: ${reference}`);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.PREPROCESSING_RETRY_MAX_ATTEMPTS = exports.PREPROCESSING_RETRY_DELAY_MS = void 0;
7
+ const PREPROCESSING_RETRY_MAX_ATTEMPTS = exports.PREPROCESSING_RETRY_MAX_ATTEMPTS = 1;
8
+ const PREPROCESSING_RETRY_DELAY_MS = exports.PREPROCESSING_RETRY_DELAY_MS = 2000;
@@ -41,6 +41,7 @@ async function executeDefaultLoginSteps(context, testInfo, testDetails, testPort
41
41
  }
42
42
  try {
43
43
  const projectName = testInfo.project.name;
44
+ testDetails.authFilePrefix = process.env.authFilePrefix;
44
45
  if (testPortalDetails && projectName !== 'setup' && projectName !== 'cleanup') {
45
46
  await context.clearCookies();
46
47
  await (0, _auth.performLoginSteps)(testDetails, async testInfo => {
@@ -18,14 +18,20 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
18
18
  authFilePrefix,
19
19
  email
20
20
  } = testInfo;
21
- authFilePrefix = authFilePrefix || email;
22
- const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFilePrefix}-cookies.json`));
23
- const lockFileName = email.replace(/[@.]/g, '_');
21
+ let authFileName;
22
+ if (authFilePrefix) {
23
+ authFileName = `${authFilePrefix}-${email}`;
24
+ process.env.authFilePrefix = authFilePrefix;
25
+ } else {
26
+ authFileName = `${email}`;
27
+ }
28
+ const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFileName}-cookies.json`));
29
+ const lockFileName = `${authFileName}`.replace(/[@.]/g, '_');
24
30
  const fileMutex = new _fileMutex.default((0, _checkAuthDirectory.getLockDirectoryPath)(), lockFileName, _fileMutexConfig.fileDeletionTimeoutConfig);
25
31
  let loginUsingCookie = false;
26
32
  try {
27
33
  if ((0, _checkAuthCookies.verifyIfCookieFileExists)(authFile)) {
28
- console.log(`${email} Cookie file exists. Loading cookies, worker index - ${process.env.TEST_WORKER_INDEX}`);
34
+ console.log(`${authFileName} Cookie file exists. Loading cookies, worker index - ${process.env.TEST_WORKER_INDEX}`);
29
35
  loginUsingCookie = true;
30
36
  } else {
31
37
  await fileMutex.acquire();
@@ -40,7 +46,7 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
40
46
  });
41
47
  }
42
48
  } catch (error) {
43
- console.error(`Error during login for ${email}:`, error);
49
+ console.error(`Error during login for ${authFileName}:`, error);
44
50
  } finally {
45
51
  if (!loginUsingCookie) {
46
52
  await fileMutex.release();
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "jsonpath", {
8
+ enumerable: true,
9
+ get: function () {
10
+ return _jsonpath.default;
11
+ }
12
+ });
13
+ var _jsonpath = _interopRequireDefault(require("jsonpath"));
@@ -16,7 +16,16 @@ var _mergeObjects = require("./helpers/mergeObjects");
16
16
  var _Configuration = _interopRequireDefault(require("./configuration/Configuration"));
17
17
  var _UserArgs = _interopRequireDefault(require("./configuration/UserArgs"));
18
18
  var _ConfigurationHelper = require("./configuration/ConfigurationHelper");
19
+ var _auth = require("./helpers/auth");
19
20
  let cachedConfig = null;
21
+ function getPrimaryCookiePath() {
22
+ const {
23
+ email
24
+ } = (0, _auth.getDefaultActor)();
25
+ const authFilePrefix = process.env.authFilePrefix;
26
+ let authFileName = authFilePrefix ? `${authFilePrefix}-${email}` : `${email}`;
27
+ return `uat/playwright/.auth/${authFileName}-cookies.json`;
28
+ }
20
29
  function getDefaultConfig() {
21
30
  return {
22
31
  isTearDown: true,
@@ -33,7 +42,7 @@ function getDefaultConfig() {
33
42
  bddMode: false,
34
43
  expectTimeout: 5 * 1000,
35
44
  testTimeout: 60 * 1000,
36
- authFilePath: 'uat/playwright/.auth/user.json',
45
+ authFilePath: getPrimaryCookiePath(),
37
46
  viewport: {
38
47
  width: 1280,
39
48
  height: 720
@@ -9,6 +9,7 @@ var _child_process = require("child_process");
9
9
  var _RunnerHelper = _interopRequireDefault(require("./RunnerHelper"));
10
10
  var _Runner = _interopRequireDefault(require("./Runner"));
11
11
  var _commonUtils = require("../../../utils/commonUtils");
12
+ var _retryConstants = require("../../playwright/constants/retryConstants");
12
13
  class SpawnRunner extends _Runner.default {
13
14
  constructor(runnerObj) {
14
15
  super(runnerObj);
@@ -23,13 +24,31 @@ class SpawnRunner extends _Runner.default {
23
24
  bddMode
24
25
  } = config.getAll();
25
26
  if (bddMode) {
26
- promises.push(this.runPreprocessing());
27
+ promises.push(this.runPreprocessingWithRetry());
27
28
  }
28
29
  Promise.all(promises).then(() => this.runPlaywright()).catch(err => {
29
30
  _logger.Logger.error(err);
30
31
  process.exit();
31
32
  });
32
33
  }
34
+
35
+ // This below Retry wrapper function for preprocessing the feature files Missing Step Definitions Issue
36
+
37
+ async runPreprocessingWithRetry(maxRetries = _retryConstants.PREPROCESSING_RETRY_MAX_ATTEMPTS, delayMs = _retryConstants.PREPROCESSING_RETRY_DELAY_MS) {
38
+ for (let attempt = 1; attempt <= maxRetries + 1; attempt++) {
39
+ try {
40
+ await this.runPreprocessing();
41
+ return;
42
+ } catch (err) {
43
+ if (attempt > maxRetries) {
44
+ _logger.Logger.log(_logger.Logger.FAILURE_TYPE, `Preprocessing failed after ${attempt} attempts`);
45
+ throw err;
46
+ }
47
+ _logger.Logger.log(_logger.Logger.INFO_TYPE, `Preprocessing failed (attempt ${attempt} of ${maxRetries + 1}). Retrying in ${delayMs}ms...`);
48
+ await new Promise(resolve => setTimeout(resolve, delayMs));
49
+ }
50
+ }
51
+ }
33
52
  runPreprocessing() {
34
53
  //This below functoin is called to copy the data generator spec files to the current project
35
54
  (0, _commonUtils.copyCommonSpecs)();