]> gitweb.ps.run Git - ps-cgit/blob - tests/t0107-snapshot.sh
Create initial testsuite
[ps-cgit] / tests / t0107-snapshot.sh
1 #!/bin/sh
2
3 . ./setup.sh
4
5 prepare_tests "Verify snapshot"
6
7 run_test 'get foo/snapshot/test.tar.gz' '
8         cgit_url "foo/snapshot/test.tar.gz" >trash/tmp
9 '
10
11 run_test 'check html headers' '
12         head -n 1 trash/tmp |
13              grep -e "Content-Type: application/x-tar" &&
14
15         head -n 2 trash/tmp |
16              grep -e "Content-Disposition: inline; filename=.test.tar.gz."
17 '
18
19 run_test 'strip off the header lines' '
20          tail -n +6 trash/tmp > trash/test.tar.gz
21 '
22
23 run_test 'verify gzip format' 'gunzip --test trash/test.tar.gz'
24 run_test 'untar' 'tar -xf trash/test.tar.gz -C trash'
25
26 run_test 'count files' '
27         c=$(ls -1 trash/foo/ | wc -l) &&
28         test $c = 5
29 '
30
31 run_test 'verify untarred file-5' '
32          grep -e "^5$" trash/foo/file-5 &&
33          test $(cat trash/foo/file-5 | wc -l) = 1
34 '
35
36 tests_done