From: "Mo, YufengX" <yufengx.mo@intel.com>
To: "Liu, Yong" <yong.liu@intel.com>
Cc: "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script.
Date: Mon, 16 Jan 2017 08:52:40 +0000 [thread overview]
Message-ID: <B8B15C44A3F2C044966E545C7B73711539FB7952@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1484555392-32241-3-git-send-email-yufengx.mo@intel.com>
ignore this mail.
> -----Original Message-----
> From: Mo, YufengX
> Sent: January 16, 2017 4:30 PM
> To: dts@dpdk.org
> Cc: Mo, YufengX
> Subject: [dts][PATCH V2 2/2] userspace_ethtool: update automation testing script.
>
> From: yufengmx <yufengx.mo@intel.com>
>
>
> *. add nic's firmware/bus-info information query checking, which is corresponding with
> Qiming Yang's
> patchset 18597-18600(accepted)
> patchset 18601(accepted)
>
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
> ---
> tests/TestSuite_userspace_ethtool.py | 141 +++++++++++++++++++++++++++--------
> 1 file changed, 111 insertions(+), 30 deletions(-)
>
> diff --git a/tests/TestSuite_userspace_ethtool.py b/tests/TestSuite_userspace_ethtool.py
> index ced7e96..937a9e5 100644
> --- a/tests/TestSuite_userspace_ethtool.py
> +++ b/tests/TestSuite_userspace_ethtool.py
> @@ -128,22 +128,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
> else:
> return 1518
>
> - def resize_linux_eeprom_file(self, dpdk_eeprom_file, linux_eeprom_file):
> - basePath = os.sep + "root" + self.dut.base_dir[1:] + os.sep
> - with open( basePath + os.sep + dpdk_eeprom_file, 'rb') as fpDpdk:
> - dpdk_bytes = fpDpdk.read()
> - dpdk_length = len(dpdk_bytes)
> -
> - with open( basePath + linux_eeprom_file, 'rb') as fplinux:
> - linux_bytes = fplinux.read()
> - linux_length = len(linux_bytes)
> -
> - self.verify(dpdk_length <= linux_length,
> - "linux ethtool haven't dump out enough data as dpdk ethtool")
> -
> - with open( basePath + linux_eeprom_file, 'wb') as fplinux:
> - fplinux.write(linux_bytes[:dpdk_length])
> -
> def strip_md5(self, filename):
> md5_info = self.dut.send_expect("md5sum %s" % filename, "# ")
> md5_pattern = r"(\w+) (\w+)"
> @@ -153,25 +137,123 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
> else:
> return ""
>
> + def dpdk_get_nic_info(self, dpdk_driver_msg):
> + # get nic driver information using dpdk's ethtool
> + info_lines = dpdk_driver_msg.strip().splitlines()
> + driver_pattern = r"Port (\d+) driver: (.*) \(ver: (.*)\)"
> + pattern = "(.*): (.*)"
> + firmwarePat = "0x([0-9a-f]+)"
> + check_content = ['firmware-version', 'driver']
> + nic_infos = {}
> + port = None
> + cnt = 0
> + while cnt < len(info_lines):
> + if not info_lines[cnt]:
> + pass
> + else:
> + m = re.match(driver_pattern, info_lines[cnt])
> + if m:
> + port = m.group(1)
> + nic_infos[port] = {}
> + nic_infos[port]['driver'] = m.group(2).split('_').pop()
> + dpdk_version = m.group(3)
> + else:
> + if port:
> + out = re.findall(pattern, info_lines[cnt], re.M)[0]
> + if len(out) == 2:
> + if out[0] == 'firmware-version':
> + nic_infos[port][out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
> + else:
> + nic_infos[port][out[0]] = out[1]
> + cnt += 1
> + # check driver content
> + status = []
> + for port_no in nic_infos:
> + nic_info = nic_infos[port_no]
> + for item in check_content:
> + if item not in nic_info.keys():
> + status.append("port {0} get {1} failed".format(port_no, item))
> + break
> + # if there is error in status, clear nic_infos
> + if status:
> + msg = os.linesep.join(status)
> + nic_infos = None
> + else:
> + msg = ''
> +
> + return nic_infos, msg
> +
> + def linux_get_nic_info(self, port_name):
> + # get nic driver information using linux's ethtool
> + pattern = "(.*): (.*)"
> + firmwarePat = "0x([0-9a-f]+)"
> + infos = self.dut.send_expect("ethtool -i %s"%port_name, "# ").splitlines()
> + sys_nic_info = {}
> + for info in infos:
> + if not info:
> + continue
> + result = re.findall(pattern, info, re.M)
> + if not result:
> + continue
> + out = result[0]
> + if len(out) == 2:
> + if out[0] == 'firmware-version':
> + sys_nic_info[out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
> + else:
> + sys_nic_info[out[0]] = out[1]
> + return sys_nic_info
> +
> + def check_driver_info(self, port_name, sys_nic_info, dpdk_drv_info):
> + # compare dpdk query nic information with linux query nic information
> + for item, value in dpdk_drv_info.items():
> + if item not in sys_nic_info.keys():
> + msg = "linux ethtool failed to dump driver info"
> + status = False
> + break
> + if value != sys_nic_info[item]:
> + msg = "Userspace ethtool failed to dump driver info"
> + status = False
> + break
> + else:
> + msg = "{0}: dpdk ethtool dump nic information done".format(port_name)
> + status = True
> +
> + return status, msg
> +
> def test_dump_driver_info(self):
> """
> Test ethtool can dump basic information
> """
> self.dut.send_expect(self.cmd, "EthApp>", 60)
> - out = self.dut.send_expect("drvinfo", "EthApp>")
> - driver_pattern = r"Port (\d+) driver: rte_(.*)_pmd \(ver: RTE (.*)\)"
> - driver_infos = out.split("\r\n")
> - self.verify(len(driver_infos) > 1, "Userspace tool failed to dump driver infor")
> -
> - # check dump driver info function
> - for driver_info in driver_infos:
> - m = re.match(driver_pattern, driver_info)
> - if m:
> - port = m.group(1)
> - driver = m.group(2)
> - version = m.group(3)
> - print utils.GREEN("Detect port %s with %s driver\n" % (port, driver))
> + dpdk_driver_msg = self.dut.send_expect("drvinfo", "EthApp>")
> + self.dut.send_expect("quit", "# ")
> + dpdk_nic_infos, msg = self.dpdk_get_nic_info(dpdk_driver_msg)
> + self.verify(dpdk_nic_infos, msg)
> +
> + portsinfo = {}
> + for index in range(len(self.ports)):
> + portsinfo[index] = {}
> + portinfo = portsinfo[index]
> + port = self.ports[index]
> + netdev = self.dut.ports_info[port]['port']
> + # strip orignal driver
> + portinfo['ori_driver'] = netdev.get_nic_driver()
> + portinfo['net_dev'] = netdev
> + # bind to default driver
> + netdev.bind_driver()
> + # get linux interface
> + intf_name = netdev.get_interface_name()
> + sys_nic_info = self.linux_get_nic_info(intf_name)
> + status, msg = self.check_driver_info(intf_name, sys_nic_info, dpdk_nic_infos[str(index)])
> + self.logger.info(msg)
> + self.verify(status, msg)
>
> + for index in range(len(self.ports)):
> + # bind to original driver
> + portinfo = portsinfo[index]
> + portinfo['net_dev'].bind_driver(portinfo['ori_driver'])
> +
> + self.dut.send_expect(self.cmd, "EthApp>", 60)
> # ethtool doesn't support port disconnect by tools of linux
> # only detect physical link disconnect status
> if self.nic.startswith("fortville") == False:
> @@ -294,7 +376,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
>
> for index in range(len(self.ports)):
> md5 = self.strip_md5(portsinfo[index]['eeprom_file'])
> - self.resize_linux_eeprom_file( portsinfo[index]['eeprom_file'], portsinfo[index]['ethtool_eeprom'])
> md5_ref = self.strip_md5(portsinfo[index]['ethtool_eeprom'])
> print utils.GREEN("Reference eeprom md5 %s" % md5)
> print utils.GREEN("Reference eeprom md5_ref %s" % md5_ref)
> --
> 1.9.3
next prev parent reply other threads:[~2017-01-16 8:52 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-16 8:29 [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan yufengx.mo
2017-01-16 8:29 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan yufengx.mo
2017-01-16 8:52 ` Mo, YufengX
2017-01-16 8:29 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script yufengx.mo
2017-01-16 8:52 ` Mo, YufengX [this message]
2017-01-16 8:52 ` [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Mo, YufengX
-- strict thread matches above, loose matches on Subject: below --
2017-01-16 8:13 Yufen Mo
2017-01-16 8:13 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script Yufen Mo
2017-01-16 8:20 ` Mo, YufengX
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=B8B15C44A3F2C044966E545C7B73711539FB7952@shsmsx102.ccr.corp.intel.com \
--to=yufengx.mo@intel.com \
--cc=dts@dpdk.org \
--cc=yong.liu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).