t / t9130-git-svn-authors-file.shon commit Merge branch 'jk/ident-ai-canonname-could-be-null' into maint (11738dd)
   1#!/bin/sh
   2#
   3# Copyright (c) 2008 Eric Wong
   4#
   5
   6test_description='git svn authors file tests'
   7
   8. ./lib-git-svn.sh
   9
  10cat > svn-authors <<EOF
  11aa = AAAAAAA AAAAAAA <aa@example.com>
  12bb = BBBBBBB BBBBBBB <bb@example.com>
  13EOF
  14
  15test_expect_success 'setup svnrepo' '
  16        for i in aa bb cc dd
  17        do
  18                svn_cmd mkdir -m $i --username $i "$svnrepo"/$i
  19        done
  20        '
  21
  22test_expect_success 'start import with incomplete authors file' '
  23        test_must_fail git svn clone --authors-file=svn-authors "$svnrepo" x
  24        '
  25
  26test_expect_success 'imported 2 revisions successfully' '
  27        (
  28                cd x
  29                test "$(git rev-list refs/remotes/git-svn | wc -l)" -eq 2 &&
  30                git rev-list -1 --pretty=raw refs/remotes/git-svn | \
  31                  grep "^author BBBBBBB BBBBBBB <bb@example\.com> " &&
  32                git rev-list -1 --pretty=raw refs/remotes/git-svn~1 | \
  33                  grep "^author AAAAAAA AAAAAAA <aa@example\.com> "
  34        )
  35        '
  36
  37cat >> svn-authors <<EOF
  38cc = CCCCCCC CCCCCCC <cc@example.com>
  39dd = DDDDDDD DDDDDDD <dd@example.com>
  40EOF
  41
  42test_expect_success 'continues to import once authors have been added' '
  43        (
  44                cd x
  45                git svn fetch --authors-file=../svn-authors &&
  46                test "$(git rev-list refs/remotes/git-svn | wc -l)" -eq 4 &&
  47                git rev-list -1 --pretty=raw refs/remotes/git-svn | \
  48                  grep "^author DDDDDDD DDDDDDD <dd@example\.com> " &&
  49                git rev-list -1 --pretty=raw refs/remotes/git-svn~1 | \
  50                  grep "^author CCCCCCC CCCCCCC <cc@example\.com> "
  51        )
  52        '
  53
  54test_expect_success 'authors-file against globs' '
  55        svn_cmd mkdir -m globs --username aa \
  56          "$svnrepo"/aa/trunk "$svnrepo"/aa/branches "$svnrepo"/aa/tags &&
  57        git svn clone --authors-file=svn-authors -s "$svnrepo"/aa aa-work &&
  58        for i in bb ee cc
  59        do
  60                branch="aa/branches/$i"
  61                svn_cmd mkdir -m "$branch" --username $i "$svnrepo/$branch"
  62        done
  63        '
  64
  65test_expect_success 'fetch fails on ee' '
  66        ( cd aa-work && test_must_fail git svn fetch --authors-file=../svn-authors )
  67        '
  68
  69tmp_config_get () {
  70        git config --file=.git/svn/.metadata --get "$1"
  71}
  72
  73test_expect_success 'failure happened without negative side effects' '
  74        (
  75                cd aa-work &&
  76                test 6 -eq "$(tmp_config_get svn-remote.svn.branches-maxRev)" &&
  77                test 6 -eq "$(tmp_config_get svn-remote.svn.tags-maxRev)"
  78        )
  79        '
  80
  81cat >> svn-authors <<EOF
  82ee = EEEEEEE EEEEEEE <ee@example.com>
  83EOF
  84
  85test_expect_success 'fetch continues after authors-file is fixed' '
  86        (
  87                cd aa-work &&
  88                git svn fetch --authors-file=../svn-authors &&
  89                test 8 -eq "$(tmp_config_get svn-remote.svn.branches-maxRev)" &&
  90                test 8 -eq "$(tmp_config_get svn-remote.svn.tags-maxRev)"
  91        )
  92        '
  93
  94test_expect_success !MINGW 'fresh clone with svn.authors-file in config' '
  95        (
  96                rm -r "$GIT_DIR" &&
  97                test x = x"$(git config svn.authorsfile)" &&
  98                test_config="$HOME"/.gitconfig &&
  99                sane_unset GIT_DIR &&
 100                git config --global \
 101                  svn.authorsfile "$HOME"/svn-authors &&
 102                test x"$HOME"/svn-authors = x"$(git config svn.authorsfile)" &&
 103                git svn clone "$svnrepo" gitconfig.clone &&
 104                cd gitconfig.clone &&
 105                nr_ex=$(git log | grep "^Author:.*example.com" | wc -l) &&
 106                nr_rev=$(git rev-list HEAD | wc -l) &&
 107                test $nr_rev -eq $nr_ex
 108        )
 109'
 110
 111test_debug 'GIT_DIR=gitconfig.clone/.git git log'
 112
 113test_done