๐Ÿ“ฆ deluan / zsh-in-docker

๐Ÿ“„ test.sh ยท 51 lines
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
43
44
45
46
47
48
49
50
51source ./assert.sh
set -e

trap 'docker compose stop -t 1' EXIT INT

test_suite() {
    image_name=$1
    echo
    echo "########## Testing in a $image_name container"
    echo

    set -x
    docker compose rm --force --stop test-$image_name || true

    docker compose up -d test-$image_name
    docker cp zsh-in-docker.sh zsh-in-docker-test-${image_name}-1:/tmp
    docker exec zsh-in-docker-test-${image_name}-1 sh /tmp/zsh-in-docker.sh \
        -t https://github.com/denysdovhan/spaceship-prompt \
        -p git -p git-auto-fetch \
        -p https://github.com/zsh-users/zsh-autosuggestions \
        -p https://github.com/zsh-users/zsh-completions \
        -a 'CASE_SENSITIVE="true"' \
        -a 'HYPHEN_INSENSITIVE="true"'
    set +x

    echo
    VERSION=$(docker exec zsh-in-docker-test-${image_name}-1 zsh --version)
    ZSHRC=$(docker exec zsh-in-docker-test-${image_name}-1 cat /root/.zshrc)
    echo "########################################################################################"
    echo "$ZSHRC"
    echo "########################################################################################"
    echo "Test: zsh 5 was installed" && assert_contain "$VERSION" "zsh 5" "!"
    echo "Test: ~/.zshrc was generated" && assert_contain "$ZSHRC" 'ZSH="/root/.oh-my-zsh"' "!"
    echo "Test: theme was configured" && assert_contain "$ZSHRC" 'ZSH_THEME="spaceship-prompt/spaceship"' "!"
    echo "Test: plugins were configured" && assert_contain "$ZSHRC" 'plugins=(git git-auto-fetch zsh-autosuggestions zsh-completions )' "!"
    echo "Test: line 1 is appended to ~/.zshrc" && assert_contain "$ZSHRC" 'CASE_SENSITIVE="true"' "!"
    echo "Test: line 2 is appended to ~/.zshrc" && assert_contain "$ZSHRC" 'HYPHEN_INSENSITIVE="true"' "!"
    echo "Test: newline is expanded when append lines" && assert_not_contain "$ZSHRC" '\nCASE_SENSITIVE="true"' "!"

    echo
    echo "######### Success! All tests are passing for ${image_name}"

    docker compose stop -t 1 test-$image_name
}

images=${*:-"alpine ubuntu ubuntu-14.04 debian amazonlinux rockylinux8 rockylinux9 fedora"}

for image in $images; do
    test_suite $image
done