-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathtest_dockerhub_search.sh
executable file
·42 lines (35 loc) · 1.48 KB
/
test_dockerhub_search.sh
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
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-01-16 16:35:51 +0000 (Sat, 16 Jan 2016)
#
# https://github.com/HariSekhon/DevOps-Python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$srcdir/.."
# shellcheck disable=SC1091
. "tests/utils.sh"
# shellcheck disable=SC1091
. "bash-tools/lib/utils.sh"
section "Testing DockerHub Show Tags"
check './dockerhub_search.py centos' "DockerHub Search for CentOS"
check './dockerhub_search.py harisekhon' "DockerHub Search for harisekhon"
check './dockerhub_search.py harisekhon -l 30' "DockerHub Search for harisekhon -l 30"
# this no longer works, API must have changed
#check './dockerhub_search.py harisekhon/hadoop-dev | grep harisekhon/hadoop-dev' "DockerHub Search for harisekhon/hadoop-dev"
check './dockerhub_search.py hadoop-dev | grep harisekhon/hadoop-dev' "DockerHub Search for harisekhon/hadoop-dev"
# causes IOError: [Errno 32] Broken pipe
#unset PYTHONUNBUFFERED
# shellcheck disable=SC2016
check '[ "$(./dockerhub_search.py -q harisekhon | head -n 40 | tee /dev/stderr | grep -c "^harisekhon/[A-Za-z0-9_-]*$")" = 40 ]' "DockerHub Search quiet mode for shell scripting"
echo
echo