mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-11 03:38:18 +00:00
23 lines
540 B
Bash
Executable File
23 lines
540 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# shellcheck disable=SC1091
|
|
. ./config.sh
|
|
|
|
start_suite "Test short lived connections between containers"
|
|
|
|
weave_on "$HOST1" launch
|
|
scope_on "$HOST1" launch
|
|
weave_on "$HOST1" run -d --name nginx nginx
|
|
weave_on "$HOST1" run -d --name client alpine /bin/sh -c "while true; do \
|
|
wget http://nginx.weave.local:80/ -O - >/dev/null || true; \
|
|
sleep 1; \
|
|
done"
|
|
|
|
wait_for_containers "$HOST1" 60 nginx client
|
|
|
|
has_container "$HOST1" nginx
|
|
has_container "$HOST1" client
|
|
has_connection containers "$HOST1" client nginx
|
|
|
|
scope_end_suite
|