Rob Landley | 641c353 | 2006-06-24 22:55:13 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Tests for unzip. |
| 4 | # Copyright 2006 Rob Landley <rob@landley.net> |
Denis Vlasenko | 0beaff8 | 2007-09-21 13:16:32 +0000 | [diff] [blame] | 5 | # Copyright 2006 Glenn McGrath |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | # Licensed under GPLv2, see file LICENSE in this source tree. |
Rob Landley | 641c353 | 2006-06-24 22:55:13 +0000 | [diff] [blame] | 7 | |
Mike Frysinger | caa7940 | 2009-11-04 18:41:22 -0500 | [diff] [blame] | 8 | . ./testing.sh |
Rob Landley | 641c353 | 2006-06-24 22:55:13 +0000 | [diff] [blame] | 9 | |
| 10 | # testing "test name" "options" "expected result" "file input" "stdin" |
| 11 | # file input will be file called "input" |
| 12 | # test can create a file "actual" instead of writing to stdout |
| 13 | |
| 14 | # Create a scratch directory |
| 15 | |
| 16 | mkdir temp |
| 17 | cd temp |
| 18 | |
| 19 | # Create test file to work with. |
| 20 | |
| 21 | mkdir foo |
| 22 | touch foo/bar |
| 23 | zip foo.zip foo foo/bar > /dev/null |
| 24 | rm -f foo/bar |
| 25 | rmdir foo |
| 26 | |
| 27 | # Test that unzipping just foo doesn't create bar. |
| 28 | testing "unzip (subdir only)" "unzip -q foo.zip foo/ && test -d foo && test ! -f foo/bar && echo yes" "yes\n" "" "" |
| 29 | |
| 30 | rmdir foo |
| 31 | rm foo.zip |
| 32 | |
| 33 | # Clean up scratch directory. |
| 34 | |
| 35 | cd .. |
| 36 | rm -rf temp |
| 37 | |
| 38 | exit $FAILCOUNT |