Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit 9de9ae9

Browse files
committed
Add container MAC migration tests
1 parent 2636132 commit 9de9ae9

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

test/155_migrate_mac_2_test.sh

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#! /bin/bash
2+
3+
. ./config.sh
4+
5+
C1=10.2.1.1
6+
C2=10.2.1.2
7+
C3=10.2.1.128
8+
9+
assert_migration() {
10+
start_container $HOST1 $C1/24 --name=c1
11+
start_container $HOST1 $C2/24 --name=c2
12+
start_container $HOST2 $C3/24 --name=c3 --privileged
13+
14+
assert_raises "exec_on $HOST2 c3 $PING $C2"
15+
MAC=$(exec_on $HOST1 c1 ip link show ethwe | sed -n -e 's|^ *link/ether \([0-9a-f:]*\).*|\1|p')
16+
docker_on $HOST1 rm -f c1
17+
exec_on $HOST2 c3 ip link set ethwe address $MAC
18+
assert_raises "exec_on $HOST2 c3 $PING $C2"
19+
}
20+
21+
start_suite "Container MAC migration"
22+
23+
# Test with fastdp
24+
25+
weave_on $HOST1 launch
26+
weave_on $HOST2 launch $HOST1
27+
assert_migration
28+
29+
# Cleanup
30+
31+
docker_on $HOST1 rm -f c2
32+
docker_on $HOST2 rm -f c3
33+
weave_on $HOST1 reset
34+
weave_on $HOST2 reset
35+
36+
# Test with sleeve
37+
38+
WEAVE_NO_FASTDP=1 weave_on $HOST1 launch
39+
WEAVE_NO_FASTDP=1 weave_on $HOST2 launch $HOST1
40+
assert_migration
41+
42+
end_suite

0 commit comments

Comments
 (0)