@zohodesk/testinglibrary 3.2.18 → 3.2.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.
- package/.gitlab-ci.yml +16 -14
- package/README.md +20 -5
- package/build/common/searchFake/steps/searchFake.spec.js +3 -3
- package/build/core/playwright/helpers/auth/loginDefaultStepsHelper.js +1 -2
- package/build/core/playwright/helpers/auth/loginSteps.js +5 -7
- package/build/core/playwright/helpers/thirdPartyLib.js +13 -0
- package/build/core/playwright/readConfigFile.js +6 -1
- package/build/index.d.ts +0 -1
- package/build/index.js +0 -2
- package/build/test/Test.js +13 -0
- package/npm-shrinkwrap.json +309 -671
- package/package.json +6 -5
package/.gitlab-ci.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image:
|
|
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
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
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,26 @@
|
|
|
17
17
|
|
|
18
18
|
- npm run report
|
|
19
19
|
|
|
20
|
+
### v4.0.4/v3.2.20 - 19-12-2025
|
|
21
|
+
|
|
22
|
+
#### Enhancement
|
|
23
|
+
- New common step provided for search index with the data generated entity
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### v4.0.3/v3.2.19 - 17-12-2025
|
|
27
|
+
|
|
28
|
+
#### Enhancement
|
|
29
|
+
- Cookie storage prefix support is provided in this version.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### v4.0.2 - 16-12-2025
|
|
33
|
+
|
|
34
|
+
#### Bug Fixes
|
|
35
|
+
|
|
36
|
+
- Deprecated the react and react hooks from dependencies
|
|
37
|
+
- @cucumber/cucumber - 10.9.0 version downgraded due to Missing Step Definition Issue
|
|
38
|
+
|
|
39
|
+
|
|
20
40
|
### v4.0.0 - 04-12-2025
|
|
21
41
|
|
|
22
42
|
#### Features
|
|
@@ -28,11 +48,6 @@
|
|
|
28
48
|
- @playwright/test - 1.56.1,
|
|
29
49
|
- @cucumber/cucumber - 12.2.0
|
|
30
50
|
|
|
31
|
-
### v3.2.18 - 09-12-2025
|
|
32
|
-
|
|
33
|
-
#### Enhancement
|
|
34
|
-
- Cookie storage prefix support is provided in this version.
|
|
35
|
-
|
|
36
51
|
### v3.2.15 - 14-11-2025
|
|
37
52
|
|
|
38
53
|
#### Enhancement
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {createBdd
|
|
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 =
|
|
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}`);
|
|
@@ -41,8 +41,7 @@ async function executeDefaultLoginSteps(context, testInfo, testDetails, testPort
|
|
|
41
41
|
}
|
|
42
42
|
try {
|
|
43
43
|
const projectName = testInfo.project.name;
|
|
44
|
-
|
|
45
|
-
testDetails.authFilePrefix = authFileName;
|
|
44
|
+
testDetails.authFilePrefix = process.env.authFilePrefix;
|
|
46
45
|
if (testPortalDetails && projectName !== 'setup' && projectName !== 'cleanup') {
|
|
47
46
|
await context.clearCookies();
|
|
48
47
|
await (0, _auth.performLoginSteps)(testDetails, async testInfo => {
|
|
@@ -19,16 +19,14 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
|
|
|
19
19
|
email
|
|
20
20
|
} = testInfo;
|
|
21
21
|
let authFileName;
|
|
22
|
-
if (
|
|
23
|
-
authFileName = email
|
|
24
|
-
|
|
25
|
-
authFileName = authFilePrefix;
|
|
22
|
+
if (authFilePrefix) {
|
|
23
|
+
authFileName = `${authFilePrefix}-${email}`;
|
|
24
|
+
process.env.authFilePrefix = authFilePrefix;
|
|
26
25
|
} else {
|
|
27
|
-
authFileName =
|
|
26
|
+
authFileName = `${email}`;
|
|
28
27
|
}
|
|
29
|
-
process.env.authFileName = authFileName;
|
|
30
28
|
const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFileName}-cookies.json`));
|
|
31
|
-
const lockFileName = authFileName
|
|
29
|
+
const lockFileName = `${authFileName}`.replace(/[@.]/g, '_');
|
|
32
30
|
const fileMutex = new _fileMutex.default((0, _checkAuthDirectory.getLockDirectoryPath)(), lockFileName, _fileMutexConfig.fileDeletionTimeoutConfig);
|
|
33
31
|
let loginUsingCookie = false;
|
|
34
32
|
try {
|
|
@@ -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,9 +16,14 @@ 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;
|
|
20
21
|
function getPrimaryCookiePath() {
|
|
21
|
-
const
|
|
22
|
+
const {
|
|
23
|
+
email
|
|
24
|
+
} = (0, _auth.getDefaultActor)();
|
|
25
|
+
const authFilePrefix = process.env.authFilePrefix;
|
|
26
|
+
let authFileName = authFilePrefix ? `${authFilePrefix}-${email}` : `${email}`;
|
|
22
27
|
return `uat/playwright/.auth/${authFileName}-cookies.json`;
|
|
23
28
|
}
|
|
24
29
|
function getDefaultConfig() {
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
delete require.cache[require.resolve('../core/playwright/runner/Runner')];
|
|
4
|
+
function test() {
|
|
5
|
+
const inputString = "@hc";
|
|
6
|
+
const selectedTag = ["@hc_1234"].reverse().find(tag => tag.startsWith(inputString));
|
|
7
|
+
let tagInput = null;
|
|
8
|
+
if (selectedTag) {
|
|
9
|
+
tagInput = selectedTag.split(`${inputString}_`).pop().toLowerCase();
|
|
10
|
+
}
|
|
11
|
+
console.log(tagInput);
|
|
12
|
+
}
|
|
13
|
+
test();
|