diff options
author | 2024-11-19 11:10:32 +0000 | |
---|---|---|
committer | 2024-11-22 11:00:58 +0000 | |
commit | fd5b04c51451cb0525d7ed93b1bb9b53573f6aaa (patch) | |
tree | 4d22141c2e229dbdc98f3b4c82e2db6d7ec77555 /k6-tests/ncmp/common | |
parent | d378e7b4321bf940424079440461eb0b874ad096 (diff) |
Define new Suite (js): Endurance
- have one ncmp-test-runner.js with different configs: kpi.json and
endurance.json
- move scenarios and thresholds settings into the json configs
Issue-ID: CPS-2444
Change-Id: I72f65036dc3f7762284b32903e1d05474dbed6c2
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'k6-tests/ncmp/common')
-rw-r--r-- | k6-tests/ncmp/common/utils.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/k6-tests/ncmp/common/utils.js b/k6-tests/ncmp/common/utils.js index 45f6e96050..8abe54c0cb 100644 --- a/k6-tests/ncmp/common/utils.js +++ b/k6-tests/ncmp/common/utils.js @@ -20,13 +20,11 @@ import http from 'k6/http'; -const testConfig = JSON.parse(open(`../config/${__ENV.TEST_PROFILE}.json`)); +export const testConfig = JSON.parse(open(`../config/${__ENV.TEST_PROFILE}.json`)); export const KAFKA_BOOTSTRAP_SERVERS = testConfig.hosts.kafkaBootstrapServer; -export const LEGACY_BATCH_TOPIC_NAME = testConfig.kafka.legacyBatchTopic; -export const DURATION = testConfig.timingConfig.testDuration; -export const LEGACY_BATCH_THROUGHPUT_TEST_START_TIME = testConfig.timingConfig.legacyBatchThroughputTestStartTime; export const NCMP_BASE_URL = testConfig.hosts.ncmpBaseUrl; export const DMI_PLUGIN_URL = testConfig.hosts.dmiStubUrl; +export const LEGACY_BATCH_TOPIC_NAME = 'legacy_batch_topic'; export const TOTAL_CM_HANDLES = 20000; export const REGISTRATION_BATCH_SIZE = 100; export const READ_DATA_FOR_CM_HANDLE_DELAY_MS = 300; // must have same value as in docker-compose.yml |