Code

Merge branch 'tr/cache-tree' into maint-1.7.8
[git.git] / t / t9500-gitweb-standalone-no-errors.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2007 Jakub Narebski
4 #
6 test_description='gitweb as standalone script (basic tests).
8 This test runs gitweb (git web interface) as CGI script from
9 commandline, and checks that it would not write any errors
10 or warnings to log.'
13 . ./gitweb-lib.sh
15 # ----------------------------------------------------------------------
16 # no commits (empty, just initialized repository)
18 test_expect_success \
19         'no commits: projects_list (implicit)' \
20         'gitweb_run'
22 test_expect_success \
23         'no commits: projects_index' \
24         'gitweb_run "a=project_index"'
26 test_expect_success \
27         'no commits: .git summary (implicit)' \
28         'gitweb_run "p=.git"'
30 test_expect_success \
31         'no commits: .git commit (implicit HEAD)' \
32         'gitweb_run "p=.git;a=commit"'
34 test_expect_success \
35         'no commits: .git commitdiff (implicit HEAD)' \
36         'gitweb_run "p=.git;a=commitdiff"'
38 test_expect_success \
39         'no commits: .git tree (implicit HEAD)' \
40         'gitweb_run "p=.git;a=tree"'
42 test_expect_success \
43         'no commits: .git heads' \
44         'gitweb_run "p=.git;a=heads"'
46 test_expect_success \
47         'no commits: .git tags' \
48         'gitweb_run "p=.git;a=tags"'
51 # ----------------------------------------------------------------------
52 # initial commit
54 test_expect_success \
55         'Make initial commit' \
56         'echo "Not an empty file." > file &&
57          git add file &&
58          git commit -a -m "Initial commit." &&
59          git branch b'
61 test_expect_success \
62         'projects_list (implicit)' \
63         'gitweb_run'
65 test_expect_success \
66         'projects_index' \
67         'gitweb_run "a=project_index"'
69 test_expect_success \
70         '.git summary (implicit)' \
71         'gitweb_run "p=.git"'
73 test_expect_success \
74         '.git commit (implicit HEAD)' \
75         'gitweb_run "p=.git;a=commit"'
77 test_expect_success \
78         '.git commitdiff (implicit HEAD, root commit)' \
79         'gitweb_run "p=.git;a=commitdiff"'
81 test_expect_success \
82         '.git commitdiff_plain (implicit HEAD, root commit)' \
83         'gitweb_run "p=.git;a=commitdiff_plain"'
85 test_expect_success \
86         '.git commit (HEAD)' \
87         'gitweb_run "p=.git;a=commit;h=HEAD"'
89 test_expect_success \
90         '.git tree (implicit HEAD)' \
91         'gitweb_run "p=.git;a=tree"'
93 test_expect_success \
94         '.git blob (file)' \
95         'gitweb_run "p=.git;a=blob;f=file"'
97 test_expect_success \
98         '.git blob_plain (file)' \
99         'gitweb_run "p=.git;a=blob_plain;f=file"'
101 # ----------------------------------------------------------------------
102 # nonexistent objects
104 test_expect_success \
105         '.git commit (non-existent)' \
106         'gitweb_run "p=.git;a=commit;h=non-existent"'
108 test_expect_success \
109         '.git commitdiff (non-existent)' \
110         'gitweb_run "p=.git;a=commitdiff;h=non-existent"'
112 test_expect_success \
113         '.git commitdiff (non-existent vs HEAD)' \
114         'gitweb_run "p=.git;a=commitdiff;hp=non-existent;h=HEAD"'
116 test_expect_success \
117         '.git tree (0000000000000000000000000000000000000000)' \
118         'gitweb_run "p=.git;a=tree;h=0000000000000000000000000000000000000000"'
120 test_expect_success \
121         '.git tag (0000000000000000000000000000000000000000)' \
122         'gitweb_run "p=.git;a=tag;h=0000000000000000000000000000000000000000"'
124 test_expect_success \
125         '.git blob (non-existent)' \
126         'gitweb_run "p=.git;a=blob;f=non-existent"'
128 test_expect_success \
129         '.git blob_plain (non-existent)' \
130         'gitweb_run "p=.git;a=blob_plain;f=non-existent"'
133 # ----------------------------------------------------------------------
134 # commitdiff testing (implicit, one implicit tree-ish)
136 test_expect_success \
137         'commitdiff(0): root' \
138         'gitweb_run "p=.git;a=commitdiff"'
140 test_expect_success \
141         'commitdiff(0): file added' \
142         'echo "New file" > new_file &&
143          git add new_file &&
144          git commit -a -m "File added." &&
145          gitweb_run "p=.git;a=commitdiff"'
147 test_expect_success \
148         'commitdiff(0): mode change' \
149         'test_chmod +x new_file &&
150          git commit -a -m "Mode changed." &&
151          gitweb_run "p=.git;a=commitdiff"'
153 test_expect_success \
154         'commitdiff(0): file renamed' \
155         'git mv new_file renamed_file &&
156          git commit -a -m "File renamed." &&
157          gitweb_run "p=.git;a=commitdiff"'
159 test_expect_success SYMLINKS \
160         'commitdiff(0): file to symlink' \
161         'rm renamed_file &&
162          ln -s file renamed_file &&
163          git commit -a -m "File to symlink." &&
164          gitweb_run "p=.git;a=commitdiff"'
166 test_expect_success \
167         'commitdiff(0): file deleted' \
168         'git rm renamed_file &&
169          rm -f renamed_file &&
170          git commit -a -m "File removed." &&
171          gitweb_run "p=.git;a=commitdiff"'
173 test_expect_success \
174         'commitdiff(0): file copied / new file' \
175         'cp file file2 &&
176          git add file2 &&
177          git commit -a -m "File copied." &&
178          gitweb_run "p=.git;a=commitdiff"'
180 test_expect_success \
181         'commitdiff(0): mode change and modified' \
182         'echo "New line" >> file2 &&
183          test_chmod +x file2 &&
184          git commit -a -m "Mode change and modification." &&
185          gitweb_run "p=.git;a=commitdiff"'
187 test_expect_success \
188         'commitdiff(0): renamed and modified' \
189         'cat >file2<<EOF &&
190 Dominus regit me,
191 et nihil mihi deerit.
192 In loco pascuae ibi me collocavit,
193 super aquam refectionis educavit me;
194 animam meam convertit,
195 deduxit me super semitas jusitiae,
196 propter nomen suum.
197 EOF
198          git commit -a -m "File added." &&
199          git mv file2 file3 &&
200          echo "Propter nomen suum." >> file3 &&
201          git commit -a -m "File rename and modification." &&
202          gitweb_run "p=.git;a=commitdiff"'
204 test_expect_success \
205         'commitdiff(0): renamed, mode change and modified' \
206         'git mv file3 file2 &&
207          echo "Propter nomen suum." >> file2 &&
208          test_chmod +x file2 &&
209          git commit -a -m "File rename, mode change and modification." &&
210          gitweb_run "p=.git;a=commitdiff"'
212 # ----------------------------------------------------------------------
213 # commitdiff testing (taken from t4114-apply-typechange.sh)
215 test_expect_success SYMLINKS 'setup typechange commits' '
216         echo "hello world" > foo &&
217         echo "hi planet" > bar &&
218         git update-index --add foo bar &&
219         git commit -m initial &&
220         git branch initial &&
221         rm -f foo &&
222         ln -s bar foo &&
223         git update-index foo &&
224         git commit -m "foo symlinked to bar" &&
225         git branch foo-symlinked-to-bar &&
226         rm -f foo &&
227         echo "how far is the sun?" > foo &&
228         git update-index foo &&
229         git commit -m "foo back to file" &&
230         git branch foo-back-to-file &&
231         rm -f foo &&
232         git update-index --remove foo &&
233         mkdir foo &&
234         echo "if only I knew" > foo/baz &&
235         git update-index --add foo/baz &&
236         git commit -m "foo becomes a directory" &&
237         git branch "foo-becomes-a-directory" &&
238         echo "hello world" > foo/baz &&
239         git update-index foo/baz &&
240         git commit -m "foo/baz is the original foo" &&
241         git branch foo-baz-renamed-from-foo
242         '
244 test_expect_success \
245         'commitdiff(2): file renamed from foo to foo/baz' \
246         'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-baz-renamed-from-foo"'
248 test_expect_success \
249         'commitdiff(2): file renamed from foo/baz to foo' \
250         'gitweb_run "p=.git;a=commitdiff;hp=foo-baz-renamed-from-foo;h=initial"'
252 test_expect_success \
253         'commitdiff(2): directory becomes file' \
254         'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=initial"'
256 test_expect_success \
257         'commitdiff(2): file becomes directory' \
258         'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-becomes-a-directory"'
260 test_expect_success \
261         'commitdiff(2): file becomes symlink' \
262         'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-symlinked-to-bar"'
264 test_expect_success \
265         'commitdiff(2): symlink becomes file' \
266         'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-back-to-file"'
268 test_expect_success \
269         'commitdiff(2): symlink becomes directory' \
270         'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-becomes-a-directory"'
272 test_expect_success \
273         'commitdiff(2): directory becomes symlink' \
274         'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=foo-symlinked-to-bar"'
276 # ----------------------------------------------------------------------
277 # commit, commitdiff: merge, large
278 test_expect_success \
279         'Create a merge' \
280         'git checkout b &&
281          echo "Branch" >> b &&
282          git add b &&
283          git commit -a -m "On branch" &&
284          git checkout master &&
285          git pull . b'
287 test_expect_success \
288         'commit(0): merge commit' \
289         'gitweb_run "p=.git;a=commit"'
291 test_expect_success \
292         'commitdiff(0): merge commit' \
293         'gitweb_run "p=.git;a=commitdiff"'
295 test_expect_success \
296         'Prepare large commit' \
297         'git checkout b &&
298          echo "To be changed" > 01-change &&
299          echo "To be renamed" > 02-pure-rename-from &&
300          echo "To be deleted" > 03-delete &&
301          echo "To be renamed and changed" > 04-rename-from &&
302          echo "To have mode changed" > 05-mode-change &&
303          echo "File to symlink" > 06-file-or-symlink &&
304          echo "To be changed and have mode changed" > 07-change-mode-change     &&
305          git add 0* &&
306          git commit -a -m "Prepare large commit" &&
307          echo "Changed" > 01-change &&
308          git mv 02-pure-rename-from 02-pure-rename-to &&
309          git rm 03-delete && rm -f 03-delete &&
310          echo "A new file" > 03-new &&
311          git add 03-new &&
312          git mv 04-rename-from 04-rename-to &&
313          echo "Changed" >> 04-rename-to &&
314          test_chmod +x 05-mode-change &&
315          rm -f 06-file-or-symlink &&
316          if test_have_prereq SYMLINKS; then
317                 ln -s 01-change 06-file-or-symlink
318          else
319                 printf %s 01-change > 06-file-or-symlink
320          fi &&
321          echo "Changed and have mode changed" > 07-change-mode-change   &&
322          test_chmod +x 07-change-mode-change &&
323          git commit -a -m "Large commit" &&
324          git checkout master'
326 test_expect_success \
327         'commit(1): large commit' \
328         'gitweb_run "p=.git;a=commit;h=b"'
330 test_expect_success \
331         'commitdiff(1): large commit' \
332         'gitweb_run "p=.git;a=commitdiff;h=b"'
334 # ----------------------------------------------------------------------
335 # tags testing
337 test_expect_success \
338         'tags: list of different types of tags' \
339         'git checkout master &&
340          git tag -a -m "Tag commit object" tag-commit HEAD &&
341          git tag -a -m "" tag-commit-nomessage HEAD &&
342          git tag -a -m "Tag tag object" tag-tag tag-commit &&
343          git tag -a -m "Tag tree object" tag-tree HEAD^{tree} &&
344          git tag -a -m "Tag blob object" tag-blob HEAD:file &&
345          git tag lightweight/tag-commit HEAD &&
346          git tag lightweight/tag-tag tag-commit &&
347          git tag lightweight/tag-tree HEAD^{tree} &&
348          git tag lightweight/tag-blob HEAD:file &&
349          gitweb_run "p=.git;a=tags"'
351 test_expect_success \
352         'tag: Tag to commit object' \
353         'gitweb_run "p=.git;a=tag;h=tag-commit"'
355 test_expect_success \
356         'tag: on lightweight tag (invalid)' \
357         'gitweb_run "p=.git;a=tag;h=lightweight/tag-commit"'
359 # ----------------------------------------------------------------------
360 # logs
362 test_expect_success \
363         'logs: log (implicit HEAD)' \
364         'gitweb_run "p=.git;a=log"'
366 test_expect_success \
367         'logs: shortlog (implicit HEAD)' \
368         'gitweb_run "p=.git;a=shortlog"'
370 test_expect_success \
371         'logs: history (implicit HEAD, file)' \
372         'gitweb_run "p=.git;a=history;f=file"'
374 test_expect_success \
375         'logs: history (implicit HEAD, non-existent file)' \
376         'gitweb_run "p=.git;a=history;f=non-existent"'
378 test_expect_success \
379         'logs: history (implicit HEAD, deleted file)' \
380         'git checkout master &&
381          echo "to be deleted" > deleted_file &&
382          git add deleted_file &&
383          git commit -m "Add file to be deleted" &&
384          git rm deleted_file &&
385          git commit -m "Delete file" &&
386          gitweb_run "p=.git;a=history;f=deleted_file"'
388 # ----------------------------------------------------------------------
389 # path_info links
390 test_expect_success \
391         'path_info: project' \
392         'gitweb_run "" "/.git"'
394 test_expect_success \
395         'path_info: project/branch' \
396         'gitweb_run "" "/.git/b"'
398 test_expect_success \
399         'path_info: project/branch:file' \
400         'gitweb_run "" "/.git/master:file"'
402 test_expect_success \
403         'path_info: project/branch:dir/' \
404         'gitweb_run "" "/.git/master:foo/"'
406 test_expect_success \
407         'path_info: project/branch (non-existent)' \
408         'gitweb_run "" "/.git/non-existent"'
410 test_expect_success \
411         'path_info: project/branch:filename (non-existent branch)' \
412         'gitweb_run "" "/.git/non-existent:non-existent"'
414 test_expect_success \
415         'path_info: project/branch:file (non-existent)' \
416         'gitweb_run "" "/.git/master:non-existent"'
418 test_expect_success \
419         'path_info: project/branch:dir/ (non-existent)' \
420         'gitweb_run "" "/.git/master:non-existent/"'
423 test_expect_success \
424         'path_info: project/branch:/file' \
425         'gitweb_run "" "/.git/master:/file"'
427 test_expect_success \
428         'path_info: project/:/file (implicit HEAD)' \
429         'gitweb_run "" "/.git/:/file"'
431 test_expect_success \
432         'path_info: project/:/ (implicit HEAD, top tree)' \
433         'gitweb_run "" "/.git/:/"'
436 # ----------------------------------------------------------------------
437 # feed generation
439 test_expect_success \
440         'feeds: OPML' \
441         'gitweb_run "a=opml"'
443 test_expect_success \
444         'feed: RSS' \
445         'gitweb_run "p=.git;a=rss"'
447 test_expect_success \
448         'feed: Atom' \
449         'gitweb_run "p=.git;a=atom"'
451 # ----------------------------------------------------------------------
452 # encoding/decoding
454 test_expect_success \
455         'encode(commit): utf8' \
456         '. "$TEST_DIRECTORY"/t3901-utf8.txt &&
457          test_when_finished "GIT_AUTHOR_NAME=\"A U Thor\"" &&
458          test_when_finished "GIT_COMMITTER_NAME=\"C O Mitter\"" &&
459          echo "UTF-8" >> file &&
460          git add file &&
461          git commit -F "$TEST_DIRECTORY"/t3900/1-UTF-8.txt &&
462          gitweb_run "p=.git;a=commit"'
464 test_expect_success \
465         'encode(commit): iso-8859-1' \
466         '. "$TEST_DIRECTORY"/t3901-8859-1.txt &&
467          test_when_finished "GIT_AUTHOR_NAME=\"A U Thor\"" &&
468          test_when_finished "GIT_COMMITTER_NAME=\"C O Mitter\"" &&
469          echo "ISO-8859-1" >> file &&
470          git add file &&
471          git config i18n.commitencoding ISO-8859-1 &&
472          test_when_finished "git config --unset i18n.commitencoding" &&
473          git commit -F "$TEST_DIRECTORY"/t3900/ISO8859-1.txt &&
474          gitweb_run "p=.git;a=commit"'
476 test_expect_success \
477         'encode(log): utf-8 and iso-8859-1' \
478         'gitweb_run "p=.git;a=log"'
480 # ----------------------------------------------------------------------
481 # extra options
483 test_expect_success \
484         'opt: log --no-merges' \
485         'gitweb_run "p=.git;a=log;opt=--no-merges"'
487 test_expect_success \
488         'opt: atom --no-merges' \
489         'gitweb_run "p=.git;a=log;opt=--no-merges"'
491 test_expect_success \
492         'opt: "file" history --no-merges' \
493         'gitweb_run "p=.git;a=history;f=file;opt=--no-merges"'
495 test_expect_success \
496         'opt: log --no-such-option (invalid option)' \
497         'gitweb_run "p=.git;a=log;opt=--no-such-option"'
499 test_expect_success \
500         'opt: tree --no-merges (invalid option for action)' \
501         'gitweb_run "p=.git;a=tree;opt=--no-merges"'
503 # ----------------------------------------------------------------------
504 # testing config_to_multi / cloneurl
506 test_expect_success \
507        'URL: no project URLs, no base URL' \
508        'gitweb_run "p=.git;a=summary"'
510 test_expect_success \
511        'URL: project URLs via gitweb.url' \
512        'git config --add gitweb.url git://example.com/git/trash.git &&
513         git config --add gitweb.url http://example.com/git/trash.git &&
514         gitweb_run "p=.git;a=summary"'
516 cat >.git/cloneurl <<\EOF
517 git://example.com/git/trash.git
518 http://example.com/git/trash.git
519 EOF
521 test_expect_success \
522        'URL: project URLs via cloneurl file' \
523        'gitweb_run "p=.git;a=summary"'
525 # ----------------------------------------------------------------------
526 # gitweb config and repo config
528 cat >>gitweb_config.perl <<\EOF
530 # turn on override for each overridable feature
531 foreach my $key (keys %feature) {
532         if ($feature{$key}{'sub'}) {
533                 $feature{$key}{'override'} = 1;
534         }
536 EOF
538 test_expect_success \
539         'config override: projects list (implicit)' \
540         'gitweb_run'
542 test_expect_success \
543         'config override: tree view, features not overridden in repo config' \
544         'gitweb_run "p=.git;a=tree"'
546 test_expect_success \
547         'config override: tree view, features disabled in repo config' \
548         'git config gitweb.blame no &&
549          git config gitweb.snapshot none &&
550          git config gitweb.avatar gravatar &&
551          gitweb_run "p=.git;a=tree"'
553 test_expect_success \
554         'config override: tree view, features enabled in repo config (1)' \
555         'git config gitweb.blame yes &&
556          git config gitweb.snapshot "zip,tgz, tbz2" &&
557          gitweb_run "p=.git;a=tree"'
559 cat >.git/config <<\EOF
560 # testing noval and alternate separator
561 [gitweb]
562         blame
563         snapshot = zip tgz
564 EOF
565 test_expect_success \
566         'config override: tree view, features enabled in repo config (2)' \
567         'gitweb_run "p=.git;a=tree"'
569 # ----------------------------------------------------------------------
570 # non-ASCII in README.html
572 test_expect_success \
573         'README.html with non-ASCII characters (utf-8)' \
574         'echo "<b>UTF-8 example:</b><br />" > .git/README.html &&
575          cat "$TEST_DIRECTORY"/t3900/1-UTF-8.txt >> .git/README.html &&
576          gitweb_run "p=.git;a=summary"'
578 # ----------------------------------------------------------------------
579 # syntax highlighting
582 highlight --version >/dev/null 2>&1
583 if [ $? -eq 127 ]; then
584         say "Skipping syntax highlighting test, because 'highlight' was not found"
585 else
586         test_set_prereq HIGHLIGHT
587         cat >>gitweb_config.perl <<-\EOF
588         our $highlight_bin = "highlight";
589         $feature{'highlight'}{'override'} = 1;
590         EOF
591 fi
593 test_expect_success HIGHLIGHT \
594         'syntax highlighting (no highlight, unknown syntax)' \
595         'git config gitweb.highlight yes &&
596          gitweb_run "p=.git;a=blob;f=file"'
598 test_expect_success HIGHLIGHT \
599         'syntax highlighting (highlighted, shell script)' \
600         'git config gitweb.highlight yes &&
601          echo "#!/usr/bin/sh" > test.sh &&
602          git add test.sh &&
603          git commit -m "Add test.sh" &&
604          gitweb_run "p=.git;a=blob;f=test.sh"'
606 # ----------------------------------------------------------------------
607 # forks of projects
609 cat >>gitweb_config.perl <<\EOF &&
610 $feature{'forks'}{'default'} = [1];
611 EOF
613 test_expect_success \
614         'forks: prepare' \
615         'git init --bare foo.git &&
616          git --git-dir=foo.git --work-tree=. add file &&
617          git --git-dir=foo.git --work-tree=. commit -m "Initial commit" &&
618          echo "foo" > foo.git/description &&
619          mkdir -p foo &&
620          (cd foo &&
621           git clone --shared --bare ../foo.git foo-forked.git &&
622           echo "fork of foo" > foo-forked.git/description)'
624 test_expect_success \
625         'forks: projects list' \
626         'gitweb_run'
628 test_expect_success \
629         'forks: forks action' \
630         'gitweb_run "p=foo.git;a=forks"'
632 # ----------------------------------------------------------------------
633 # content tags (tag cloud)
635 cat >>gitweb_config.perl <<-\EOF &&
636 # we don't test _setting_ content tags, so any true value is good
637 $feature{'ctags'}{'default'} = ['ctags_script.cgi'];
638 EOF
640 test_expect_success \
641         'ctags: tag cloud in projects list' \
642         'mkdir .git/ctags &&
643          echo "2" > .git/ctags/foo &&
644          echo "1" > .git/ctags/bar &&
645         gitweb_run'
647 test_expect_success \
648         'ctags: search projects by existing tag' \
649         'gitweb_run "by_tag=foo"'
651 test_expect_success \
652         'ctags: search projects by non existent tag' \
653         'gitweb_run "by_tag=non-existent"'
655 test_expect_success \
656         'ctags: malformed tag weights' \
657         'mkdir -p .git/ctags &&
658          echo "not-a-number" > .git/ctags/nan &&
659          echo "not-a-number-2" > .git/ctags/nan2 &&
660          echo "0.1" >.git/ctags/floating-point &&
661          gitweb_run'
663 # ----------------------------------------------------------------------
664 # categories
666 test_expect_success \
667         'categories: projects list, only default category' \
668         'echo "\$projects_list_group_categories = 1;" >>gitweb_config.perl &&
669          gitweb_run'
671 test_done