diff --git a/integration-test/src/config/.env.dev b/integration-test/src/config/.env.dev index a44f6c22..1316dd2b 100644 --- a/integration-test/src/config/.env.dev +++ b/integration-test/src/config/.env.dev @@ -1,6 +1,6 @@ BIZ_EVENTS_SERVICE_HOST=https://api.dev.platform.pagopa.it/bizevents/service/v1/ BIZ_EVENTS_HELPDESK_HOST=https://api.dev.platform.pagopa.it/bizevents/helpdesk/v1/ -BIZ_EVENTS_TRXSRV_HOST=https://api.dev.platform.pagopa.it/bizevents/tx-service/v1/ +BIZ_EVENTS_LAPSRV_HOST=https://api.dev.platform.pagopa.it/bizevents/notices-service/v1/ COSMOS_DB_URI=https://pagopa-d-weu-bizevents-ds-cosmos-account.documents.azure.com:443/ COSMOS_DB_NAME=db COSMOS_DB_CONTAINER_NAME=biz-events diff --git a/integration-test/src/config/.env.local b/integration-test/src/config/.env.local index 0102bd7b..8efa9a4d 100644 --- a/integration-test/src/config/.env.local +++ b/integration-test/src/config/.env.local @@ -1,6 +1,6 @@ BIZ_EVENTS_SERVICE_HOST= BIZ_EVENTS_HELPDESK_HOST= -BIZ_EVENTS_TRXSRV_HOST= +BIZ_EVENTS_LAPSRV_HOST= COSMOS_DB_URI=https://pagopa-d-weu-bizevents-ds-cosmos-account.documents.azure.com:443/ COSMOS_DB_NAME=db COSMOS_DB_CONTAINER_NAME=biz-events diff --git a/integration-test/src/config/.env.uat b/integration-test/src/config/.env.uat index 815967bf..b96defca 100644 --- a/integration-test/src/config/.env.uat +++ b/integration-test/src/config/.env.uat @@ -1,6 +1,6 @@ BIZ_EVENTS_SERVICE_HOST=https://api.uat.platform.pagopa.it/bizevents/service/v1/ BIZ_EVENTS_HELPDESK_HOST=https://api.uat.platform.pagopa.it/bizevents/helpdesk/v1/ -BIZ_EVENTS_TRXSRV_HOST=https://api.uat.platform.pagopa.it/bizevents/tx-service/v1/ +BIZ_EVENTS_LAPSRV_HOST=https://api.uat.platform.pagopa.it/bizevents/notices-service/v1/ COSMOS_DB_URI=https://pagopa-u-weu-bizevents-ds-cosmos-account.documents.azure.com:443/ COSMOS_DB_NAME=db COSMOS_DB_CONTAINER_NAME=biz-events diff --git a/integration-test/src/step_definitions/support/bizeventservice_client.js b/integration-test/src/step_definitions/support/bizeventservice_client.js index 2d6f05bd..dc80692d 100644 --- a/integration-test/src/step_definitions/support/bizeventservice_client.js +++ b/integration-test/src/step_definitions/support/bizeventservice_client.js @@ -2,7 +2,7 @@ const { get, post } = require("./common"); const bizevents_service_host = process.env.BIZ_EVENTS_SERVICE_HOST; const bizevents_helpdesk_host = process.env.BIZ_EVENTS_HELPDESK_HOST; -const bizevents_trxsrv_host = process.env.BIZ_EVENTS_TRXSRV_HOST; +const bizevents_trxsrv_host = process.env.BIZ_EVENTS_LAPSRV_HOST; // is the same 4all @@ -25,7 +25,7 @@ function getBizEventByOrgFiscalCodeAndIuv(organizationfiscalcode, iuv) { return get(bizevents_helpdesk_host + `events/organizations/${organizationfiscalcode}/iuvs/${iuv}`, {}) } -// >>> BIZ_EVENTS_TRXSRV_HOST +// >>> BIZ_EVENTS_LAPSRV_HOST function getTransactionListForUserWithFiscalCode(fiscalcode) { return get(bizevents_trxsrv_host + `paids?size=10`, { "x-fiscal-code": fiscalcode