-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_cli.sh
executable file
·78 lines (54 loc) · 2.99 KB
/
test_cli.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
###############################################################################
# setUp
###############################################################################
set -ev # Fail on first non-zero return value.
rm -rf cli_tests/outputs && mkdir cli_tests/outputs && rm -f .paths.json
###############################################################################
# Test that automagic importing works.
###############################################################################
PWD=tests/examples/twitter python -c "from pathsjson.automagic import PATHS;"
###############################################################################
# 1. Test without any ancestral .paths.json
###############################################################################
(coverage run --source=pathsjson --append -m pathsjson.cli --shell-exports \
> cli_tests/outputs/test_1.txt) || true
cmp -b cli_tests/outputs/test_1.txt cli_tests/test_1.expected.txt
###############################################################################
# 2. Test --shell-exports
###############################################################################
(PWD=cli_tests/full_env
coverage run --source=pathsjson --append -m pathsjson.cli --shell-exports \
> cli_tests/outputs/test_2.txt) || true
diff cli_tests/outputs/test_2.txt cli_tests/test_2.expected.txt
###############################################################################
# 3. Test --make-exports
###############################################################################
(PWD=cli_tests/full_env \
coverage run --source=pathsjson --append -m pathsjson.cli --make-exports \
> cli_tests/outputs/test_3.txt) || true
diff cli_tests/outputs/test_3.txt cli_tests/test_3.expected.txt
###############################################################################
# 4. Test --init-global and --print-global-path
###############################################################################
(coverage run --source=pathsjson --append -m pathsjson.cli --init-global \
> cli_tests/outputs/test_4_init_path.txt) || true
(coverage run --source=pathsjson --append -m pathsjson.cli \
--print-global-path > cli_tests/outputs/test_4_global_path.txt)
diff \
cli_tests/outputs/test_4_global_path.txt \
cli_tests/outputs/test_4_init_path.txt
(PWD=cli_tests/full_env \
coverage run --source=pathsjson --append -m pathsjson.cli --make-exports \
> cli_tests/outputs/test_4.txt) || true
diff cli_tests/outputs/test_4.txt cli_tests/test_4.expected.txt
###############################################################################
# 5. Test --init
###############################################################################
coverage run --source=pathsjson --append -m pathsjson.cli --init
diff .paths.json cli_tests/test_5.expected.txt
rm .paths.json
###############################################################################
# tearDown
###############################################################################
rm -rf cli_tests/outputs