diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2021-02-10 13:23:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-10 13:23:53 +0000 |
commit | 180062fb8462fcaf5d81fb311f80fecf382292c5 (patch) | |
tree | d93ce2c57cd90627e6aebae8d2f058dfb88b2ff7 /mso-api-handlers/mso-api-handler-infra/src/test/resources | |
parent | 666b56c9241c37b22f631fb88f4a40aedefa2eac (diff) | |
parent | bc0754b45540c56eeb9fc2aa2649a030136d0742 (diff) |
Merge "Read subnetCapabilities configuration file from SO pod"
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/test/resources')
2 files changed, 36 insertions, 0 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/test/resources/Onap3gppServiceInstancesTest/subnetCapability.json b/mso-api-handlers/mso-api-handler-infra/src/test/resources/Onap3gppServiceInstancesTest/subnetCapability.json new file mode 100644 index 0000000000..55b3831502 --- /dev/null +++ b/mso-api-handlers/mso-api-handler-infra/src/test/resources/Onap3gppServiceInstancesTest/subnetCapability.json @@ -0,0 +1,31 @@ +{ + "AN": { + "latency": 5, + "maxNumberofUEs": "100", + "maxThroughput": "150", + "terminalDensity": "50" + }, + "CN": { + "latency": 10, + "maxThroughput": "50", + "maxNumberofConns": "100" + }, + "TN_FH": { + "latency": 10, + "maxThroughput": "100" + }, + "TN_MH": { + "latency": 5, + "maxThroughput": "50" + }, + "TN_BH": { + "latency": 10, + "maxThroughput": "100" + }, + "AN_NF": { + "latency": 5, + "maxNumberofUEs": "100", + "maxThroughput": "150", + "terminalDensity": "50" + } +} diff --git a/mso-api-handlers/mso-api-handler-infra/src/test/resources/application-test.yaml b/mso-api-handlers/mso-api-handler-infra/src/test/resources/application-test.yaml index 1429ac9b52..bcd36b8643 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/test/resources/application-test.yaml +++ b/mso-api-handlers/mso-api-handler-infra/src/test/resources/application-test.yaml @@ -140,3 +140,8 @@ org: adapters: network: encryptionKey: aa3871669d893c7fb8abbcda31b88b4f + +subnetCapability: + config: + file: src/test/resources/Onap3gppServiceInstancesTest/subnetCapability.json + |