1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.data import skipIfQemu
4
5class 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()
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    @skipIfQemu()
26    @OETestDepends(['ethernet_ip_connman.Ethernet_Test.test_set_virtual_ip'])
27    def test_get_ip_from_dhcp(self):
28        (status, output) = self.target.run("connmanctl services | grep -E '*AO Wired|*AR Wired' | awk '{print $3}'")
29        self.assertEqual(status, 0, msg='No wired interfaces are detected, output: %s' % output)
30        wired_interfaces = output
31
32        (status, output) = self.target.run("ip route | grep default | awk '{print $3}'")
33        self.assertEqual(status, 0, msg='Failed to retrieve the default gateway, output: %s' % output)
34        default_gateway = output
35
36        (status, output) = self.target.run("connmanctl config %s --ipv4 dhcp && sleep 2 && ping -c 5 %s" % (wired_interfaces,default_gateway))
37        self.assertEqual(status, 0, msg='Failed to get dynamic IP address via DHCP in connmand, output: %s' % output)