blob: 53104cfc1b1b340dc0829bcf1191211904b8823f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "toggle state of 2 interfaces"
setup_ctdbd <<EOF
NODEMAP
0 192.168.20.41 0x0 CURRENT RECMASTER
1 192.168.20.42 0x0
2 192.168.20.43 0x0
IFACES
:Name:LinkStatus:References:
:eth2:1:2:
:eth1:0:4:
EOF
# eth1: down -> down
ok_null
simple_test eth1 down
ok <<EOF
Interfaces on node 0
name:eth2 link:up references:2
name:eth1 link:down references:4
EOF
simple_test_other ifaces
# eth1: down -> up
ok_null
simple_test eth1 up
ok <<EOF
Interfaces on node 0
name:eth2 link:up references:2
name:eth1 link:up references:4
EOF
simple_test_other ifaces
# eth1: up -> down
ok_null
simple_test eth1 down
ok <<EOF
Interfaces on node 0
name:eth2 link:up references:2
name:eth1 link:down references:4
EOF
simple_test_other ifaces
# eth2: up -> down
ok_null
simple_test eth2 down
ok <<EOF
Interfaces on node 0
name:eth2 link:down references:2
name:eth1 link:down references:4
EOF
simple_test_other ifaces
# eth1: down -> up
ok_null
simple_test eth1 up
ok <<EOF
Interfaces on node 0
name:eth2 link:down references:2
name:eth1 link:up references:4
EOF
simple_test_other ifaces
|