NSB: move interface probe to VNF, and attempt driver-only probe first 81/44281/46
authorRoss Brattain <ross.b.brattain@intel.com>
Wed, 4 Oct 2017 20:38:43 +0000 (13:38 -0700)
committerRoss Brattain <ross.b.brattain@intel.com>
Thu, 1 Mar 2018 16:21:53 +0000 (08:21 -0800)
commit6f7dd8ff0e6358ef958426a6baeae5deee1a57d8
treebb3a46048a7ccd7d45b45352824d18612a25f7d3
parent9316c6c49957f2d8c680ed8acfaccac9070ed2f4
NSB: move interface probe to VNF, and attempt driver-only probe first

If no devices are present we can't detect MAC address so
we can't match Heat ports to interfaces.

If only the driver is missing we can try to probe the driver using
lspci.  We can use lspci to ask the kernel what driver it should use
for the PCI device.

If we can't probe at all because the device is already bound, we can
use dpkd-devind to find all the PCI address we care about and create a
map with PCI device and real kernel driver.

Then we can dpdk force rebind to the kernel driver.
Once we have rebound to the kernel driver we can detect
MAC address and all the other attributes that are required.

Fix VnfSshHelper to allow override of wait timeout

And a bunch of other refactors that got swept up in this

JIRA: YARDSTICK-835

Change-Id: I14cb657ed289a77941d048345d06ced5b5d5da52
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
18 files changed:
tests/unit/network_services/helpers/test_dpdkbindnic_helper.py
tests/unit/network_services/vnf_generic/vnf/test_prox_vnf.py
tests/unit/network_services/vnf_generic/vnf/test_sample_vnf.py
tests/unit/network_services/vnf_generic/vnf/test_tg_ping.py
yardstick/benchmark/scenarios/networking/vnf_generic.py
yardstick/common/utils.py
yardstick/error.py [new file with mode: 0644]
yardstick/network_services/constants.py [new file with mode: 0644]
yardstick/network_services/helpers/dpdkbindnic_helper.py
yardstick/network_services/utils.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/tg_rfc2544_ixia.py
yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py [new file with mode: 0644]
yardstick/ssh.py
yardstick/tests/unit/benchmark/scenarios/networking/test_vnf_generic.py
yardstick/tests/unit/common/test_utils.py
yardstick/tests/unit/test_ssh.py