t5516: test update of local refs on push
[git/dscho.git] / t / t9500-gitweb-standalone-no-errors.sh
blobf7bad5bb2f20cf274eb30f8ceed34a3f83000989
1 #!/bin/sh
3 # Copyright (c) 2007 Jakub Narebski
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.'
12 gitweb_init () {
13 cat >gitweb_config.perl <<EOF
14 #!/usr/bin/perl
16 # gitweb configuration for tests
18 our \$version = "current";
19 our \$GIT = "git";
20 our \$projectroot = "$(pwd)";
21 our \$project_maxdepth = 8;
22 our \$home_link_str = "projects";
23 our \$site_name = "[localhost]";
24 our \$site_header = "";
25 our \$site_footer = "";
26 our \$home_text = "indextext.html";
27 our @stylesheets = ("file:///$(pwd)/../../gitweb/gitweb.css");
28 our \$logo = "file:///$(pwd)/../../gitweb/git-logo.png";
29 our \$favicon = "file:///$(pwd)/../../gitweb/git-favicon.png";
30 our \$projects_list = "";
31 our \$export_ok = "";
32 our \$strict_export = "";
34 CGI::Carp::set_programname("gitweb/gitweb.cgi");
35 EOF
37 cat >.git/description <<EOF
38 $0 test repository
39 EOF
42 gitweb_run () {
43 export GATEWAY_INTERFACE="CGI/1.1"
44 export HTTP_ACCEPT="*/*"
45 export REQUEST_METHOD="GET"
46 export QUERY_STRING=""$1""
47 export PATH_INFO=""$2""
49 export GITWEB_CONFIG=$(pwd)/gitweb_config.perl
51 # some of git commands write to STDERR on error, but this is not
52 # written to web server logs, so we are not interested in that:
53 # we are interested only in properly formatted errors/warnings
54 rm -f gitweb.log &&
55 perl -- $(pwd)/../../gitweb/gitweb.perl \
56 >/dev/null 2>gitweb.log &&
57 if grep -q -s "^[[]" gitweb.log >/dev/null; then false; else true; fi
59 # gitweb.log is left for debugging
62 safe_chmod () {
63 chmod "$1" "$2" &&
64 if [ "$(git config --get core.filemode)" = false ]
65 then
66 git update-index --chmod="$1" "$2"
70 . ./test-lib.sh
72 perl -MEncode -e 'decode_utf8("", Encode::FB_CROAK)' >/dev/null 2>&1 || {
73 test_expect_success 'skipping gitweb tests, perl version is too old' :
74 test_done
75 exit
78 gitweb_init
80 # ----------------------------------------------------------------------
81 # no commits (empty, just initialized repository)
83 test_expect_success \
84 'no commits: projects_list (implicit)' \
85 'gitweb_run'
86 test_debug 'cat gitweb.log'
88 test_expect_success \
89 'no commits: projects_index' \
90 'gitweb_run "a=project_index"'
91 test_debug 'cat gitweb.log'
93 test_expect_success \
94 'no commits: .git summary (implicit)' \
95 'gitweb_run "p=.git"'
96 test_debug 'cat gitweb.log'
98 test_expect_success \
99 'no commits: .git commit (implicit HEAD)' \
100 'gitweb_run "p=.git;a=commit"'
101 test_debug 'cat gitweb.log'
103 test_expect_success \
104 'no commits: .git commitdiff (implicit HEAD)' \
105 'gitweb_run "p=.git;a=commitdiff"'
106 test_debug 'cat gitweb.log'
108 test_expect_success \
109 'no commits: .git tree (implicit HEAD)' \
110 'gitweb_run "p=.git;a=tree"'
111 test_debug 'cat gitweb.log'
113 test_expect_success \
114 'no commits: .git heads' \
115 'gitweb_run "p=.git;a=heads"'
116 test_debug 'cat gitweb.log'
118 test_expect_success \
119 'no commits: .git tags' \
120 'gitweb_run "p=.git;a=tags"'
121 test_debug 'cat gitweb.log'
124 # ----------------------------------------------------------------------
125 # initial commit
127 test_expect_success \
128 'Make initial commit' \
129 'echo "Not an empty file." > file &&
130 git add file &&
131 git commit -a -m "Initial commit." &&
132 git branch b'
134 test_expect_success \
135 'projects_list (implicit)' \
136 'gitweb_run'
137 test_debug 'cat gitweb.log'
139 test_expect_success \
140 'projects_index' \
141 'gitweb_run "a=project_index"'
142 test_debug 'cat gitweb.log'
144 test_expect_success \
145 '.git summary (implicit)' \
146 'gitweb_run "p=.git"'
147 test_debug 'cat gitweb.log'
149 test_expect_success \
150 '.git commit (implicit HEAD)' \
151 'gitweb_run "p=.git;a=commit"'
152 test_debug 'cat gitweb.log'
154 test_expect_success \
155 '.git commitdiff (implicit HEAD, root commit)' \
156 'gitweb_run "p=.git;a=commitdiff"'
157 test_debug 'cat gitweb.log'
159 test_expect_success \
160 '.git commitdiff_plain (implicit HEAD, root commit)' \
161 'gitweb_run "p=.git;a=commitdiff_plain"'
162 test_debug 'cat gitweb.log'
164 test_expect_success \
165 '.git commit (HEAD)' \
166 'gitweb_run "p=.git;a=commit;h=HEAD"'
167 test_debug 'cat gitweb.log'
169 test_expect_success \
170 '.git tree (implicit HEAD)' \
171 'gitweb_run "p=.git;a=tree"'
172 test_debug 'cat gitweb.log'
174 test_expect_success \
175 '.git blob (file)' \
176 'gitweb_run "p=.git;a=blob;f=file"'
177 test_debug 'cat gitweb.log'
179 test_expect_success \
180 '.git blob_plain (file)' \
181 'gitweb_run "p=.git;a=blob_plain;f=file"'
182 test_debug 'cat gitweb.log'
184 # ----------------------------------------------------------------------
185 # nonexistent objects
187 test_expect_success \
188 '.git commit (non-existent)' \
189 'gitweb_run "p=.git;a=commit;h=non-existent"'
190 test_debug 'cat gitweb.log'
192 test_expect_success \
193 '.git commitdiff (non-existent)' \
194 'gitweb_run "p=.git;a=commitdiff;h=non-existent"'
195 test_debug 'cat gitweb.log'
197 test_expect_success \
198 '.git commitdiff (non-existent vs HEAD)' \
199 'gitweb_run "p=.git;a=commitdiff;hp=non-existent;h=HEAD"'
200 test_debug 'cat gitweb.log'
202 test_expect_success \
203 '.git tree (0000000000000000000000000000000000000000)' \
204 'gitweb_run "p=.git;a=tree;h=0000000000000000000000000000000000000000"'
205 test_debug 'cat gitweb.log'
207 test_expect_success \
208 '.git tag (0000000000000000000000000000000000000000)' \
209 'gitweb_run "p=.git;a=tag;h=0000000000000000000000000000000000000000"'
210 test_debug 'cat gitweb.log'
212 test_expect_success \
213 '.git blob (non-existent)' \
214 'gitweb_run "p=.git;a=blob;f=non-existent"'
215 test_debug 'cat gitweb.log'
217 test_expect_success \
218 '.git blob_plain (non-existent)' \
219 'gitweb_run "p=.git;a=blob_plain;f=non-existent"'
220 test_debug 'cat gitweb.log'
223 # ----------------------------------------------------------------------
224 # commitdiff testing (implicit, one implicit tree-ish)
226 test_expect_success \
227 'commitdiff(0): root' \
228 'gitweb_run "p=.git;a=commitdiff"'
229 test_debug 'cat gitweb.log'
231 test_expect_success \
232 'commitdiff(0): file added' \
233 'echo "New file" > new_file &&
234 git add new_file &&
235 git commit -a -m "File added." &&
236 gitweb_run "p=.git;a=commitdiff"'
237 test_debug 'cat gitweb.log'
239 test_expect_success \
240 'commitdiff(0): mode change' \
241 'safe_chmod +x new_file &&
242 git commit -a -m "Mode changed." &&
243 gitweb_run "p=.git;a=commitdiff"'
244 test_debug 'cat gitweb.log'
246 test_expect_success \
247 'commitdiff(0): file renamed' \
248 'git mv new_file renamed_file &&
249 git commit -a -m "File renamed." &&
250 gitweb_run "p=.git;a=commitdiff"'
251 test_debug 'cat gitweb.log'
253 test_expect_success \
254 'commitdiff(0): file to symlink' \
255 'rm renamed_file &&
256 ln -s file renamed_file &&
257 git commit -a -m "File to symlink." &&
258 gitweb_run "p=.git;a=commitdiff"'
259 test_debug 'cat gitweb.log'
261 test_expect_success \
262 'commitdiff(0): file deleted' \
263 'git rm renamed_file &&
264 rm -f renamed_file &&
265 git commit -a -m "File removed." &&
266 gitweb_run "p=.git;a=commitdiff"'
267 test_debug 'cat gitweb.log'
269 test_expect_success \
270 'commitdiff(0): file copied / new file' \
271 'cp file file2 &&
272 git add file2 &&
273 git commit -a -m "File copied." &&
274 gitweb_run "p=.git;a=commitdiff"'
275 test_debug 'cat gitweb.log'
277 test_expect_success \
278 'commitdiff(0): mode change and modified' \
279 'echo "New line" >> file2 &&
280 safe_chmod +x file2 &&
281 git commit -a -m "Mode change and modification." &&
282 gitweb_run "p=.git;a=commitdiff"'
283 test_debug 'cat gitweb.log'
285 test_expect_success \
286 'commitdiff(0): renamed and modified' \
287 'cat >file2<<EOF &&
288 Dominus regit me,
289 et nihil mihi deerit.
290 In loco pascuae ibi me collocavit,
291 super aquam refectionis educavit me;
292 animam meam convertit,
293 deduxit me super semitas jusitiae,
294 propter nomen suum.
296 git commit -a -m "File added." &&
297 git mv file2 file3 &&
298 echo "Propter nomen suum." >> file3 &&
299 git commit -a -m "File rename and modification." &&
300 gitweb_run "p=.git;a=commitdiff"'
301 test_debug 'cat gitweb.log'
303 test_expect_success \
304 'commitdiff(0): renamed, mode change and modified' \
305 'git mv file3 file2 &&
306 echo "Propter nomen suum." >> file2 &&
307 safe_chmod +x file2 &&
308 git commit -a -m "File rename, mode change and modification." &&
309 gitweb_run "p=.git;a=commitdiff"'
310 test_debug 'cat gitweb.log'
312 # ----------------------------------------------------------------------
313 # commitdiff testing (taken from t4114-apply-typechange.sh)
315 test_expect_success 'setup typechange commits' '
316 echo "hello world" > foo &&
317 echo "hi planet" > bar &&
318 git update-index --add foo bar &&
319 git commit -m initial &&
320 git branch initial &&
321 rm -f foo &&
322 ln -s bar foo &&
323 git update-index foo &&
324 git commit -m "foo symlinked to bar" &&
325 git branch foo-symlinked-to-bar &&
326 rm -f foo &&
327 echo "how far is the sun?" > foo &&
328 git update-index foo &&
329 git commit -m "foo back to file" &&
330 git branch foo-back-to-file &&
331 rm -f foo &&
332 git update-index --remove foo &&
333 mkdir foo &&
334 echo "if only I knew" > foo/baz &&
335 git update-index --add foo/baz &&
336 git commit -m "foo becomes a directory" &&
337 git branch "foo-becomes-a-directory" &&
338 echo "hello world" > foo/baz &&
339 git update-index foo/baz &&
340 git commit -m "foo/baz is the original foo" &&
341 git branch foo-baz-renamed-from-foo
344 test_expect_success \
345 'commitdiff(2): file renamed from foo to foo/baz' \
346 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-baz-renamed-from-foo"'
347 test_debug 'cat gitweb.log'
349 test_expect_success \
350 'commitdiff(2): file renamed from foo/baz to foo' \
351 'gitweb_run "p=.git;a=commitdiff;hp=foo-baz-renamed-from-foo;h=initial"'
352 test_debug 'cat gitweb.log'
354 test_expect_success \
355 'commitdiff(2): directory becomes file' \
356 'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=initial"'
357 test_debug 'cat gitweb.log'
359 test_expect_success \
360 'commitdiff(2): file becomes directory' \
361 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-becomes-a-directory"'
362 test_debug 'cat gitweb.log'
364 test_expect_success \
365 'commitdiff(2): file becomes symlink' \
366 'gitweb_run "p=.git;a=commitdiff;hp=initial;h=foo-symlinked-to-bar"'
367 test_debug 'cat gitweb.log'
369 test_expect_success \
370 'commitdiff(2): symlink becomes file' \
371 'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-back-to-file"'
372 test_debug 'cat gitweb.log'
374 test_expect_success \
375 'commitdiff(2): symlink becomes directory' \
376 'gitweb_run "p=.git;a=commitdiff;hp=foo-symlinked-to-bar;h=foo-becomes-a-directory"'
377 test_debug 'cat gitweb.log'
379 test_expect_success \
380 'commitdiff(2): directory becomes symlink' \
381 'gitweb_run "p=.git;a=commitdiff;hp=foo-becomes-a-directory;h=foo-symlinked-to-bar"'
382 test_debug 'cat gitweb.log'
384 # ----------------------------------------------------------------------
385 # commit, commitdiff: merge, large
386 test_expect_success \
387 'Create a merge' \
388 'git checkout b &&
389 echo "Branch" >> b &&
390 git add b &&
391 git commit -a -m "On branch" &&
392 git checkout master &&
393 git pull . b'
395 test_expect_success \
396 'commit(0): merge commit' \
397 'gitweb_run "p=.git;a=commit"'
398 test_debug 'cat gitweb.log'
400 test_expect_success \
401 'commitdiff(0): merge commit' \
402 'gitweb_run "p=.git;a=commitdiff"'
403 test_debug 'cat gitweb.log'
405 test_expect_success \
406 'Prepare large commit' \
407 'git checkout b &&
408 echo "To be changed" > 01-change &&
409 echo "To be renamed" > 02-pure-rename-from &&
410 echo "To be deleted" > 03-delete &&
411 echo "To be renamed and changed" > 04-rename-from &&
412 echo "To have mode changed" > 05-mode-change &&
413 echo "File to symlink" > 06-file-or-symlink &&
414 echo "To be changed and have mode changed" > 07-change-mode-change &&
415 git add 0* &&
416 git commit -a -m "Prepare large commit" &&
417 echo "Changed" > 01-change &&
418 git mv 02-pure-rename-from 02-pure-rename-to &&
419 git rm 03-delete && rm -f 03-delete &&
420 echo "A new file" > 03-new &&
421 git add 03-new &&
422 git mv 04-rename-from 04-rename-to &&
423 echo "Changed" >> 04-rename-to &&
424 safe_chmod +x 05-mode-change &&
425 rm -f 06-file-or-symlink && ln -s 01-change 06-file-or-symlink &&
426 echo "Changed and have mode changed" > 07-change-mode-change &&
427 safe_chmod +x 07-change-mode-change &&
428 git commit -a -m "Large commit" &&
429 git checkout master'
431 test_expect_success \
432 'commit(1): large commit' \
433 'gitweb_run "p=.git;a=commit;h=b"'
434 test_debug 'cat gitweb.log'
436 test_expect_success \
437 'commitdiff(1): large commit' \
438 'gitweb_run "p=.git;a=commitdiff;h=b"'
439 test_debug 'cat gitweb.log'
441 # ----------------------------------------------------------------------
442 # tags testing
444 test_expect_success \
445 'tags: list of different types of tags' \
446 'git checkout master &&
447 git tag -a -m "Tag commit object" tag-commit HEAD &&
448 git tag -a -m "" tag-commit-nomessage HEAD &&
449 git tag -a -m "Tag tag object" tag-tag tag-commit &&
450 git tag -a -m "Tag tree object" tag-tree HEAD^{tree} &&
451 git tag -a -m "Tag blob object" tag-blob HEAD:file &&
452 git tag lightweight/tag-commit HEAD &&
453 git tag lightweight/tag-tag tag-commit &&
454 git tag lightweight/tag-tree HEAD^{tree} &&
455 git tag lightweight/tag-blob HEAD:file &&
456 gitweb_run "p=.git;a=tags"'
457 test_debug 'cat gitweb.log'
459 test_expect_success \
460 'tag: Tag to commit object' \
461 'gitweb_run "p=.git;a=tag;h=tag-commit"'
462 test_debug 'cat gitweb.log'
464 test_expect_success \
465 'tag: on lightweight tag (invalid)' \
466 'gitweb_run "p=.git;a=tag;h=lightweight/tag-commit"'
467 test_debug 'cat gitweb.log'
469 # ----------------------------------------------------------------------
470 # logs
472 test_expect_success \
473 'logs: log (implicit HEAD)' \
474 'gitweb_run "p=.git;a=log"'
475 test_debug 'cat gitweb.log'
477 test_expect_success \
478 'logs: shortlog (implicit HEAD)' \
479 'gitweb_run "p=.git;a=shortlog"'
480 test_debug 'cat gitweb.log'
482 test_expect_success \
483 'logs: history (implicit HEAD, file)' \
484 'gitweb_run "p=.git;a=history;f=file"'
485 test_debug 'cat gitweb.log'
487 # ----------------------------------------------------------------------
488 # feed generation
490 test_expect_success \
491 'feeds: OPML' \
492 'gitweb_run "a=opml"'
493 test_debug 'cat gitweb.log'
495 test_expect_success \
496 'feed: RSS' \
497 'gitweb_run "p=.git;a=rss"'
498 test_debug 'cat gitweb.log'
500 test_expect_success \
501 'feed: Atom' \
502 'gitweb_run "p=.git;a=atom"'
503 test_debug 'cat gitweb.log'
505 # ----------------------------------------------------------------------
506 # encoding/decoding
508 test_expect_success \
509 'encode(commit): utf8' \
510 '. ../t3901-utf8.txt &&
511 echo "UTF-8" >> file &&
512 git add file &&
513 git commit -F ../t3900/1-UTF-8.txt &&
514 gitweb_run "p=.git;a=commit"'
515 test_debug 'cat gitweb.log'
517 test_expect_success \
518 'encode(commit): iso-8859-1' \
519 '. ../t3901-8859-1.txt &&
520 echo "ISO-8859-1" >> file &&
521 git add file &&
522 git config i18n.commitencoding ISO-8859-1 &&
523 git commit -F ../t3900/ISO-8859-1.txt &&
524 git config --unset i18n.commitencoding &&
525 gitweb_run "p=.git;a=commit"'
526 test_debug 'cat gitweb.log'
528 test_expect_success \
529 'encode(log): utf-8 and iso-8859-1' \
530 'gitweb_run "p=.git;a=log"'
531 test_debug 'cat gitweb.log'
533 # ----------------------------------------------------------------------
534 # extra options
536 test_expect_success \
537 'opt: log --no-merges' \
538 'gitweb_run "p=.git;a=log;opt=--no-merges"'
539 test_debug 'cat gitweb.log'
541 test_expect_success \
542 'opt: atom --no-merges' \
543 'gitweb_run "p=.git;a=log;opt=--no-merges"'
544 test_debug 'cat gitweb.log'
546 test_expect_success \
547 'opt: "file" history --no-merges' \
548 'gitweb_run "p=.git;a=history;f=file;opt=--no-merges"'
549 test_debug 'cat gitweb.log'
551 test_expect_success \
552 'opt: log --no-such-option (invalid option)' \
553 'gitweb_run "p=.git;a=log;opt=--no-such-option"'
554 test_debug 'cat gitweb.log'
556 test_expect_success \
557 'opt: tree --no-merges (invalid option for action)' \
558 'gitweb_run "p=.git;a=tree;opt=--no-merges"'
559 test_debug 'cat gitweb.log'
561 test_done