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

Commit cc28030

Browse files
committed
basic test to confirm static ip allocation works
1 parent 49f007f commit cc28030

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

ipam/claim.go

+3
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ func (c *claim) Try(alloc *Allocator) bool {
128128
// but we also cannot prove otherwise, so we let it reclaim the address:
129129
alloc.debugln("Re-Claimed", c.cidr, "for ID", c.ident, "having existing ID as", existingIdent)
130130
c.sendResult(nil)
131+
case c.ident == "weave:expose":
132+
alloc.debugln("Ignoring weave:expose")
133+
c.sendResult(nil)
131134
default:
132135
// Addr already owned by container on this machine
133136
c.sendResult(fmt.Errorf("address %s is already owned by %s", c.cidr.String(), existingIdent))

test/880_cni_plugin_ip_address_assignment_test.sh

+23-7
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ cni_connect() {
1313

1414
run_on $HOST1 sudo mkdir -p /opt/cni/bin
1515
# setup-cni is a subset of 'weave setup', without doing any 'docker pull's
16-
weave_on $HOST1 setup-cni
17-
weave_on $HOST1 launch
16+
weave_on $HOST1 setup-cni --log-level=debug
17+
weave_on $HOST1 launch --log-level=debug
1818

1919
C0=$(docker_on $HOST1 run --net=none --name=c0 --privileged -dt $SMALL_IMAGE /bin/sh)
2020
C1=$(docker_on $HOST1 run --net=none --name=c1 --privileged -dt $SMALL_IMAGE /bin/sh)
@@ -70,16 +70,32 @@ C0IP=$(container_ip $HOST1 c0)
7070
C1IP=$(container_ip $HOST1 c1)
7171
C2IP=$(container_ip $HOST1 c2)
7272

73-
echo $C0IP
74-
echo $C1IP
75-
echo $C2IP
73+
assert_raises "[ "10.32.1.30" == $C0IP ]"
74+
assert_raises "[ "10.32.1.40" == $C1IP ]"
75+
assert_raises "[ "10.32.1.42" == $C2IP ]"
76+
77+
BRIP=$(container_ip $HOST1 weave:expose)
78+
# Check the bridge IP is different from the container IPs
79+
assert_raises "[ $BRIP != $C0IP ]"
80+
assert_raises "[ $BRIP != $C1IP ]"
81+
assert_raises "[ $BRIP != $C2IP ]"
82+
83+
# Containers should be able to reach one another
84+
assert_raises "exec_on $HOST1 c0 $PING $C1IP"
85+
assert_raises "exec_on $HOST1 c1 $PING $C2IP"
86+
assert_raises "exec_on $HOST1 c2 $PING $C1IP"
87+
88+
# Containers should not have a default route to the world
89+
assert_raises "exec_on $HOST1 c0 sh -c '! $PING 8.8.8.8'"
90+
assert_raises "exec_on $HOST1 c1 sh -c '! $PING 8.8.8.8'"
91+
assert_raises "exec_on $HOST1 c2 sh -c '! $PING 8.8.8.8'"
7692

7793
# Ensure existing containers can reclaim their IP addresses after CNI has been used -- see #2548
7894
stop_weave_on $HOST1
7995

8096
# Ensure no warning is printed to the standard error:
81-
ACTUAL_OUTPUT=$(CHECKPOINT_DISABLE="$CHECKPOINT_DISABLE" $WEAVE launch 2>&1)
82-
EXPECTED_OUTPUT=$(docker inspect --format="{{.Id}}" weave)
97+
ACTUAL_OUTPUT=$(CHECKPOINT_DISABLE="$CHECKPOINT_DISABLE" DOCKER_HOST=tcp://$HOST1:$DOCKER_PORT $WEAVE launch 2>&1)
98+
EXPECTED_OUTPUT=$($SSH $HOST1 docker inspect --format="{{.Id}}" weave)
8399

84100
assert_raises "[ $EXPECTED_OUTPUT == $ACTUAL_OUTPUT ]"
85101

0 commit comments

Comments
 (0)