diff options
author | Serhiy Pshyk <serhiyx.pshyk@intel.com> | 2018-11-30 19:34:48 +0000 |
---|---|---|
committer | Serhiy Pshyk <serhiyx.pshyk@intel.com> | 2018-12-04 08:48:38 +0000 |
commit | 5b4d203f63a1293f95584de2e6b5cbef0d74d16a (patch) | |
tree | 192fb507f7474fc9fa05b6e5cd93c077381cb6b1 /samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml | |
parent | 7f5451a139383a5138b7c0fea6b3fb9a6297f974 (diff) |
Add HTTP IxLoad test cases for agnostic VNF
New files added to support HTTP tests with IxLoad and AgnosticVNF
- http traffic profile that is used in all HTTP IxLoad test cases
- test case file for each type of HTTP test
- IxLoad config file (rxf) for each type of HTTP test
JIRA: YARDSTICK-1549
Change-Id: I5afe0b6bae1483dcb12c5ec145a4d6d7acc65ac2
Signed-off-by: Serhiy Pshyk <serhiyx.pshyk@intel.com>
Diffstat (limited to 'samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml')
-rw-r--r-- | samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml b/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml new file mode 100644 index 000000000..7b52f7dae --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml @@ -0,0 +1,56 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or imp +# See the License for the specific language governing permissions and +# limitations under the License. + +schema: "nsb:traffic_profile:0.1" + +name: TrafficProfileGenericHTTP +description: Traffic profile to run HTTP test +traffic_profile: + traffic_type: TrafficProfileGenericHTTP + +uplink_0: + ip: + address: "172.16.50.132" # must be in same subnet with gateway + subnet_prefix: 24 # subnet prefix + mac: "00:00:00:00:44:33" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> # will be taken from pod file + + http_client: + simulated_users: {{ get(simulated_users, 'simulated_users.uplink_0') }} + page_object: {{ get(page_object, 'page_object.uplink_0', '/1b.html') }} + +downlink_0: + ip: + address: "172.16.31.132" # must be in same subnet with gateway + subnet_prefix: 24 # subnet prefix + mac: "00:00:00:00:44:44" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> # will be taken from pod file + +uplink_1: + ip: + address: "12.12.12.32" + subnet_prefix: 24 + mac: "Auto" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> + + http_client: + simulated_users: {{ get(simulated_users, 'simulated_users.uplink_1', '65000') }} # number of threads to be run + page_object: {{ get(page_object, 'page_object.uplink_1', '/1b.html') }} # http locator to be read + +downlink_1: + ip: + address: "13.13.13.32" + subnet_prefix: 24 + mac: "Auto" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> |