@camunda/e2e-test-suite 0.0.263 → 0.0.265
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/dist/tests/8.10/navigation.spec.js +1 -0
- package/dist/tests/8.10/smoke-tests.spec.js +1 -0
- package/dist/tests/8.10/test-setup.spec.js +5 -2
- package/dist/tests/8.6/navigation.spec.js +1 -0
- package/dist/tests/8.6/smoke-tests.spec.js +1 -0
- package/dist/tests/8.6/test-setup.spec.js +1 -0
- package/dist/tests/8.7/navigation.spec.js +1 -0
- package/dist/tests/8.7/smoke-tests.spec.js +1 -0
- package/dist/tests/8.7/test-setup.spec.js +1 -0
- package/dist/tests/8.8/navigation.spec.js +1 -0
- package/dist/tests/8.8/smoke-tests.spec.js +1 -0
- package/dist/tests/8.8/test-setup.spec.js +5 -2
- package/dist/tests/8.9/navigation.spec.js +1 -0
- package/dist/tests/8.9/smoke-tests.spec.js +1 -0
- package/dist/tests/8.9/test-setup.spec.js +8 -2
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_10_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_10_1.test.describe('Navigation Tests', () => {
|
|
11
|
+
_8_10_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
11
12
|
const clusterName = 'Test Cluster';
|
|
12
13
|
_8_10_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
13
14
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -19,6 +19,7 @@ const sleep_1 = require("../../utils/sleep");
|
|
|
19
19
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
20
20
|
_8_10_1.test.describe.configure({ mode: 'parallel' });
|
|
21
21
|
_8_10_1.test.describe('Smoke Tests', () => {
|
|
22
|
+
_8_10_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
22
23
|
const clusterName = 'Test Cluster';
|
|
23
24
|
_8_10_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
24
25
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -9,6 +9,7 @@ const UtilitiesPage_1 = require("../../pages/8.10/UtilitiesPage");
|
|
|
9
9
|
const users_1 = require("../../utils/users");
|
|
10
10
|
_8_10_1.test.describe.configure({ mode: 'parallel' });
|
|
11
11
|
_8_10_1.test.describe('Cluster Setup Tests', () => {
|
|
12
|
+
_8_10_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
12
13
|
_8_10_1.test.afterEach(async ({ page }, testInfo) => {
|
|
13
14
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
14
15
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -60,8 +61,10 @@ _8_10_1.test.describe('Cluster Setup Tests', () => {
|
|
|
60
61
|
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000);
|
|
61
62
|
await clusterPage.clickClusterLink(clusterName);
|
|
62
63
|
await clusterDetailsPage.assertComponentsHealth();
|
|
63
|
-
|
|
64
|
-
|
|
64
|
+
if (process.env.IS_AG !== 'true') {
|
|
65
|
+
await clusterPage.clickConnectorSecretsTab(clusterName);
|
|
66
|
+
await clusterSecretsPage.createSetOfSecrets(clusterName, connectorSecrets_1.connectorSecretsValues);
|
|
67
|
+
}
|
|
65
68
|
});
|
|
66
69
|
for (const [index, user] of (0, users_1.getTestUsers)().entries()) {
|
|
67
70
|
(0, _8_10_1.test)(`Create Project Folder for User ${index + 1}`, async ({ page, loginPage, homePage, appsPage, modelerHomePage, }, testInfo) => {
|
|
@@ -8,6 +8,7 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_6_1.test.describe('Navigation Tests', () => {
|
|
11
|
+
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
11
12
|
const clusterName = 'Test Cluster';
|
|
12
13
|
_8_6_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
13
14
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -18,6 +18,7 @@ const users_1 = require("../../utils/users");
|
|
|
18
18
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
19
19
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
20
20
|
_8_6_1.test.describe('Smoke Tests', () => {
|
|
21
|
+
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
21
22
|
const clusterName = 'Test Cluster';
|
|
22
23
|
_8_6_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
23
24
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -8,6 +8,7 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const UtilitiesPage_1 = require("../../pages/8.6/UtilitiesPage");
|
|
9
9
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_6_1.test.describe('Cluster Setup Tests', () => {
|
|
11
|
+
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
11
12
|
_8_6_1.test.afterEach(async ({ page }, testInfo) => {
|
|
12
13
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
13
14
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -8,6 +8,7 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_7_1.test.describe('Navigation Tests', () => {
|
|
11
|
+
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
11
12
|
const clusterName = 'Test Cluster';
|
|
12
13
|
_8_7_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
13
14
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -18,6 +18,7 @@ const users_1 = require("../../utils/users");
|
|
|
18
18
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
19
19
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
20
20
|
_8_7_1.test.describe('Smoke Tests', () => {
|
|
21
|
+
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
21
22
|
const clusterName = 'Test Cluster';
|
|
22
23
|
_8_7_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
23
24
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -8,6 +8,7 @@ const UtilitiesPage_1 = require("../../pages/8.7/UtilitiesPage");
|
|
|
8
8
|
const users_1 = require("../../utils/users");
|
|
9
9
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_7_1.test.describe('Cluster Setup Tests', () => {
|
|
11
|
+
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
11
12
|
_8_7_1.test.afterEach(async ({ page }, testInfo) => {
|
|
12
13
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
13
14
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -9,6 +9,7 @@ const users_1 = require("../../utils/users");
|
|
|
9
9
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
10
10
|
_8_8_1.test.describe.configure({ mode: 'parallel' });
|
|
11
11
|
_8_8_1.test.describe('Navigation Tests', () => {
|
|
12
|
+
_8_8_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
12
13
|
const clusterName = 'Test Cluster';
|
|
13
14
|
_8_8_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
14
15
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -18,6 +18,7 @@ const users_1 = require("../../utils/users");
|
|
|
18
18
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
19
19
|
_8_8_1.test.describe.configure({ mode: 'parallel' });
|
|
20
20
|
_8_8_1.test.describe('Smoke Tests', () => {
|
|
21
|
+
_8_8_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
21
22
|
const clusterName = 'Test Cluster';
|
|
22
23
|
_8_8_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
23
24
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -9,6 +9,7 @@ const UtilitiesPage_1 = require("../../pages/8.8/UtilitiesPage");
|
|
|
9
9
|
const users_1 = require("../../utils/users");
|
|
10
10
|
_8_8_1.test.describe.configure({ mode: 'parallel' });
|
|
11
11
|
_8_8_1.test.describe('Cluster Setup Tests', () => {
|
|
12
|
+
_8_8_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
12
13
|
_8_8_1.test.afterEach(async ({ page }, testInfo) => {
|
|
13
14
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
14
15
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -60,8 +61,10 @@ _8_8_1.test.describe('Cluster Setup Tests', () => {
|
|
|
60
61
|
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000);
|
|
61
62
|
await clusterPage.clickClusterLink(clusterName);
|
|
62
63
|
await clusterDetailsPage.assertComponentsHealth();
|
|
63
|
-
|
|
64
|
-
|
|
64
|
+
if (process.env.IS_AG !== 'true') {
|
|
65
|
+
await clusterPage.clickConnectorSecretsTab(clusterName);
|
|
66
|
+
await clusterSecretsPage.createSetOfSecrets(clusterName, connectorSecrets_1.connectorSecretsValues);
|
|
67
|
+
}
|
|
65
68
|
});
|
|
66
69
|
for (const [index, user] of (0, users_1.getTestUsers)().entries()) {
|
|
67
70
|
(0, _8_8_1.test)(`Create Project Folder for User ${index + 1}`, async ({ page, loginPage, homePage, appsPage, modelerHomePage, }, testInfo) => {
|
|
@@ -8,6 +8,7 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_9_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_9_1.test.describe('Navigation Tests', () => {
|
|
11
|
+
_8_9_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
11
12
|
const clusterName = 'Test Cluster';
|
|
12
13
|
_8_9_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
13
14
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -19,6 +19,7 @@ const sleep_1 = require("../../utils/sleep");
|
|
|
19
19
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
20
20
|
_8_9_1.test.describe.configure({ mode: 'parallel' });
|
|
21
21
|
_8_9_1.test.describe('Smoke Tests', () => {
|
|
22
|
+
_8_9_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
22
23
|
const clusterName = 'Test Cluster';
|
|
23
24
|
_8_9_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
24
25
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -10,6 +10,7 @@ const UtilitiesPage_1 = require("../../pages/8.9/UtilitiesPage");
|
|
|
10
10
|
const users_1 = require("../../utils/users");
|
|
11
11
|
_8_9_1.test.describe.configure({ mode: 'parallel' });
|
|
12
12
|
_8_9_1.test.describe('Cluster Setup Tests', () => {
|
|
13
|
+
_8_9_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
13
14
|
_8_9_1.test.afterEach(async ({ page }, testInfo) => {
|
|
14
15
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
15
16
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -56,6 +57,9 @@ _8_9_1.test.describe('Cluster Setup Tests', () => {
|
|
|
56
57
|
if (process.env.IS_PROD === 'true') {
|
|
57
58
|
_8_9_1.test.skip(true, 'Skipping test because not required on PROD test org');
|
|
58
59
|
}
|
|
60
|
+
if (process.env.IS_AG === 'true') {
|
|
61
|
+
_8_9_1.test.skip(true, 'Skipping test because not required when IS_AG is true');
|
|
62
|
+
}
|
|
59
63
|
_8_9_1.test.slow();
|
|
60
64
|
const clusterName = 'Agentic Orchestration Cluster';
|
|
61
65
|
const apiClientName = 'Test_API_Client' + (await (0, _setup_1.generateRandomStringAsync)(3));
|
|
@@ -90,8 +94,10 @@ _8_9_1.test.describe('Cluster Setup Tests', () => {
|
|
|
90
94
|
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000);
|
|
91
95
|
await clusterPage.clickClusterLink(clusterName);
|
|
92
96
|
await clusterDetailsPage.assertComponentsHealth();
|
|
93
|
-
|
|
94
|
-
|
|
97
|
+
if (process.env.IS_AG !== 'true') {
|
|
98
|
+
await clusterPage.clickConnectorSecretsTab(clusterName);
|
|
99
|
+
await clusterSecretsPage.createSetOfSecrets(clusterName, connectorSecrets_1.connectorSecretsValues);
|
|
100
|
+
}
|
|
95
101
|
});
|
|
96
102
|
for (const [index, user] of (0, users_1.getTestUsers)().entries()) {
|
|
97
103
|
(0, _8_9_1.test)(`Create Project Folder for User ${index + 1}`, async ({ page, loginPage, homePage, appsPage, modelerHomePage, }, testInfo) => {
|