diff options
| author | Teoh Jay Shen <jay.shen.teoh@intel.com> | 2021-01-27 09:36:13 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-28 23:12:05 +0000 |
| commit | 41f96b141ef672d45ffc816f1ba65cd1d11189a2 (patch) | |
| tree | c1d98835a53055e241d33b794ab362f76149e1fb /meta/lib/oeqa | |
| parent | d1aee0c050921b26e4d01a1b3c7a6fd6539ef690 (diff) | |
| download | poky-41f96b141ef672d45ffc816f1ba65cd1d11189a2.tar.gz | |
oeqa/ethernet_ip_connman : add test for network connections
This test mimic the ethernet_static_ip_set_in_connman and ethernet_get_IP_in_connman_via_DHCP test case from oeqa/manual/bsp-hw.json.
The ethernet_static_ip_set_in_connman and ethernet_get_IP_in_connman_via_DHCP manual test case should be remove from oeqa/manual/bsp-hw.json if this patch get merged.
(From OE-Core rev: aaabc94dbe353b12297ba4a237f6817b2c6d4a31)
Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/ethernet_ip_connman.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ethernet_ip_connman.py b/meta/lib/oeqa/runtime/cases/ethernet_ip_connman.py new file mode 100644 index 0000000000..e010612838 --- /dev/null +++ b/meta/lib/oeqa/runtime/cases/ethernet_ip_connman.py | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | from oeqa.runtime.case import OERuntimeTestCase | ||
| 2 | from oeqa.core.decorator.depends import OETestDepends | ||
| 3 | from oeqa.core.decorator.data import skipIfQemu | ||
| 4 | |||
| 5 | class Ethernet_Test(OERuntimeTestCase): | ||
| 6 | |||
| 7 | def set_ip(self, x): | ||
| 8 | x = x.split(".") | ||
| 9 | sample_host_address = '150' | ||
| 10 | x[3] = sample_host_address | ||
| 11 | x = '.'.join(x) | ||
| 12 | return x | ||
| 13 | |||
| 14 | @skipIfQemu('qemuall', 'Test only runs on real hardware') | ||
| 15 | @OETestDepends(['ssh.SSHTest.test_ssh']) | ||
| 16 | def test_set_virtual_ip(self): | ||
| 17 | (status, output) = self.target.run("ifconfig eth0 | grep 'inet ' | awk '{print $2}'") | ||
| 18 | self.assertEqual(status, 0, msg='Failed to get ip address. Make sure you have an ethernet connection on your device, output: %s' % output) | ||
| 19 | original_ip = output | ||
| 20 | virtual_ip = self.set_ip(original_ip) | ||
| 21 | |||
| 22 | (status, output) = self.target.run("ifconfig eth0:1 %s netmask 255.255.255.0 && sleep 2 && ping -c 5 %s && ifconfig eth0:1 down" % (virtual_ip,virtual_ip)) | ||
| 23 | self.assertEqual(status, 0, msg='Failed to create virtual ip address, output: %s' % output) | ||
| 24 | |||
| 25 | @OETestDepends(['ethernet_ip_connman.Ethernet_Test.test_set_virtual_ip']) | ||
| 26 | def test_get_ip_from_dhcp(self): | ||
| 27 | (status, output) = self.target.run("connmanctl services | grep -E '*AO Wired|*AR Wired' | awk '{print $3}'") | ||
| 28 | self.assertEqual(status, 0, msg='No wired interfaces are detected, output: %s' % output) | ||
| 29 | wired_interfaces = output | ||
| 30 | |||
| 31 | (status, output) = self.target.run("ip route | grep default | awk '{print $3}'") | ||
| 32 | self.assertEqual(status, 0, msg='Failed to retrieve the default gateway, output: %s' % output) | ||
| 33 | default_gateway = output | ||
| 34 | |||
| 35 | (status, output) = self.target.run("connmanctl config %s --ipv4 dhcp && sleep 2 && ping -c 5 %s" % (wired_interfaces,default_gateway)) | ||
| 36 | self.assertEqual(status, 0, msg='Failed to get dynamic IP address via DHCP in connmand, output: %s' % output) \ No newline at end of file | ||
