t / t7005-editor.shon commit filter-branch: Test renaming directories in a tree-filter (9035628)
   1#!/bin/sh
   2
   3test_description='GIT_EDITOR, core.editor, and stuff'
   4
   5. ./test-lib.sh
   6
   7OLD_TERM="$TERM"
   8
   9for i in GIT_EDITOR core_editor EDITOR VISUAL vi
  10do
  11        cat >e-$i.sh <<-EOF
  12        echo "Edited by $i" >"\$1"
  13        EOF
  14        chmod +x e-$i.sh
  15done
  16unset vi
  17mv e-vi.sh vi
  18unset EDITOR VISUAL GIT_EDITOR
  19
  20test_expect_success setup '
  21
  22        msg="Hand edited" &&
  23        echo "$msg" >expect &&
  24        git add vi &&
  25        test_tick &&
  26        git commit -m "$msg" &&
  27        git show -s --pretty=oneline |
  28        sed -e "s/^[0-9a-f]* //" >actual &&
  29        diff actual expect
  30
  31'
  32
  33TERM=dumb
  34export TERM
  35test_expect_success 'dumb should error out when falling back on vi' '
  36
  37        if git commit --amend
  38        then
  39                echo "Oops?"
  40                false
  41        else
  42                : happy
  43        fi
  44'
  45
  46TERM=vt100
  47export TERM
  48for i in vi EDITOR VISUAL core_editor GIT_EDITOR
  49do
  50        echo "Edited by $i" >expect
  51        unset EDITOR VISUAL GIT_EDITOR
  52        git config --unset-all core.editor
  53        case "$i" in
  54        core_editor)
  55                git config core.editor ./e-core_editor.sh
  56                ;;
  57        [A-Z]*)
  58                eval "$i=./e-$i.sh"
  59                export $i
  60                ;;
  61        esac
  62        test_expect_success "Using $i" '
  63                git --exec-path=. commit --amend &&
  64                git show -s --pretty=oneline |
  65                sed -e "s/^[0-9a-f]* //" >actual &&
  66                diff actual expect
  67        '
  68done
  69
  70unset EDITOR VISUAL GIT_EDITOR
  71git config --unset-all core.editor
  72for i in vi EDITOR VISUAL core_editor GIT_EDITOR
  73do
  74        echo "Edited by $i" >expect
  75        case "$i" in
  76        core_editor)
  77                git config core.editor ./e-core_editor.sh
  78                ;;
  79        [A-Z]*)
  80                eval "$i=./e-$i.sh"
  81                export $i
  82                ;;
  83        esac
  84        test_expect_success "Using $i (override)" '
  85                git --exec-path=. commit --amend &&
  86                git show -s --pretty=oneline |
  87                sed -e "s/^[0-9a-f]* //" >actual &&
  88                diff actual expect
  89        '
  90done
  91
  92test_expect_success 'editor with a space' '
  93
  94        if echo "echo space > \"\$1\"" > "e space.sh"
  95        then
  96                chmod a+x "e space.sh" &&
  97                GIT_EDITOR="./e\ space.sh" git commit --amend &&
  98                test space = "$(git show -s --pretty=format:%s)"
  99        else
 100                say "Skipping; FS does not support spaces in filenames"
 101        fi
 102
 103'
 104
 105unset GIT_EDITOR
 106test_expect_success 'core.editor with a space' '
 107
 108        if test -f "e space.sh"
 109        then
 110                git config core.editor \"./e\ space.sh\" &&
 111                git commit --amend &&
 112                test space = "$(git show -s --pretty=format:%s)"
 113        else
 114                say "Skipping; FS does not support spaces in filenames"
 115        fi
 116
 117'
 118
 119TERM="$OLD_TERM"
 120
 121test_done