diff --git a/.github/workflows/api-manual.yml b/.github/workflows/api-manual.yml index 3357892219..fdf9322e61 100644 --- a/.github/workflows/api-manual.yml +++ b/.github/workflows/api-manual.yml @@ -1,6 +1,11 @@ name: Guardian CI API Tests(Manual) on: workflow_dispatch: + inputs: + tags: + type: string + description: Tags for run(smoke, accounts, firstPool and etc.) + default: 'all' description: 'Manual run' jobs: @@ -108,7 +113,7 @@ jobs: run: | pushd e2e-tests npm install --force - npx cypress run --env "portApi=3002,operatorId=${{ secrets.CI_HEDERA_ACCOUNT }},operatorKey=${{ secrets.CI_HEDERA_PRIV_KEY }}" --spec cypress/e2e/api-tests/**/*.cy.js + npx cypress run --env "portApi=3002,operatorId=${{ secrets.CI_HEDERA_ACCOUNT }},operatorKey=${{ secrets.CI_HEDERA_PRIV_KEY }}" grepTags=${{ inputs.tags }},grepFilterSpecs=true --spec cypress/e2e/api-tests/**/*.cy.js popd - name: Publish API Test Results uses: EnricoMi/publish-unit-test-result-action@v1 diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/getAccounts.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/getAccounts.cy.js index b69bf55e50..caa5b365ac 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/getAccounts.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/getAccounts.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Accounts", { tags: '@accounts' },() => { +context("Accounts", { tags: ['accounts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get list of users", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/getBalance.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/getBalance.cy.js index 93402111e1..e7885c5b99 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/getBalance.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/getBalance.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Accounts", { tags: '@accounts' }, () => { +context("Accounts", { tags: ['accounts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get Standard Registry balance", () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/getSession.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/getSession.cy.js index a8c1892352..761a5a3ca2 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/getSession.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/getSession.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Accounts', { tags: '@accounts' }, () => { +context('Accounts', { tags: ['accounts', 'firstPool'] }, () => { const authorization = Cypress.env('authorization'); diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/getStandartReg.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/getStandartReg.cy.js index e87f83a3cb..27c4c7e27f 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/getStandartReg.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/getStandartReg.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Accounts", { tags: '@accounts' }, () => { +context("Accounts", { tags: ['accounts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get list of Standard Registries", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/postLogin.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/postLogin.cy.js index c4c41f47b2..763d1fbee8 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/postLogin.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/postLogin.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Accounts', { tags: '@accounts' }, () => { +context('Accounts', { tags: ['accounts', 'firstPool'] }, () => { it('Login as Standard Registry', { tags: ['smoke'] }, () => { const username = "StandardRegistry"; cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/accounts/postRegister.cy.js b/e2e-tests/cypress/e2e/api-tests/accounts/postRegister.cy.js index 7c7ec121a6..e32fe0960a 100644 --- a/e2e-tests/cypress/e2e/api-tests/accounts/postRegister.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/accounts/postRegister.cy.js @@ -1,8 +1,8 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Accounts", { tags: ['accounts'] }, () => { - it("Register and login as new user", { tags: ['smoke'] }, () => { +context("Accounts", { tags: ['accounts', 'firstPool'] }, () => { + it("Register and login as new user", { tags: ['smoke', 'firstPool'] }, () => { const name = Math.floor(Math.random() * 999) + "PostRegTest"; cy.request({ method: METHOD.POST, @@ -78,7 +78,6 @@ context("Accounts", { tags: ['accounts'] }, () => { }); }); - it('Register with invalid type of username - Negative', () => { cy.request({ method: METHOD.POST, @@ -138,7 +137,6 @@ context("Accounts", { tags: ['accounts'] }, () => { }); }); - it('Register with extra data - Negative', () => { const name = Math.floor(Math.random() * 999) + "test001"; cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/analytics/compareModules.cy.js b/e2e-tests/cypress/e2e/api-tests/analytics/compareModules.cy.js index 87a5cc8029..d9e976669c 100644 --- a/e2e-tests/cypress/e2e/api-tests/analytics/compareModules.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/analytics/compareModules.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Analytics", { tags: '@analytics' }, () => { +context("Analytics", { tags: ['analytics', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let moduleId1, moduleId2 before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/analytics/comparePolicies.cy.js b/e2e-tests/cypress/e2e/api-tests/analytics/comparePolicies.cy.js index 52c1c34826..e730a9f1ab 100644 --- a/e2e-tests/cypress/e2e/api-tests/analytics/comparePolicies.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/analytics/comparePolicies.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Analytics", { tags: '@analytics' }, () => { +context("Analytics", { tags: ['analytics', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let policyId1, policyId2 before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/analytics/compareSchemas.cy.js b/e2e-tests/cypress/e2e/api-tests/analytics/compareSchemas.cy.js index 929767e4e5..284506b55a 100644 --- a/e2e-tests/cypress/e2e/api-tests/analytics/compareSchemas.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/analytics/compareSchemas.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Analytics", { tags: '@analytics' }, () => { +context("Analytics", { tags: ['analytics', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let schemaId1, schemaId2 before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/analytics/compareTools.cy.js b/e2e-tests/cypress/e2e/api-tests/analytics/compareTools.cy.js index d9670df698..49bf2b91d3 100644 --- a/e2e-tests/cypress/e2e/api-tests/analytics/compareTools.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/analytics/compareTools.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Analytics", { tags: '@analytics' }, () => { +context("Analytics", { tags: ['analytics', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let toolId1, toolId2 before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/analytics/search.cy.js b/e2e-tests/cypress/e2e/api-tests/analytics/search.cy.js index 30c7af42c1..41ce57d625 100644 --- a/e2e-tests/cypress/e2e/api-tests/analytics/search.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/analytics/search.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Analytics", { tags: '@analytics' }, () => { +context("Analytics", { tags: ['analytics', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let policyId diff --git a/e2e-tests/cypress/e2e/api-tests/artifacts/deleteArtifact.cy.js b/e2e-tests/cypress/e2e/api-tests/artifacts/deleteArtifact.cy.js index 74e370210d..8d41af8376 100644 --- a/e2e-tests/cypress/e2e/api-tests/artifacts/deleteArtifact.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/artifacts/deleteArtifact.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Artifacts", { tags: "@artifacts" }, () => { +context("Artifacts", { tags: ['artifacts', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); let artifactId; diff --git a/e2e-tests/cypress/e2e/api-tests/artifacts/getArtifacts.cy.js b/e2e-tests/cypress/e2e/api-tests/artifacts/getArtifacts.cy.js index 04801533c6..d8f9f146d3 100644 --- a/e2e-tests/cypress/e2e/api-tests/artifacts/getArtifacts.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/artifacts/getArtifacts.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Artifacts", { tags: '@artifacts' },() => { +context("Artifacts", { tags: ['artifacts', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/artifacts/postArtifact.cy.js b/e2e-tests/cypress/e2e/api-tests/artifacts/postArtifact.cy.js index 1f593e5bf9..c5256d50b9 100644 --- a/e2e-tests/cypress/e2e/api-tests/artifacts/postArtifact.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/artifacts/postArtifact.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Artifacts", { tags: "@artifacts" }, () => { +context("Artifacts", { tags: ['artifacts', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); let policyId diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/clearAndRejectRequests.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/clearAndRejectRequests.cy.js index 323c2e6286..7f7c61a3ca 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/clearAndRejectRequests.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/clearAndRejectRequests.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/clearPools.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/clearPools.cy.js index d06d744406..efcbf4e113 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/clearPools.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/clearPools.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/createApproveAndRejectRetireRequests.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/createApproveAndRejectRetireRequests.cy.js index 245b11b1fb..95a5eb9b50 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/createApproveAndRejectRetireRequests.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/createApproveAndRejectRetireRequests.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; let username = Math.floor(Math.random() * 99999) + "UserContReqTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/enableAndDisableWipeRequests.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/enableAndDisableWipeRequests.cy.js index 59ab301b5c..3084e39d80 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/enableAndDisableWipeRequests.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/enableAndDisableWipeRequests.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; let username = Math.floor(Math.random() * 99999) + "UserContReqTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/getContracts.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/getContracts.cy.js index 091c8ebc09..6ffe815c8a 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/getContracts.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/getContracts.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/getPermissions.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/getPermissions.cy.js index be8360e723..b2ae23d19f 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/getPermissions.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/getPermissions.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); let contractIdR, contractIdW; let contractIdHedW; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/getPools.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/getPools.cy.js index b69ef1a815..f1357c2bd8 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/getPools.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/getPools.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const contractNameR = Math.floor(Math.random() * 999) + "RCon4GetPoolsTests"; const contractNameW = Math.floor(Math.random() * 999) + "WCon4GetPoolsTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/getRequests.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/getRequests.cy.js index 69349c7545..a7c638a44c 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/getRequests.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/getRequests.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' },() => { +context("Contracts", { tags: ['contracts', 'firstPool'] },() => { const authorization = Cypress.env("authorization"); const username = Math.floor(Math.random() * 999) + "User"; const contractNameR = Math.floor(Math.random() * 999) + "RCon4RequestsTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/getRetireVCS.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/getRetireVCS.cy.js index 3bd4017f0c..aa8c68c4cb 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/getRetireVCS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/getRetireVCS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/importContract.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/importContract.cy.js index e3887866d5..bf2e5e7123 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/importContract.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/importContract.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const importedContractName = Math.floor(Math.random() * 999) + "Con4Import"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/postContract.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/postContract.cy.js index c4775a0d64..619f0d38fc 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/postContract.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/postContract.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' },() => { +context("Contracts", { tags: ['contracts', 'firstPool'] },() => { const authorization = Cypress.env("authorization"); const contractNameR = Math.floor(Math.random() * 999) + "APIContractR"; const contractNameW = Math.floor(Math.random() * 999) + "APIContractW"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/removeContracts.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/removeContracts.cy.js index edba3d7c3c..a2ba036511 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/removeContracts.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/removeContracts.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); let contractIdR, contractIdW before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/retireTokens.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/retireTokens.cy.js index d9465c91d7..f6d90ab654 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/retireTokens.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/retireTokens.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; let username = Math.floor(Math.random() * 99999) + "UserContReqTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/setAndRemovePermissions.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/setAndRemovePermissions.cy.js index baec705994..59e8a138b1 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/setAndRemovePermissions.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/setAndRemovePermissions.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const username = "Verra"; let contractIdR, contractIdW, hederaIdVerra, contractUuidR, contractUuidW, contractIdWVerra, contractIdRVerra; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/setPools.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/setPools.cy.js index 8b9383b790..f72ad10d22 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/setPools.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/setPools.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const contractNameR = Math.floor(Math.random() * 999) + "RCon4GetPoolsTests"; const contractNameW = Math.floor(Math.random() * 999) + "WCon4GetPoolsTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/contracts/syncPools.cy.js b/e2e-tests/cypress/e2e/api-tests/contracts/syncPools.cy.js index 268d73988d..048910c9cd 100644 --- a/e2e-tests/cypress/e2e/api-tests/contracts/syncPools.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/contracts/syncPools.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Contracts", { tags: '@contracts' }, () => { +context("Contracts", { tags: ['contracts', 'firstPool'] }, () => { const authorization = Cypress.env("authorization"); const contractNameR = Math.floor(Math.random() * 999) + "RCon4GetPoolsTests"; const contractNameW = Math.floor(Math.random() * 999) + "WCon4GetPoolsTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/demo/getRandomKey.cy.js b/e2e-tests/cypress/e2e/api-tests/demo/getRandomKey.cy.js index 477a0c8293..f0fc1ff56d 100644 --- a/e2e-tests/cypress/e2e/api-tests/demo/getRandomKey.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/demo/getRandomKey.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Demo", { tags: '@demo' }, () => { +context("Demo", { tags: ['demo', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); it("Generates a new Hedera account with a random private key", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/demo/getRegisteredUsers.cy.js b/e2e-tests/cypress/e2e/api-tests/demo/getRegisteredUsers.cy.js index bfcd262280..b169ddfebe 100644 --- a/e2e-tests/cypress/e2e/api-tests/demo/getRegisteredUsers.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/demo/getRegisteredUsers.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Demo", { tags: '@demo' }, () => { +context("Demo", { tags: ['demo', 'secondPool'] }, () => { it("Returns list of registered users", () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/external/postExternal.cy.js b/e2e-tests/cypress/e2e/api-tests/external/postExternal.cy.js index 64d449eda2..4c6ccad86c 100644 --- a/e2e-tests/cypress/e2e/api-tests/external/postExternal.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/external/postExternal.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("External", { tags: '@external' }, () => { +context("External", { tags: ['external', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let policyTag, owner diff --git a/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFS.cy.js b/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFS.cy.js index 47beedbfbd..ce8bded7b9 100644 --- a/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("IPFS", { tags: '@ipfs' }, () => { +context("IPFS", { tags: ['ipfs', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); let cid diff --git a/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFSDryRun.cy.js b/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFSDryRun.cy.js index 63d67c10e6..aadb35e631 100644 --- a/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFSDryRun.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/ipfs/addAndGetFileIPFSDryRun.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("IPFS", { tags: '@ipfs' }, () => { +context("IPFS", { tags: ['ipfs', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); let cid, policyId; diff --git a/e2e-tests/cypress/e2e/api-tests/logs/getLogsAndAttributes.cy.js b/e2e-tests/cypress/e2e/api-tests/logs/getLogsAndAttributes.cy.js index c0fc588e78..2bfe0e120e 100644 --- a/e2e-tests/cypress/e2e/api-tests/logs/getLogsAndAttributes.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/logs/getLogsAndAttributes.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Logs", { tags: '@logs' }, () => { +context("Logs", { tags: ['logs', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let workerName, workersNumber; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/deleteModule.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/deleteModule.cy.js index bdb8b5bc16..fe03a4cd4b 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/deleteModule.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/deleteModule.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: "@modules" }, () => { +context("Modules", { tags: ['modules', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let moduleId; const moduleName = Math.floor(Math.random() * 999) + "APIModule"; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/exportModuleFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/exportModuleFile.cy.js index a59290b583..8b36bcd8f2 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/exportModuleFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/exportModuleFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModuleExp"; let moduleUuid; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/exportModuleIPFS.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/exportModuleIPFS.cy.js index 4f11ff3865..81ee89d913 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/exportModuleIPFS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/exportModuleIPFS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModuleExp"; let moduleUuid; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getAllModules.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getAllModules.cy.js index 175f4ac5c0..f94b7c5cf7 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getAllModules.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getAllModules.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Get list of modules", () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getFile.cy.js index f8c373c02d..0b35895517 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModule"; let moduleId; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getMessage.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getMessage.cy.js index 25f47ff39f..0cab59df45 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getMessage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getMessage.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModule"; let moduleId; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getModuleConfiguration.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getModuleConfiguration.cy.js index dfcc57696d..0a6a0debf1 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getModuleConfiguration.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getModuleConfiguration.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModule"; let moduleId; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getModuleSchemas.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getModuleSchemas.cy.js index 1f5c36c559..6cfb99eca2 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getModuleSchemas.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getModuleSchemas.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' }, () => { +context("Modules", { tags: ['modules', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get modules schemas", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getModules.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getModules.cy.js index cd82f9eb2a..4c29522809 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getModules.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getModules.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Get modules menu", { tags: ['smoke'] }, () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/modules/getModulesMenu.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/getModulesMenu.cy.js index 52e685931f..3892d5449c 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/getModulesMenu.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/getModulesMenu.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/modules/importModuleFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/importModuleFile.cy.js index 67bcd80353..44d35386c1 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/importModuleFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/importModuleFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' }, () => { +context("Modules", { tags: ['modules', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Imports new module and all associated artifacts", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/importModuleIPFS.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/importModuleIPFS.cy.js index 31f9518bd6..51770310e8 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/importModuleIPFS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/importModuleIPFS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Imports new module and all associated artifacts from IPFS into the local DB", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleFile.cy.js index 1053eb46b9..09294850dc 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Import module from IPFS", { tags: ['smoke'] }, () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleIPFS.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleIPFS.cy.js index de0ab9e85b..97038b0364 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleIPFS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/postImportModuleIPFS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("import module ipfs", { tags: ['smoke'] }, () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/postModule.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/postModule.cy.js index e5ede70661..6d5516d31b 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/postModule.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/postModule.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModule"; it("Create a new module", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleFile.cy.js index 88cdc2e61d..942ea26fbd 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Preview the module from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleMessage.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleMessage.cy.js index 5fc7587ab6..900f53bf69 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleMessage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/postPreviewModuleMessage.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Preview the module from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/previewModuleFile.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/previewModuleFile.cy.js index f4227cfd5e..0082193c26 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/previewModuleFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/previewModuleFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' }, () => { +context("Modules", { tags: ['modules', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Previews the module from a zip file without loading it into the local DB", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/previewModuleIPFS.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/previewModuleIPFS.cy.js index 38359c4e8b..5c7cbfd68e 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/previewModuleIPFS.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/previewModuleIPFS.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Previews the module from IPFS without loading it into the local DB", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/modules/putModule.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/putModule.cy.js index 5b6c08fcc7..45f3fd086a 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/putModule.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/putModule.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModuleForEdit"; let moduleId; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/putPublishModules.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/putPublishModules.cy.js index 9a5ef67035..6c3799d0eb 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/putPublishModules.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/putPublishModules.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' },() => { +context("Modules", { tags: ['modules', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModuleForPublish"; let moduleId; diff --git a/e2e-tests/cypress/e2e/api-tests/modules/validateModule.cy.js b/e2e-tests/cypress/e2e/api-tests/modules/validateModule.cy.js index cd5ec93926..dbd48dfd97 100644 --- a/e2e-tests/cypress/e2e/api-tests/modules/validateModule.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/modules/validateModule.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Modules", { tags: '@modules' }, () => { +context("Modules", { tags: ['modules', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const moduleName = Math.floor(Math.random() * 999) + "APIModule"; let moduleUuid, moduleConfiguration; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportFile.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportFile.cy.js index 70d7cdb4f0..1e4bccc467 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportFile.cy.js @@ -3,7 +3,7 @@ import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' },() => { +context("Policies", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportMessage.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportMessage.cy.js index 3e614e08cc..24e455ea92 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportMessage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/GetPoliciesAndExportMessage.cy.js @@ -3,7 +3,7 @@ import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/deletePolicy.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/deletePolicy.cy.js index ce6e8f3dba..c54a2279bd 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/deletePolicy.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/deletePolicy.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: "@policies" }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); let policyId; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/dryRunPolicies.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/dryRunPolicies.cy.js index 74747b3823..f2b69694ef 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/dryRunPolicies.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/dryRunPolicies.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Dry Run Policies", { tags: '@dry-run' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPolicies.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPolicies.cy.js index b3dfe9e5fc..b5479fc111 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPolicies.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPolicies.cy.js @@ -2,7 +2,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policies', {tags: '@policies'}, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocks.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocks.cy.js index b56ffc5dd4..c93f8bfe8e 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocks.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocks.cy.js @@ -1,9 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; - - -context("Policies", { tags: '@policies' },() => { +context("Policies", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksData.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksData.cy.js index 9285665c7f..be7bb6c33d 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksData.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksData.cy.js @@ -3,7 +3,7 @@ import API from "../../../support/ApiUrls"; -context("Policies",{ tags: '@policies' }, () => { +context("Policies",{ tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksTag.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksTag.cy.js index 4a32510c33..1c98733878 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksTag.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesBlocksTag.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesGroups.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesGroups.cy.js index e8f3b9ad81..0dc86fc348 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesGroups.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPoliciesGroups.cy.js @@ -1,9 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; - - -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyConfiguration.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyConfiguration.cy.js index 89c9c6953c..63a008f8b1 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyConfiguration.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyConfiguration.cy.js @@ -1,8 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; - -context('Policies', { tags: '@policies' }, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); let policyId; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyId.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyId.cy.js index 7dfc18b91d..667d5f81ce 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyId.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyId.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policies', { tags: '@policies' }, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); it('Get policy configuration for the specified policy ID', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyTags.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyTags.cy.js index 877b4f22e3..a0b82288b4 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/getPolicyTags.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/getPolicyTags.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' },() => { +context("Policies", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/mintTokens.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/mintTokens.cy.js index 18e985d2c9..f01dc6a77f 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/mintTokens.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/mintTokens.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; import * as Checks from "../../../support/checkingMethods"; -context("Contracts", { tags: '@contracts' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); const optionKey = "option"; let username = Math.floor(Math.random() * 99999) + "UserContReqTests"; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesAndValidate.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesAndValidate.cy.js index 8af22f9aea..f0b27fe847 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesAndValidate.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesAndValidate.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context(" Policies", { tags: '@policies' }, () => { +context(" Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesBlocksData.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesBlocksData.cy.js index 7db039a6d6..23317ee41f 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesBlocksData.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesBlocksData.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' },() => { +context("Policies", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesGroup.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesGroup.cy.js index 74c24cba8c..0cb76540fd 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesGroup.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesGroup.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policies', { tags: '@policies' },() => { +context('Policies', { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env('authorization'); it('Make the group active', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportFile.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportFile.cy.js index 49d16e7c8f..2607ec97ab 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportFile.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policies', { tags: '@policies' }, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); it('Imports new policy and all associated artifacts from file', { tags: ['smoke'] }, () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMessage.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMessage.cy.js index 616def820d..83b895d607 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMessage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMessage.cy.js @@ -3,7 +3,7 @@ import API from "../../../support/ApiUrls"; -context('Policy - Import',{ tags: '@policies' }, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); it('Imports new policy and all associated artifacts from IPFS', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMsgPreview.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMsgPreview.cy.js index 747cbf5e8f..1c0a40d212 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMsgPreview.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPoliciesImportMsgPreview.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' },() => { +context("Policies", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); it("Preview the policy from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPolicy.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPolicy.cy.js index 13082299e2..93d2de7873 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPolicy.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPolicy.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policies', { tags: '@policies' }, () => { +context('Policies', { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env('authorization'); const nameTag = Math.floor(Math.random() * 999) + "test666"; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPushPolicies.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPushPolicies.cy.js index ac7effd72c..3340790a5b 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPushPolicies.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPushPolicies.cy.js @@ -1,9 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; - - -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); it("Create a new policy", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportFile.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportFile.cy.js index cbc6def79b..e940c607c2 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportFile.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsg.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsg.cy.js index 303228bf25..ac119796c0 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsg.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsg.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policy - Import", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); it("Push import new policy and all associated artifacts from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsgPreview.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsgPreview.cy.js index a5d0d3dcf9..4865b7545e 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsgPreview.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/postPushPoliciesImportMsgPreview.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@policies' },() => { +context("Schemas", { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env("authorization"); it("Push preview the policy from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/putPoliciesId.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/putPoliciesId.cy.js index 2e100c24b5..5a82cd0149 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/putPoliciesId.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/putPoliciesId.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); it("Update policy configuration for the specified policy ID", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/policies/putPolicy.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/putPolicy.cy.js index b3f6a40c13..821fc696c7 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/putPolicy.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/putPolicy.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Policies", { tags: '@policies' }, () => { +context("Policies", { tags: ['policies', 'secondPool'] }, () => { const authorization = Cypress.env("authorization"); const policyName = Math.floor(Math.random() * 999) + "PolicyName"; let policyId; diff --git a/e2e-tests/cypress/e2e/api-tests/policies/putPushPoliciesPublish.cy.js b/e2e-tests/cypress/e2e/api-tests/policies/putPushPoliciesPublish.cy.js index 8abfaebe5c..e1906ae5b8 100644 --- a/e2e-tests/cypress/e2e/api-tests/policies/putPushPoliciesPublish.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/policies/putPushPoliciesPublish.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Policy - Import', { tags: '@policies' },() => { +context('Policies', { tags: ['policies', 'secondPool'] },() => { const authorization = Cypress.env('authorization'); it('Push publish the policy with the specified (internal) policy ID', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/profiles/getBalance.cy.js b/e2e-tests/cypress/e2e/api-tests/profiles/getBalance.cy.js index ffa889eedd..8c7888e5da 100644 --- a/e2e-tests/cypress/e2e/api-tests/profiles/getBalance.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/profiles/getBalance.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Profiles', { tags: '@profiles' },() => { +context('Profiles', { tags: ['profiles', 'thirdPool'] },() => { const authorization = Cypress.env('authorization'); it('Get Hedera account balance', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/profiles/getProfilesRootUser.cy.js b/e2e-tests/cypress/e2e/api-tests/profiles/getProfilesRootUser.cy.js index e51db6a5bf..43384a96b7 100644 --- a/e2e-tests/cypress/e2e/api-tests/profiles/getProfilesRootUser.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/profiles/getProfilesRootUser.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Profiles', { tags: '@profiles' },() => { +context('Profiles', { tags: ['profiles', 'thirdPool'] },() => { const authorization = Cypress.env('authorization'); it('Get user account information', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/profiles/setCredsAndLinkToSRByInstaller.cy.js b/e2e-tests/cypress/e2e/api-tests/profiles/setCredsAndLinkToSRByInstaller.cy.js index a1835921ce..41e08a0e24 100644 --- a/e2e-tests/cypress/e2e/api-tests/profiles/setCredsAndLinkToSRByInstaller.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/profiles/setCredsAndLinkToSRByInstaller.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Profiles', { tags: '@profiles' },() => { +context('Profiles', { tags: ['profiles', 'thirdPool'] },() => { const authorization = Cypress.env('authorization'); it('Set Hedera credentials for the Installer', () => { diff --git a/e2e-tests/cypress/e2e/api-tests/profiles/standardRegistrySetHederaCreds.cy.js b/e2e-tests/cypress/e2e/api-tests/profiles/standardRegistrySetHederaCreds.cy.js index 7e7e85ddd9..310ae3eaea 100644 --- a/e2e-tests/cypress/e2e/api-tests/profiles/standardRegistrySetHederaCreds.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/profiles/standardRegistrySetHederaCreds.cy.js @@ -3,7 +3,7 @@ import API from "../../../support/ApiUrls"; import {checkForRemovedStyleOptions} from "cypress/mount-utils"; -context('Profiles', { tags: '@profiles' },() => { +context('Profiles', { tags: ['profiles', 'thirdPool'] },() => { it('Get Standard Registry account information', () => { //Getting accessToken for StandardRegistry diff --git a/e2e-tests/cypress/e2e/api-tests/profiles/userCreateAndSetHederaCreds.cy.js b/e2e-tests/cypress/e2e/api-tests/profiles/userCreateAndSetHederaCreds.cy.js index 7fa3ca8461..f1b7cc0ff4 100644 --- a/e2e-tests/cypress/e2e/api-tests/profiles/userCreateAndSetHederaCreds.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/profiles/userCreateAndSetHederaCreds.cy.js @@ -2,7 +2,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Profiles', {tags: '@profiles'}, () => { +context('Profiles', { tags: ['profiles', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); let did diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaFile.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaFile.cy.js index 4f9d6ff63e..f078a6385f 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schema", { tags: '@schemas' }, () => { +context("Schema", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Export schema file", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaMsg.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaMsg.cy.js index 3d3f5c9ef6..24989639af 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaMsg.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getExportSchemaMsg.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schema",{ tags: '@schemas' }, () => { +context("Schema",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Export schema message", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getPushSchemaTopicId.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getPushSchemaTopicId.cy.js index a4b82bc23c..a810098301 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getPushSchemaTopicId.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getPushSchemaTopicId.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' },() => { +context("Schemas", { tags: ['schema', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Push create new schema", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaEntity.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaEntity.cy.js index c2aebef3f3..96f64c4fe8 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaEntity.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaEntity.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Find the schema using the schema type", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaTopicId.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaTopicId.cy.js index 3e8335650e..5f5e72dc7a 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaTopicId.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaTopicId.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get all schemas by topicId", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaType.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaType.cy.js index b79fbcc3e5..54e46c8f46 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaType.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemaType.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get the schema using the json document type", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemas.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemas.cy.js index 15e525fbaf..e219700a2f 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSchemas.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSchemas.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' },() => { +context("Schemas", { tags: ['schema', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Get all schemas", { tags: ['smoke'] }, () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSimpleSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSimpleSchema.cy.js index 0c60b10146..a745663c6c 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSimpleSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSimpleSchema.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas",{ tags: '@schemas' }, () => { +context("Schemas",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get schema by schema ID", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/getSystemSchemaByUser.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/getSystemSchemaByUser.cy.js index 2760582600..8c1dde12ac 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/getSystemSchemaByUser.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/getSystemSchemaByUser.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get all system schemas by username", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postImportFile.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postImportFile.cy.js index 789ce79240..30aeff0d0e 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postImportFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postImportFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postImportFilePreview.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postImportFilePreview.cy.js index a531d6cb64..648b49ecfd 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postImportFilePreview.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postImportFilePreview.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsg.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsg.cy.js index d72daf4d2a..56d950aea5 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsg.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsg.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas",{ tags: '@schemas' }, () => { +context("Schemas",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Import new schema from IPFS", { tags: ['smoke'] }, () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsgPreview.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsgPreview.cy.js index 17cea89777..c56a5013da 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsgPreview.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postImportMsgPreview.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportFile.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportFile.cy.js index 85c697b45a..7c2af393ab 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportFile.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportFile.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas",{ tags: '@schemas' }, () => { +context("Schemas",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); before(() => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsg.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsg.cy.js index 8716643753..71f11c8701 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsg.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsg.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas",{ tags: '@schemas' }, () => { +context("Schemas",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Push import new schema from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsgPreview.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsgPreview.cy.js index 12d85cfb76..101a388da7 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsgPreview.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/postPushImportMsgPreview.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas",{ tags: '@schemas' }, () => { +context("Schemas",{ tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Push preview the schema from IPFS", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/putActiveSystemSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/putActiveSystemSchema.cy.js index 939710d39a..03f00fe539 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/putActiveSystemSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/putActiveSystemSchema.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const username = "StandartRegistry"; const schemaUUID = ("0000b23a-b1ea-408f-a573"+ Math.floor(Math.random() * 999999) + "a2060a") diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/putPushSchemaPublish.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/putPushSchemaPublish.cy.js index fdb0d16a0a..dfbfac2012 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/putPushSchemaPublish.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/putPushSchemaPublish.cy.js @@ -1,7 +1,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", {tags: '@schemas'}, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const schemaUUID = ("0000b23a-b1ea-408f-a573" + Math.floor(Math.random() * 999999) + "a2060a"); let topicUid; diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/putSchemaPublish.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/putSchemaPublish.cy.js index f3316b6117..f657d366c5 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/putSchemaPublish.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/putSchemaPublish.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const schemaUUID = ("0000b23a-b1ea-408f-a573" + Math.floor(Math.random() * 999999) + "a2060a") diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSchema.cy.js index 7a0e4fa786..b71d394d9c 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSchema.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const schemaUUID = ("0000b23a-b1ea-408f-a573" + Math.floor(Math.random() * 999999) + "a2060a"); let topicUid; diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSystemSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSystemSchema.cy.js index d213c9ff16..400cf92ad8 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSystemSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/putUpdateSystemSchema.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Updates the system schema with the provided schema ID", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/schemaManage.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/schemaManage.cy.js index 158d67e9df..26d9dec2da 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/schemaManage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/schemaManage.cy.js @@ -1,7 +1,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", {tags: '@schemas'}, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const schemaUUID = ("0000b23a-b1ea-408f-a573" + Math.floor(Math.random() * 999999) + "a2060a"); let topicUid; diff --git a/e2e-tests/cypress/e2e/api-tests/schemas/systemSchemaManage.cy.js b/e2e-tests/cypress/e2e/api-tests/schemas/systemSchemaManage.cy.js index 53179efe2c..645bdeec8e 100644 --- a/e2e-tests/cypress/e2e/api-tests/schemas/systemSchemaManage.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/schemas/systemSchemaManage.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Schemas", { tags: '@schemas' }, () => { +context("Schemas", { tags: ['schema', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const schemaUUID = "1111b23a-b1ea-408f-a573-6d8bd1a2060a"; const username = "StandartRegistry"; diff --git a/e2e-tests/cypress/e2e/api-tests/settings/getSettings.cy.js b/e2e-tests/cypress/e2e/api-tests/settings/getSettings.cy.js index 2416881640..806d467119 100644 --- a/e2e-tests/cypress/e2e/api-tests/settings/getSettings.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/settings/getSettings.cy.js @@ -2,7 +2,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Settings',{ tags: '@settings' }, () => { +context('Settings',{ tags: ['settings', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it('Get current settings', { tags: ['smoke'] }, () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/settings/getSettingsEnv.cy.js b/e2e-tests/cypress/e2e/api-tests/settings/getSettingsEnv.cy.js index 42de7e5f15..b5f6dd73ac 100644 --- a/e2e-tests/cypress/e2e/api-tests/settings/getSettingsEnv.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/settings/getSettingsEnv.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Settings", { tags: '@settings' }, () => { +context("Settings", { tags: ['settings', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Get current environment name", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/settings/postSettings.cy.js b/e2e-tests/cypress/e2e/api-tests/settings/postSettings.cy.js index 55e608ca7c..a546525c99 100644 --- a/e2e-tests/cypress/e2e/api-tests/settings/postSettings.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/settings/postSettings.cy.js @@ -2,7 +2,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context('Settings', {tags: '@settings'}, () => { +context('Settings', { tags: ['settings', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it('Set settings', { tags: ['smoke'] }, () => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/tags/deleteContractTag.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/deleteContractTag.cy.js index bdc33b9c86..4ff03fbdf5 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/deleteContractTag.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/deleteContractTag.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE, METHOD} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const tagName = "contractTagAPI" + Math.floor(Math.random() * 999999); const contactName = "contractNameAPI" + Math.floor(Math.random() * 999999); const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/deleteModuleTag.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/deleteModuleTag.cy.js index 4d8d23e5e3..87f88f5a68 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/deleteModuleTag.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/deleteModuleTag.cy.js @@ -2,7 +2,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const tagName = "moduleTagAPI" + Math.floor(Math.random() * 999999); const moduleName = "moduleNameAPI" + Math.floor(Math.random() * 999999); const authorization = Cypress.env("authorization"); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/deletePolicyTag.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/deletePolicyTag.cy.js index bc61a7ebc1..a5ecd8089d 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/deletePolicyTag.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/deletePolicyTag.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const policyTag = "Tag_16850108144002" + Math.floor(Math.random() * 999999); const tagName = "policyTagAPI" + Math.floor(Math.random() * 999999); const policyName = "policyNameAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/deleteTagSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/deleteTagSchema.cy.js index fa5779030a..85e079ccf5 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/deleteTagSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/deleteTagSchema.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/getPublishedSchemas.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/getPublishedSchemas.cy.js index aed3ad9f09..d6831d22f7 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/getPublishedSchemas.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/getPublishedSchemas.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/getTagSchemas.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/getTagSchemas.cy.js index 2d7a80f8b3..d746d564d1 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/getTagSchemas.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/getTagSchemas.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE, METHOD} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/postContractTags.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/postContractTags.cy.js index 69b145da1f..f411fce0f3 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/postContractTags.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/postContractTags.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE, METHOD} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "contractTagAPI" + Math.floor(Math.random() * 999999); const contactName = "contractNameAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/postModuleTags.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/postModuleTags.cy.js index 5682606847..50e683b55d 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/postModuleTags.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/postModuleTags.cy.js @@ -2,7 +2,7 @@ import {METHOD, STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "moduleTagAPI" + Math.floor(Math.random() * 999999); const moduleName = "moduleNameAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/postPolicyTags.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/postPolicyTags.cy.js index 6a99dcf383..85a9eda6dc 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/postPolicyTags.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/postPolicyTags.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const policyTag = "Tag_16850108144002" + Math.floor(Math.random() * 999999); const tagName = "policyTagAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/postSearchTags.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/postSearchTags.cy.js index ba5748499d..f98b742869 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/postSearchTags.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/postSearchTags.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "contractTagAPI" + Math.floor(Math.random() * 999999); const contactName = "contractNameAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/postTagSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/postTagSchema.cy.js index cf6ded2655..9bcf51da5a 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/postTagSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/postTagSchema.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/putPublishTagSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/putPublishTagSchema.cy.js index ebdb1450a1..fe92664a5a 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/putPublishTagSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/putPublishTagSchema.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE, METHOD} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/putTagSchema.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/putTagSchema.cy.js index 81483f48ba..1d24176f3e 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/putTagSchema.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/putTagSchema.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "tagSchemaAPI" + Math.floor(Math.random() * 999999); const tagId = "d0e99e70-3511-486668e-bf6f-10041e9a0cb7" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tags/synchronizationTag.cy.js b/e2e-tests/cypress/e2e/api-tests/tags/synchronizationTag.cy.js index a8ddee738b..9c2d451812 100644 --- a/e2e-tests/cypress/e2e/api-tests/tags/synchronizationTag.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tags/synchronizationTag.cy.js @@ -2,7 +2,7 @@ import {STATUS_CODE} from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tags", {tags: '@tags'}, () => { +context("Tags", { tags: ['tags', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const tagName = "contractTagAPI" + Math.floor(Math.random() * 999999); const contactName = "contractNameAPI" + Math.floor(Math.random() * 999999); diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/getTokens.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/getTokens.cy.js index ca42c7213c..4e034996bf 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/getTokens.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/getTokens.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: '@tokens' },() => { +context("Tokens", { tags: ['tokens', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Get all tokens", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/getUserInfoSelectedToken.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/getUserInfoSelectedToken.cy.js index 65f21748b0..1f50fdaf92 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/getUserInfoSelectedToken.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/getUserInfoSelectedToken.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: "@tokens" }, () => { +context("Tokens", { tags: ['tokens', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const user = Cypress.env("root_user"); diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/postPushTokens.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/postPushTokens.cy.js index 05032b19e2..b438eaa9bc 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/postPushTokens.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/postPushTokens.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: '@tokens' },() => { +context("Tokens", { tags: ['tokens', 'thirdPool'] },() => { const authorization = Cypress.env("authorization"); it("Push create a new token", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/postTokens.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/postTokens.cy.js index e25d374c61..709e94178f 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/postTokens.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/postTokens.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens",{ tags: '@tokens' }, () => { +context("Tokens",{ tags: ['tokens', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); it("Create a new token", () => { diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/putDissociateAssociate.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/putDissociateAssociate.cy.js index b0ccf9f008..e1c7759e44 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/putDissociateAssociate.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/putDissociateAssociate.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens",{ tags: '@tokens' }, () => { +context("Tokens",{ tags: ['tokens', 'thirdPool'] }, () => { let username = "Installer"; before(() => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/putFreezeUnfreeze.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/putFreezeUnfreeze.cy.js index 037b952c34..6b126ba644 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/putFreezeUnfreeze.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/putFreezeUnfreeze.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: "@tokens" }, () => { +context("Tokens", { tags: ['tokens', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const user = "Installer"; diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/putGrantRevokeKyc.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/putGrantRevokeKyc.cy.js index 10aefe0f3a..8a963292dd 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/putGrantRevokeKyc.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/putGrantRevokeKyc.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: "@tokens" }, () => { +context("Tokens", { tags: ['tokens', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const user = "Installer"; diff --git a/e2e-tests/cypress/e2e/api-tests/tokens/putPushGrandRevokeKyc.cy.js b/e2e-tests/cypress/e2e/api-tests/tokens/putPushGrandRevokeKyc.cy.js index ea959b0f22..7838727c5f 100644 --- a/e2e-tests/cypress/e2e/api-tests/tokens/putPushGrandRevokeKyc.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/tokens/putPushGrandRevokeKyc.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Tokens", { tags: "@tokens" }, () => { +context("Tokens", { tags: ['tokens', 'thirdPool'] }, () => { const authorization = Cypress.env("authorization"); const user = Cypress.env("root_user"); diff --git a/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchains.cy.js b/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchains.cy.js index 5790e6d2dd..11f5db64d1 100644 --- a/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchains.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchains.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Trustchains", { tags: '@trustchains' },() => { +context("Trustchains", { tags: ['trustchains', 'thirdPool'] },() => { let username = 'Auditor' before(() => { cy.request({ diff --git a/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchainsHash.cy.js b/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchainsHash.cy.js index 284da2f443..ae0148ef93 100644 --- a/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchainsHash.cy.js +++ b/e2e-tests/cypress/e2e/api-tests/trustchains/getTrustchainsHash.cy.js @@ -1,7 +1,7 @@ import { METHOD, STATUS_CODE } from "../../../support/api/api-const"; import API from "../../../support/ApiUrls"; -context("Trustchains", { tags: '@trustchains' }, () => { +context("Trustchains", { tags: ['trustchains', 'thirdPool'] }, () => { let username = 'Auditor' before(() => { cy.request({