Don't parse empty strings.

Signed-off-by: Chad Metcalf <chad@docker.com>
This commit is contained in:
Chad Metcalf 2020-08-08 15:48:35 -07:00
parent c600fc36ca
commit d8a95fadd8
No known key found for this signature in database
GPG Key ID: BCA7CAE891B2C9B5
26 changed files with 468 additions and 364 deletions

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }

View File

@ -38,24 +38,28 @@ function teardown_file() {
# assumes format 22/tcp, 0.0.0.0:3000->3000/tcp # assumes format 22/tcp, 0.0.0.0:3000->3000/tcp
ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}") ports_string=$(docker ps --filter="ID=${service}" --format "{{.Ports}}")
OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS; if [[ ! -z ${ports_string} ]]; then
for i in "${service_port[@]}"; do OIFS=${IFS}; IFS=','; service_port=("$ports_string"); IFS=${OIFS}; unset OIFS;
protocol=$(expr "${i}" : '.*\(...$\)') for i in "${service_port[@]}"; do
# the || true here just makes sure bats doesn't fail the test because a protocol=$(expr "${i}" : '.*\(...$\)')
# port wasn't matched. We will check for empty ports later
port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then # the || true here just makes sure bats doesn't fail the test because a
run nc -z -v localhost "${port}" # port wasn't matched. We will check for empty ports later
assert_success port=$(expr "${i}" : '.*:\([0-9]*\)->' || true)
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done if [[ ${protocol} == "tcp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v localhost "${port}"
assert_success
elif [[ "${protocol}" = "udp" ]] && [[ ! -z ${port} ]]; then
run nc -z -v -u localhost "${port}"
assert_success
fi
done
fi
done done
} }