aboutsummaryrefslogtreecommitdiffstats
path: root/tests/t0107-snapshot.sh
Commit message (Expand)AuthorAgeFilesLines
* tests: introduce strip_header() helper function•••This means that we can avoid hardcoding the number of headers we expect CGit to generate in test cases and simply remove whatever headers happen to by there when we are checking body content. Signed-off-by: John Keeping <john@keeping.me.uk> John Keeping2013-05-221-2/+2
* t0107: Skip ZIP tests if unzip(1) isn't available•••Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> Lukas Fleischer2013-04-101-4/+10
* t0107: Use `tar -z` for gzip'ed archives•••Some tar(1) versions do not support auto detection of the compression type. Explicitly specify "-z" to decompress a ".tar.gz" archive. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> Lukas Fleischer2013-04-091-1/+1
* tests: use Git's test framework•••This allows tests to run in parallel as well as letting us use "prove" or another TAP harness to run the tests. Git's test framework requires Git to be fully built before letting any tests run, so add a new target to the top-level Makefile which builds all of Git instead of just libgit.a and make the "test" target depend on that. Signed-off-by: John Keeping <john@keeping.me.uk> John Keeping2013-04-081-39/+38
* t0107-snapshot: add tests for ZIP archives•••Signed-off-by: John Keeping <john@keeping.me.uk> John Keeping2013-03-041-2/+37
* tests: make whitespace consistent•••Signed-off-by: John Keeping <john@keeping.me.uk> John Keeping2013-03-041-6/+9
* tests: "grep -e" is not portable to all platforms•••The "-e" option to grep is not needed unless specifying more than one pattern, which we don't do. Remove it to avoid restricting the tests on platforms that do not have a grep that recognises "-e". Signed-off-by: John Keeping <john@keeping.me.uk> John Keeping2013-03-041-3/+3
* Merge branch 'snapshot-fixes'Lars Hjemli2009-01-111-10/+10
|\
| * tests/t0107-snapshot.sh: make testscript match updated snapshot behavior•••Since cgit now returns a 404 error when the snapshot filename cannot be resolved to a commit object, the testscript needs to request a valid snapshot name. Also, the script assumed that the toplevel directory in the snapshot would get the name of the repository but it's now named similar to the requested snapshot. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-281-10/+10
* | ui-snapshot.c: change mime-type for tar.gz and tar.bz2•••The updated mime-types seems to work better than the old ones with both safari and firefox. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-261-1/+1
|/
* ui-snapshot.c: specify archiver_args.baselen•••The struct member was introduces in git commit d53fe8187c38, but the cgit testsuite failed to detect that cgit always generated archives without prefixes, i.e. the result from cgit_repobasename was ignored. This fixes the bug and the testsuite. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-10-051-1/+4
* Create initial testsuite•••This creates a simple testsuite, heavily inspired by the testsuite in git. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-11-111-0/+36