diff options
-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 | ||