Do NOT hardcode interface speed for PROX tests 47/53247/19
authorDanielMartinBuckley <daniel.m.buckley@intel.com>
Wed, 7 Mar 2018 18:09:12 +0000 (18:09 +0000)
committerDanielMartinBuckley <daniel.m.buckley@intel.com>
Fri, 9 Mar 2018 14:04:03 +0000 (14:04 +0000)
commitf7e477133cfc87134bb860aaaf39d932bbae1907
tree23e19f938b6a35f7225ac1e052f26220172c2178
parentf753fb86cc26e08dca168c0827d28a7b6f022d1f
Do NOT hardcode interface speed for PROX tests

JIRA: YARDSTICK-1035

Do not hardcode NIC/interface speed in PROX test. Test assumes
NIC used is 10Gbps. This is incorrect. It could support 1Gbps,
10Gbps, 25Gbps, 40Gbps or something else.

This is used to calculate pps (Packets Per Second)
In Baremetal the NIC speed could be extracted. however when
run on a virtual machine this is not possible.

Solution:
Add in options section of test file.

eg.
Options:
  interface_speed_gbps: 10

Where 10 refers to a 10Gbps. In a setup where multiple interfaces
are used. This will refer to the speed of the slowest connection.

Change-Id: I89ab16479a2cdd1d79e52cbcc5a972762c60d057
Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
docs/testing/developer/devguide/devguide_nsb_prox.rst
samples/vnf_samples/nsut/prox/tc_prox_baremetal_l2fwd-2.yaml
samples/vnf_samples/nsut/prox/tc_prox_baremetal_l2fwd-4.yaml
tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py
yardstick/network_services/constants.py
yardstick/network_services/traffic_profile/prox_binsearch.py
yardstick/network_services/vnf_generic/vnf/prox_helpers.py
yardstick/network_services/vnf_generic/vnf/prox_vnf.py
yardstick/network_services/vnf_generic/vnf/sample_vnf.py
yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py