Merge branch 'maint'

* maint:
  t/t7500-commit.sh: use test_cmp instead of test
  t/gitweb-lib.sh: Ensure that errors are shown for --debug --immediate
  gitweb/gitweb.perl: don't call S_ISREG() with undef
  gitweb/gitweb.perl: remove use of qw(...) as parentheses
This commit is contained in:
Junio C Hamano 2011-02-21 17:20:11 -08:00
commit a66cee2ede
5 changed files with 15 additions and 92 deletions

View File

@ -3501,7 +3501,7 @@ sub print_feed_meta {
$href_params{'-title'} = 'log'; $href_params{'-title'} = 'log';
} }
foreach my $format qw(RSS Atom) { foreach my $format (qw(RSS Atom)) {
my $type = lc($format); my $type = lc($format);
my %link_attr = ( my %link_attr = (
'-rel' => 'alternate', '-rel' => 'alternate',
@ -3682,7 +3682,7 @@ sub git_footer_html {
} }
$href_params{'-title'} ||= 'log'; $href_params{'-title'} ||= 'log';
foreach my $format qw(RSS Atom) { foreach my $format (qw(RSS Atom)) {
$href_params{'action'} = lc($format); $href_params{'action'} = lc($format);
print $cgi->a({-href => href(%href_params), print $cgi->a({-href => href(%href_params),
-title => "$href_params{'-title'} $format feed", -title => "$href_params{'-title'} $format feed",
@ -4412,7 +4412,7 @@ sub git_difftree_body {
} }
if ($diff->{'from_mode'} ne ('0' x 6)) { if ($diff->{'from_mode'} ne ('0' x 6)) {
$from_mode_oct = oct $diff->{'from_mode'}; $from_mode_oct = oct $diff->{'from_mode'};
if (S_ISREG($to_mode_oct)) { # only for regular file if (S_ISREG($from_mode_oct)) { # only for regular file
$from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
} }
$from_file_type = file_type($diff->{'from_mode'}); $from_file_type = file_type($diff->{'from_mode'});

View File

@ -82,7 +82,12 @@ gitweb_run () {
} }
close O; close O;
' gitweb.output && ' gitweb.output &&
if grep '^[[]' gitweb.log >/dev/null 2>&1; then false; else true; fi if grep '^[[]' gitweb.log >/dev/null 2>&1; then
test_debug 'cat gitweb.log >&2' &&
false
else
true
fi
# gitweb.log is left for debugging # gitweb.log is left for debugging
# gitweb.output is used to parse HTTP output # gitweb.output is used to parse HTTP output

View File

@ -10,7 +10,12 @@ Tests for selected commit options.'
. ./test-lib.sh . ./test-lib.sh
commit_msg_is () { commit_msg_is () {
test "`git log --pretty=format:%s%b -1`" = "$1" expect=commit_msg_is.expect
actual=commit_msg_is.actual
printf "%s" "$(git log --pretty=format:%s%b -1)" >$expect &&
printf "%s" "$1" >$actual &&
test_cmp $expect $actual
} }
# A sanity check to see if commit is working at all. # A sanity check to see if commit is working at all.

View File

@ -18,42 +18,34 @@ or warnings to log.'
test_expect_success \ test_expect_success \
'no commits: projects_list (implicit)' \ 'no commits: projects_list (implicit)' \
'gitweb_run' 'gitweb_run'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: projects_index' \ 'no commits: projects_index' \
'gitweb_run "a=project_index"' 'gitweb_run "a=project_index"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git summary (implicit)' \ 'no commits: .git summary (implicit)' \
'gitweb_run "p=.git"' 'gitweb_run "p=.git"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git commit (implicit HEAD)' \ 'no commits: .git commit (implicit HEAD)' \
'gitweb_run "p=.git;a=commit"' 'gitweb_run "p=.git;a=commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git commitdiff (implicit HEAD)' \ 'no commits: .git commitdiff (implicit HEAD)' \
'gitweb_run "p=.git;a=commitdiff"' 'gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git tree (implicit HEAD)' \ 'no commits: .git tree (implicit HEAD)' \
'gitweb_run "p=.git;a=tree"' 'gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git heads' \ 'no commits: .git heads' \
'gitweb_run "p=.git;a=heads"' 'gitweb_run "p=.git;a=heads"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'no commits: .git tags' \ 'no commits: .git tags' \
'gitweb_run "p=.git;a=tags"' 'gitweb_run "p=.git;a=tags"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
@ -69,52 +61,42 @@ test_expect_success \
test_expect_success \ test_expect_success \
'projects_list (implicit)' \ 'projects_list (implicit)' \
'gitweb_run' 'gitweb_run'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'projects_index' \ 'projects_index' \
'gitweb_run "a=project_index"' 'gitweb_run "a=project_index"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git summary (implicit)' \ '.git summary (implicit)' \
'gitweb_run "p=.git"' 'gitweb_run "p=.git"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commit (implicit HEAD)' \ '.git commit (implicit HEAD)' \
'gitweb_run "p=.git;a=commit"' 'gitweb_run "p=.git;a=commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commitdiff (implicit HEAD, root commit)' \ '.git commitdiff (implicit HEAD, root commit)' \
'gitweb_run "p=.git;a=commitdiff"' 'gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commitdiff_plain (implicit HEAD, root commit)' \ '.git commitdiff_plain (implicit HEAD, root commit)' \
'gitweb_run "p=.git;a=commitdiff_plain"' 'gitweb_run "p=.git;a=commitdiff_plain"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commit (HEAD)' \ '.git commit (HEAD)' \
'gitweb_run "p=.git;a=commit;h=HEAD"' 'gitweb_run "p=.git;a=commit;h=HEAD"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git tree (implicit HEAD)' \ '.git tree (implicit HEAD)' \
'gitweb_run "p=.git;a=tree"' 'gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git blob (file)' \ '.git blob (file)' \
'gitweb_run "p=.git;a=blob;f=file"' 'gitweb_run "p=.git;a=blob;f=file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git blob_plain (file)' \ '.git blob_plain (file)' \
'gitweb_run "p=.git;a=blob_plain;f=file"' 'gitweb_run "p=.git;a=blob_plain;f=file"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# nonexistent objects # nonexistent objects
@ -122,37 +104,30 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commit (non-existent)' \ '.git commit (non-existent)' \
'gitweb_run "p=.git;a=commit;h=non-existent"' 'gitweb_run "p=.git;a=commit;h=non-existent"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commitdiff (non-existent)' \ '.git commitdiff (non-existent)' \
'gitweb_run "p=.git;a=commitdiff;h=non-existent"' 'gitweb_run "p=.git;a=commitdiff;h=non-existent"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git commitdiff (non-existent vs HEAD)' \ '.git commitdiff (non-existent vs HEAD)' \
'gitweb_run "p=.git;a=commitdiff;hp=non-existent;h=HEAD"' 'gitweb_run "p=.git;a=commitdiff;hp=non-existent;h=HEAD"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git tree (0000000000000000000000000000000000000000)' \ '.git tree (0000000000000000000000000000000000000000)' \
'gitweb_run "p=.git;a=tree;h=0000000000000000000000000000000000000000"' 'gitweb_run "p=.git;a=tree;h=0000000000000000000000000000000000000000"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git tag (0000000000000000000000000000000000000000)' \ '.git tag (0000000000000000000000000000000000000000)' \
'gitweb_run "p=.git;a=tag;h=0000000000000000000000000000000000000000"' 'gitweb_run "p=.git;a=tag;h=0000000000000000000000000000000000000000"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git blob (non-existent)' \ '.git blob (non-existent)' \
'gitweb_run "p=.git;a=blob;f=non-existent"' 'gitweb_run "p=.git;a=blob;f=non-existent"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'.git blob_plain (non-existent)' \ '.git blob_plain (non-existent)' \
'gitweb_run "p=.git;a=blob_plain;f=non-existent"' 'gitweb_run "p=.git;a=blob_plain;f=non-existent"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
@ -161,7 +136,6 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): root' \ 'commitdiff(0): root' \
'gitweb_run "p=.git;a=commitdiff"' 'gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): file added' \ 'commitdiff(0): file added' \
@ -169,21 +143,18 @@ test_expect_success \
git add new_file && git add new_file &&
git commit -a -m "File added." && git commit -a -m "File added." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): mode change' \ 'commitdiff(0): mode change' \
'test_chmod +x new_file && 'test_chmod +x new_file &&
git commit -a -m "Mode changed." && git commit -a -m "Mode changed." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): file renamed' \ 'commitdiff(0): file renamed' \
'git mv new_file renamed_file && 'git mv new_file renamed_file &&
git commit -a -m "File renamed." && git commit -a -m "File renamed." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success SYMLINKS \ test_expect_success SYMLINKS \
'commitdiff(0): file to symlink' \ 'commitdiff(0): file to symlink' \
@ -191,7 +162,6 @@ test_expect_success SYMLINKS \
ln -s file renamed_file && ln -s file renamed_file &&
git commit -a -m "File to symlink." && git commit -a -m "File to symlink." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): file deleted' \ 'commitdiff(0): file deleted' \
@ -199,7 +169,6 @@ test_expect_success \
rm -f renamed_file && rm -f renamed_file &&
git commit -a -m "File removed." && git commit -a -m "File removed." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): file copied / new file' \ 'commitdiff(0): file copied / new file' \
@ -207,7 +176,6 @@ test_expect_success \
git add file2 && git add file2 &&
git commit -a -m "File copied." && git commit -a -m "File copied." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): mode change and modified' \ 'commitdiff(0): mode change and modified' \
@ -215,7 +183,6 @@ test_expect_success \
test_chmod +x file2 && test_chmod +x file2 &&
git commit -a -m "Mode change and modification." && git commit -a -m "Mode change and modification." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): renamed and modified' \ 'commitdiff(0): renamed and modified' \
@ -233,7 +200,6 @@ EOF
echo "Propter nomen suum." >> file3 && echo "Propter nomen suum." >> file3 &&
git commit -a -m "File rename and modification." && git commit -a -m "File rename and modification." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): renamed, mode change and modified' \ 'commitdiff(0): renamed, mode change and modified' \
@ -242,7 +208,6 @@ test_expect_success \
test_chmod +x file2 && test_chmod +x file2 &&
git commit -a -m "File rename, mode change and modification." && git commit -a -m "File rename, mode change and modification." &&
gitweb_run "p=.git;a=commitdiff"' gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# commitdiff testing (taken from t4114-apply-typechange.sh) # commitdiff testing (taken from t4114-apply-typechange.sh)
@ -279,42 +244,34 @@ test_expect_success SYMLINKS 'setup typechange commits' '
test_expect_success \ test_expect_success \
'commitdiff(2): file renamed from foo to foo/baz' \ 'commitdiff(2): file renamed from foo to foo/baz' \
'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-baz-renamed-from-foo"' 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-baz-renamed-from-foo"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): file renamed from foo/baz to foo' \ 'commitdiff(2): file renamed from foo/baz to foo' \
'gitweb_run "p=.git;a=commitdiff;hp=foo-baz-renamed-from-foo;h=initial"' 'gitweb_run "p=.git;a=commitdiff;hp=foo-baz-renamed-from-foo;h=initial"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): directory becomes file' \ 'commitdiff(2): directory becomes file' \
'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=initial"' 'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=initial"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): file becomes directory' \ 'commitdiff(2): file becomes directory' \
'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-becomes-a-directory"' 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-becomes-a-directory"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): file becomes symlink' \ 'commitdiff(2): file becomes symlink' \
'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-symlinked-to-bar"' 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-symlinked-to-bar"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): symlink becomes file' \ 'commitdiff(2): symlink becomes file' \
'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-back-to-file"' 'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-back-to-file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): symlink becomes directory' \ 'commitdiff(2): symlink becomes directory' \
'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-becomes-a-directory"' 'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-becomes-a-directory"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(2): directory becomes symlink' \ 'commitdiff(2): directory becomes symlink' \
'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=foo-symlinked-to-bar"' 'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=foo-symlinked-to-bar"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# commit, commitdiff: merge, large # commit, commitdiff: merge, large
@ -330,12 +287,10 @@ test_expect_success \
test_expect_success \ test_expect_success \
'commit(0): merge commit' \ 'commit(0): merge commit' \
'gitweb_run "p=.git;a=commit"' 'gitweb_run "p=.git;a=commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(0): merge commit' \ 'commitdiff(0): merge commit' \
'gitweb_run "p=.git;a=commitdiff"' 'gitweb_run "p=.git;a=commitdiff"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'Prepare large commit' \ 'Prepare large commit' \
@ -371,12 +326,10 @@ test_expect_success \
test_expect_success \ test_expect_success \
'commit(1): large commit' \ 'commit(1): large commit' \
'gitweb_run "p=.git;a=commit;h=b"' 'gitweb_run "p=.git;a=commit;h=b"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'commitdiff(1): large commit' \ 'commitdiff(1): large commit' \
'gitweb_run "p=.git;a=commitdiff;h=b"' 'gitweb_run "p=.git;a=commitdiff;h=b"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# tags testing # tags testing
@ -394,17 +347,14 @@ test_expect_success \
git tag lightweight/tag-tree HEAD^{tree} && git tag lightweight/tag-tree HEAD^{tree} &&
git tag lightweight/tag-blob HEAD:file && git tag lightweight/tag-blob HEAD:file &&
gitweb_run "p=.git;a=tags"' gitweb_run "p=.git;a=tags"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'tag: Tag to commit object' \ 'tag: Tag to commit object' \
'gitweb_run "p=.git;a=tag;h=tag-commit"' 'gitweb_run "p=.git;a=tag;h=tag-commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'tag: on lightweight tag (invalid)' \ 'tag: on lightweight tag (invalid)' \
'gitweb_run "p=.git;a=tag;h=lightweight/tag-commit"' 'gitweb_run "p=.git;a=tag;h=lightweight/tag-commit"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# logs # logs
@ -412,22 +362,18 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'logs: log (implicit HEAD)' \ 'logs: log (implicit HEAD)' \
'gitweb_run "p=.git;a=log"' 'gitweb_run "p=.git;a=log"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'logs: shortlog (implicit HEAD)' \ 'logs: shortlog (implicit HEAD)' \
'gitweb_run "p=.git;a=shortlog"' 'gitweb_run "p=.git;a=shortlog"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'logs: history (implicit HEAD, file)' \ 'logs: history (implicit HEAD, file)' \
'gitweb_run "p=.git;a=history;f=file"' 'gitweb_run "p=.git;a=history;f=file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'logs: history (implicit HEAD, non-existent file)' \ 'logs: history (implicit HEAD, non-existent file)' \
'gitweb_run "p=.git;a=history;f=non-existent"' 'gitweb_run "p=.git;a=history;f=non-existent"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'logs: history (implicit HEAD, deleted file)' \ 'logs: history (implicit HEAD, deleted file)' \
@ -438,55 +384,45 @@ test_expect_success \
git rm deleted_file && git rm deleted_file &&
git commit -m "Delete file" && git commit -m "Delete file" &&
gitweb_run "p=.git;a=history;f=deleted_file"' gitweb_run "p=.git;a=history;f=deleted_file"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# path_info links # path_info links
test_expect_success \ test_expect_success \
'path_info: project' \ 'path_info: project' \
'gitweb_run "" "/.git"' 'gitweb_run "" "/.git"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch' \ 'path_info: project/branch' \
'gitweb_run "" "/.git/b"' 'gitweb_run "" "/.git/b"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch:file' \ 'path_info: project/branch:file' \
'gitweb_run "" "/.git/master:file"' 'gitweb_run "" "/.git/master:file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch:dir/' \ 'path_info: project/branch:dir/' \
'gitweb_run "" "/.git/master:foo/"' 'gitweb_run "" "/.git/master:foo/"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch:file (non-existent)' \ 'path_info: project/branch:file (non-existent)' \
'gitweb_run "" "/.git/master:non-existent"' 'gitweb_run "" "/.git/master:non-existent"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch:dir/ (non-existent)' \ 'path_info: project/branch:dir/ (non-existent)' \
'gitweb_run "" "/.git/master:non-existent/"' 'gitweb_run "" "/.git/master:non-existent/"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/branch:/file' \ 'path_info: project/branch:/file' \
'gitweb_run "" "/.git/master:/file"' 'gitweb_run "" "/.git/master:/file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/:/file (implicit HEAD)' \ 'path_info: project/:/file (implicit HEAD)' \
'gitweb_run "" "/.git/:/file"' 'gitweb_run "" "/.git/:/file"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'path_info: project/:/ (implicit HEAD, top tree)' \ 'path_info: project/:/ (implicit HEAD, top tree)' \
'gitweb_run "" "/.git/:/"' 'gitweb_run "" "/.git/:/"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
@ -495,17 +431,14 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'feeds: OPML' \ 'feeds: OPML' \
'gitweb_run "a=opml"' 'gitweb_run "a=opml"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'feed: RSS' \ 'feed: RSS' \
'gitweb_run "p=.git;a=rss"' 'gitweb_run "p=.git;a=rss"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'feed: Atom' \ 'feed: Atom' \
'gitweb_run "p=.git;a=atom"' 'gitweb_run "p=.git;a=atom"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# encoding/decoding # encoding/decoding
@ -517,7 +450,6 @@ test_expect_success \
git add file && git add file &&
git commit -F "$TEST_DIRECTORY"/t3900/1-UTF-8.txt && git commit -F "$TEST_DIRECTORY"/t3900/1-UTF-8.txt &&
gitweb_run "p=.git;a=commit"' gitweb_run "p=.git;a=commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'encode(commit): iso-8859-1' \ 'encode(commit): iso-8859-1' \
@ -528,12 +460,10 @@ test_expect_success \
git commit -F "$TEST_DIRECTORY"/t3900/ISO8859-1.txt && git commit -F "$TEST_DIRECTORY"/t3900/ISO8859-1.txt &&
git config --unset i18n.commitencoding && git config --unset i18n.commitencoding &&
gitweb_run "p=.git;a=commit"' gitweb_run "p=.git;a=commit"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'encode(log): utf-8 and iso-8859-1' \ 'encode(log): utf-8 and iso-8859-1' \
'gitweb_run "p=.git;a=log"' 'gitweb_run "p=.git;a=log"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# extra options # extra options
@ -541,27 +471,22 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'opt: log --no-merges' \ 'opt: log --no-merges' \
'gitweb_run "p=.git;a=log;opt=--no-merges"' 'gitweb_run "p=.git;a=log;opt=--no-merges"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'opt: atom --no-merges' \ 'opt: atom --no-merges' \
'gitweb_run "p=.git;a=log;opt=--no-merges"' 'gitweb_run "p=.git;a=log;opt=--no-merges"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'opt: "file" history --no-merges' \ 'opt: "file" history --no-merges' \
'gitweb_run "p=.git;a=history;f=file;opt=--no-merges"' 'gitweb_run "p=.git;a=history;f=file;opt=--no-merges"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'opt: log --no-such-option (invalid option)' \ 'opt: log --no-such-option (invalid option)' \
'gitweb_run "p=.git;a=log;opt=--no-such-option"' 'gitweb_run "p=.git;a=log;opt=--no-such-option"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'opt: tree --no-merges (invalid option for action)' \ 'opt: tree --no-merges (invalid option for action)' \
'gitweb_run "p=.git;a=tree;opt=--no-merges"' 'gitweb_run "p=.git;a=tree;opt=--no-merges"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# testing config_to_multi / cloneurl # testing config_to_multi / cloneurl
@ -569,14 +494,12 @@ test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'URL: no project URLs, no base URL' \ 'URL: no project URLs, no base URL' \
'gitweb_run "p=.git;a=summary"' 'gitweb_run "p=.git;a=summary"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'URL: project URLs via gitweb.url' \ 'URL: project URLs via gitweb.url' \
'git config --add gitweb.url git://example.com/git/trash.git && 'git config --add gitweb.url git://example.com/git/trash.git &&
git config --add gitweb.url http://example.com/git/trash.git && git config --add gitweb.url http://example.com/git/trash.git &&
gitweb_run "p=.git;a=summary"' gitweb_run "p=.git;a=summary"'
test_debug 'cat gitweb.log'
cat >.git/cloneurl <<\EOF cat >.git/cloneurl <<\EOF
git://example.com/git/trash.git git://example.com/git/trash.git
@ -586,7 +509,6 @@ EOF
test_expect_success \ test_expect_success \
'URL: project URLs via cloneurl file' \ 'URL: project URLs via cloneurl file' \
'gitweb_run "p=.git;a=summary"' 'gitweb_run "p=.git;a=summary"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# gitweb config and repo config # gitweb config and repo config
@ -604,12 +526,10 @@ EOF
test_expect_success \ test_expect_success \
'config override: projects list (implicit)' \ 'config override: projects list (implicit)' \
'gitweb_run' 'gitweb_run'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'config override: tree view, features not overridden in repo config' \ 'config override: tree view, features not overridden in repo config' \
'gitweb_run "p=.git;a=tree"' 'gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'config override: tree view, features disabled in repo config' \ 'config override: tree view, features disabled in repo config' \
@ -617,14 +537,12 @@ test_expect_success \
git config gitweb.snapshot none && git config gitweb.snapshot none &&
git config gitweb.avatar gravatar && git config gitweb.avatar gravatar &&
gitweb_run "p=.git;a=tree"' gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
test_expect_success \ test_expect_success \
'config override: tree view, features enabled in repo config (1)' \ 'config override: tree view, features enabled in repo config (1)' \
'git config gitweb.blame yes && 'git config gitweb.blame yes &&
git config gitweb.snapshot "zip,tgz, tbz2" && git config gitweb.snapshot "zip,tgz, tbz2" &&
gitweb_run "p=.git;a=tree"' gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
cat >.git/config <<\EOF cat >.git/config <<\EOF
# testing noval and alternate separator # testing noval and alternate separator
@ -635,7 +553,6 @@ EOF
test_expect_success \ test_expect_success \
'config override: tree view, features enabled in repo config (2)' \ 'config override: tree view, features enabled in repo config (2)' \
'gitweb_run "p=.git;a=tree"' 'gitweb_run "p=.git;a=tree"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# non-ASCII in README.html # non-ASCII in README.html
@ -645,7 +562,6 @@ test_expect_success \
'echo "<b>UTF-8 example:</b><br />" > .git/README.html && 'echo "<b>UTF-8 example:</b><br />" > .git/README.html &&
cat "$TEST_DIRECTORY"/t3900/1-UTF-8.txt >> .git/README.html && cat "$TEST_DIRECTORY"/t3900/1-UTF-8.txt >> .git/README.html &&
gitweb_run "p=.git;a=summary"' gitweb_run "p=.git;a=summary"'
test_debug 'cat gitweb.log'
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# syntax highlighting # syntax highlighting
@ -666,7 +582,6 @@ test_expect_success HIGHLIGHT \
'syntax highlighting (no highlight, unknown syntax)' \ 'syntax highlighting (no highlight, unknown syntax)' \
'git config gitweb.highlight yes && 'git config gitweb.highlight yes &&
gitweb_run "p=.git;a=blob;f=file"' gitweb_run "p=.git;a=blob;f=file"'
test_debug 'cat gitweb.log'
test_expect_success HIGHLIGHT \ test_expect_success HIGHLIGHT \
'syntax highlighting (highlighted, shell script)' \ 'syntax highlighting (highlighted, shell script)' \
@ -675,6 +590,5 @@ test_expect_success HIGHLIGHT \
git add test.sh && git add test.sh &&
git commit -m "Add test.sh" && git commit -m "Add test.sh" &&
gitweb_run "p=.git;a=blob;f=test.sh"' gitweb_run "p=.git;a=blob;f=test.sh"'
test_debug 'cat gitweb.log'
test_done test_done

View File

@ -126,7 +126,6 @@ test_expect_success 'load checking: load too high (default action)' '
grep "Status: 503 Service Unavailable" gitweb.headers && grep "Status: 503 Service Unavailable" gitweb.headers &&
grep "503 - The load average on the server is too high" gitweb.body grep "503 - The load average on the server is too high" gitweb.body
' '
test_debug 'cat gitweb.log' # just in case
test_debug 'cat gitweb.headers' test_debug 'cat gitweb.headers'
# turn off load checking # turn off load checking