2009-08-25 07:03:48 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2009 Mark Rada
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='gitweb as standalone script (http status tests).
|
|
|
|
|
|
|
|
This test runs gitweb (git web interface) as a CGI script from the
|
|
|
|
commandline, and checks that it returns the expected HTTP status
|
|
|
|
code and message.'
|
|
|
|
|
|
|
|
|
|
|
|
. ./gitweb-lib.sh
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
#
|
|
|
|
# Gitweb only provides the functionality tested by the 'modification times'
|
|
|
|
# tests if it can access a date parser from one of these modules:
|
|
|
|
#
|
|
|
|
perl -MHTTP::Date -e 0 >/dev/null 2>&1 && test_set_prereq DATE_PARSER
|
|
|
|
perl -MTime::ParseDate -e 0 >/dev/null 2>&1 && test_set_prereq DATE_PARSER
|
|
|
|
|
2009-08-25 07:03:48 +02:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# snapshot settings
|
|
|
|
|
2010-03-20 09:29:11 +01:00
|
|
|
test_expect_success 'setup' "
|
2010-12-14 19:26:38 +01:00
|
|
|
test_commit 'SnapshotTests' 'i can has snapshot'
|
2010-03-20 09:29:11 +01:00
|
|
|
"
|
|
|
|
|
2009-08-25 07:03:48 +02:00
|
|
|
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
|
|
|
$feature{'snapshot'}{'override'} = 0;
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'snapshots: tgz only default format enabled' \
|
|
|
|
'gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tbz2" &&
|
|
|
|
grep "403 - Unsupported snapshot format" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=txz" &&
|
|
|
|
grep "403 - Snapshot format not allowed" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=zip" &&
|
|
|
|
grep "403 - Unsupported snapshot format" gitweb.output'
|
|
|
|
|
|
|
|
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
|
|
|
$feature{'snapshot'}{'default'} = ['tgz','tbz2','txz','zip'];
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'snapshots: all enabled in default, use default disabled value' \
|
|
|
|
'gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tbz2" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=txz" &&
|
|
|
|
grep "403 - Snapshot format not allowed" gitweb.output &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=HEAD;sf=zip" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output'
|
|
|
|
|
|
|
|
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
|
|
|
$known_snapshot_formats{'zip'}{'disabled'} = 1;
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'snapshots: zip explicitly disabled' \
|
|
|
|
'gitweb_run "p=.git;a=snapshot;h=HEAD;sf=zip" &&
|
|
|
|
grep "403 - Snapshot format not allowed" gitweb.output'
|
|
|
|
test_debug 'cat gitweb.output'
|
|
|
|
|
|
|
|
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
|
|
|
$known_snapshot_formats{'tgz'}{'disabled'} = 0;
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'snapshots: tgz explicitly enabled' \
|
|
|
|
'gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output'
|
2010-01-30 23:30:38 +01:00
|
|
|
test_debug 'cat gitweb.headers'
|
2009-08-25 07:03:48 +02:00
|
|
|
|
|
|
|
|
2009-09-26 19:46:08 +02:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# snapshot hash ids
|
|
|
|
|
|
|
|
test_expect_success 'snapshots: good tree-ish id' '
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=master;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output
|
|
|
|
'
|
2010-01-30 23:30:38 +01:00
|
|
|
test_debug 'cat gitweb.headers'
|
2009-09-26 19:46:08 +02:00
|
|
|
|
|
|
|
test_expect_success 'snapshots: bad tree-ish id' '
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=frizzumFrazzum;sf=tgz" &&
|
|
|
|
grep "404 - Object does not exist" gitweb.output
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.output'
|
|
|
|
|
|
|
|
test_expect_success 'snapshots: bad tree-ish id (tagged object)' '
|
|
|
|
echo object > tag-object &&
|
|
|
|
git add tag-object &&
|
2012-03-29 14:45:48 +02:00
|
|
|
test_tick && git commit -m "Object to be tagged" &&
|
2016-01-12 12:49:37 +01:00
|
|
|
git tag tagged-object $(git hash-object tag-object) &&
|
2009-09-26 19:46:08 +02:00
|
|
|
gitweb_run "p=.git;a=snapshot;h=tagged-object;sf=tgz" &&
|
|
|
|
grep "400 - Object is not a tree-ish" gitweb.output
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.output'
|
|
|
|
|
|
|
|
test_expect_success 'snapshots: good object id' '
|
2016-01-12 12:49:37 +01:00
|
|
|
ID=$(git rev-parse --verify HEAD) &&
|
2009-09-26 19:46:08 +02:00
|
|
|
gitweb_run "p=.git;a=snapshot;h=$ID;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.output
|
|
|
|
'
|
2010-01-30 23:30:38 +01:00
|
|
|
test_debug 'cat gitweb.headers'
|
2009-09-26 19:46:08 +02:00
|
|
|
|
|
|
|
test_expect_success 'snapshots: bad object id' '
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=abcdef01234;sf=tgz" &&
|
|
|
|
grep "404 - Object does not exist" gitweb.output
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.output'
|
|
|
|
|
2012-03-29 14:45:48 +02:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# modification times (Last-Modified and If-Modified-Since)
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: feed last-modified' '
|
2012-03-29 14:45:48 +02:00
|
|
|
gitweb_run "p=.git;a=atom;h=master" &&
|
|
|
|
grep "Status: 200 OK" gitweb.headers &&
|
|
|
|
grep "Last-modified: Thu, 7 Apr 2005 22:14:13 +0000" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: feed if-modified-since (modified)' '
|
2013-04-26 11:18:07 +02:00
|
|
|
HTTP_IF_MODIFIED_SINCE="Wed, 6 Apr 2005 22:14:13 +0000" &&
|
|
|
|
export HTTP_IF_MODIFIED_SINCE &&
|
2012-03-29 14:45:48 +02:00
|
|
|
test_when_finished "unset HTTP_IF_MODIFIED_SINCE" &&
|
|
|
|
gitweb_run "p=.git;a=atom;h=master" &&
|
|
|
|
grep "Status: 200 OK" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: feed if-modified-since (unmodified)' '
|
2013-04-26 11:18:07 +02:00
|
|
|
HTTP_IF_MODIFIED_SINCE="Thu, 7 Apr 2005 22:14:13 +0000" &&
|
|
|
|
export HTTP_IF_MODIFIED_SINCE &&
|
2012-03-29 14:45:48 +02:00
|
|
|
test_when_finished "unset HTTP_IF_MODIFIED_SINCE" &&
|
|
|
|
gitweb_run "p=.git;a=atom;h=master" &&
|
|
|
|
grep "Status: 304 Not Modified" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
2009-09-26 19:46:08 +02:00
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: snapshot last-modified' '
|
2012-03-29 14:45:49 +02:00
|
|
|
gitweb_run "p=.git;a=snapshot;h=master;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.headers &&
|
|
|
|
grep "Last-modified: Thu, 7 Apr 2005 22:14:13 +0000" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: snapshot if-modified-since (modified)' '
|
2013-04-26 11:18:07 +02:00
|
|
|
HTTP_IF_MODIFIED_SINCE="Wed, 6 Apr 2005 22:14:13 +0000" &&
|
|
|
|
export HTTP_IF_MODIFIED_SINCE &&
|
2012-03-29 14:45:49 +02:00
|
|
|
test_when_finished "unset HTTP_IF_MODIFIED_SINCE" &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=master;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: snapshot if-modified-since (unmodified)' '
|
2013-04-26 11:18:07 +02:00
|
|
|
HTTP_IF_MODIFIED_SINCE="Thu, 7 Apr 2005 22:14:13 +0000" &&
|
|
|
|
export HTTP_IF_MODIFIED_SINCE &&
|
2012-03-29 14:45:49 +02:00
|
|
|
test_when_finished "unset HTTP_IF_MODIFIED_SINCE" &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=master;sf=tgz" &&
|
|
|
|
grep "Status: 304 Not Modified" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2012-06-12 20:09:38 +02:00
|
|
|
test_expect_success DATE_PARSER 'modification: tree snapshot' '
|
2016-01-12 12:49:37 +01:00
|
|
|
ID=$(git rev-parse --verify HEAD^{tree}) &&
|
2013-04-26 11:18:07 +02:00
|
|
|
HTTP_IF_MODIFIED_SINCE="Wed, 6 Apr 2005 22:14:13 +0000" &&
|
|
|
|
export HTTP_IF_MODIFIED_SINCE &&
|
2012-03-29 14:45:49 +02:00
|
|
|
test_when_finished "unset HTTP_IF_MODIFIED_SINCE" &&
|
|
|
|
gitweb_run "p=.git;a=snapshot;h=$ID;sf=tgz" &&
|
|
|
|
grep "Status: 200 OK" gitweb.headers &&
|
|
|
|
! grep -i "last-modified" gitweb.headers
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2010-01-30 23:30:39 +01:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# load checking
|
|
|
|
|
|
|
|
# always hit the load limit
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
2010-02-06 15:50:03 +01:00
|
|
|
our $maxload = -1;
|
2010-01-30 23:30:39 +01:00
|
|
|
EOF
|
|
|
|
|
2010-02-06 15:50:03 +01:00
|
|
|
test_expect_success 'load checking: load too high (default action)' '
|
2010-01-30 23:30:39 +01:00
|
|
|
gitweb_run "p=.git" &&
|
|
|
|
grep "Status: 503 Service Unavailable" gitweb.headers &&
|
|
|
|
grep "503 - The load average on the server is too high" gitweb.body
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
|
|
|
# turn off load checking
|
|
|
|
cat >>gitweb_config.perl <<\EOF
|
|
|
|
our $maxload = undef;
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
2012-02-28 19:41:47 +01:00
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# invalid arguments
|
|
|
|
|
|
|
|
test_expect_success 'invalid arguments: invalid regexp (in project search)' '
|
|
|
|
gitweb_run "a=project_list;s=*\.git;sr=1" &&
|
|
|
|
grep "Status: 400" gitweb.headers &&
|
|
|
|
grep "400 - Invalid.*regexp" gitweb.body
|
|
|
|
'
|
|
|
|
test_debug 'cat gitweb.headers'
|
|
|
|
|
2009-08-25 07:03:48 +02:00
|
|
|
test_done
|