t / t9502-gitweb-standalone-parse-output.shon commit gitweb: Document current snapshot rules via new tests (3ce9450)
   1#!/bin/sh
   2#
   3# Copyright (c) 2009 Mark Rada
   4#
   5
   6test_description='gitweb as standalone script (parsing script output).
   7
   8This test runs gitweb (git web interface) as a CGI script from the
   9commandline, and checks that it produces the correct output, either
  10in the HTTP header or the actual script output.'
  11
  12
  13. ./gitweb-lib.sh
  14
  15# ----------------------------------------------------------------------
  16# snapshot file name and prefix
  17
  18cat >>gitweb_config.perl <<\EOF
  19
  20$known_snapshot_formats{'tar'} = {
  21        'display' => 'tar',
  22        'type' => 'application/x-tar',
  23        'suffix' => '.tar',
  24        'format' => 'tar',
  25};
  26
  27$feature{'snapshot'}{'default'} = ['tar'];
  28EOF
  29
  30# Call check_snapshot with the arguments "<basename> [<prefix>]"
  31#
  32# This will check that gitweb HTTP header contains proposed filename
  33# as <basename> with '.tar' suffix added, and that generated tarfile
  34# (gitweb message body) has <prefix> as prefix for al files in tarfile
  35#
  36# <prefix> default to <basename>
  37check_snapshot () {
  38        basename=$1
  39        prefix=${2:-"$1"}
  40        echo "basename=$basename"
  41        grep "filename=.*$basename.tar" gitweb.headers >/dev/null 2>&1 &&
  42        "$TAR" tf gitweb.body >file_list &&
  43        ! grep -v "^$prefix/" file_list
  44}
  45
  46test_expect_success setup '
  47        test_commit first foo &&
  48        git branch xx/test &&
  49        FULL_ID=$(git rev-parse --verify HEAD) &&
  50        SHORT_ID=$(git rev-parse --verify --short=7 HEAD)
  51'
  52test_debug '
  53        echo "FULL_ID  = $FULL_ID"
  54        echo "SHORT_ID = $SHORT_ID"
  55'
  56
  57test_expect_success 'snapshot: full sha1' '
  58        gitweb_run "p=.git;a=snapshot;h=$FULL_ID;sf=tar" &&
  59        check_snapshot ".git-$FULL_ID" ".git"
  60'
  61test_debug 'cat gitweb.headers && cat file_list'
  62
  63test_expect_success 'snapshot: shortened sha1' '
  64        gitweb_run "p=.git;a=snapshot;h=$SHORT_ID;sf=tar" &&
  65        check_snapshot ".git-$SHORT_ID" ".git"
  66'
  67test_debug 'cat gitweb.headers && cat file_list'
  68
  69test_expect_success 'snapshot: HEAD' '
  70        gitweb_run "p=.git;a=snapshot;h=HEAD;sf=tar" &&
  71        check_snapshot ".git-HEAD" ".git"
  72'
  73test_debug 'cat gitweb.headers && cat file_list'
  74
  75test_expect_success 'snapshot: short branch name (master)' '
  76        gitweb_run "p=.git;a=snapshot;h=master;sf=tar" &&
  77        check_snapshot ".git-master" ".git"
  78'
  79test_debug 'cat gitweb.headers && cat file_list'
  80
  81test_expect_failure 'snapshot: hierarchical branch name (xx/test)' '
  82        gitweb_run "p=.git;a=snapshot;h=xx/test;sf=tar" &&
  83        ! grep "filename=.*/" gitweb.headers
  84'
  85test_debug 'cat gitweb.headers'
  86
  87test_done