]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0014-alias.sh
Merge branch 'rj/add-i-leak-fix'
[thirdparty/git.git] / t / t0014-alias.sh
CommitLineData
fef5f7fc
TS
1#!/bin/sh
2
3test_description='git command aliasing'
4
5. ./test-lib.sh
6
7test_expect_success 'nested aliases - internal execution' '
8 git config alias.nested-internal-1 nested-internal-2 &&
9 git config alias.nested-internal-2 status &&
10 git nested-internal-1 >output &&
6789275d 11 test_grep "^On branch " output
fef5f7fc
TS
12'
13
14test_expect_success 'nested aliases - mixed execution' '
15 git config alias.nested-external-1 nested-external-2 &&
16 git config alias.nested-external-2 "!git nested-external-3" &&
17 git config alias.nested-external-3 status &&
18 git nested-external-1 >output &&
6789275d 19 test_grep "^On branch " output
fef5f7fc
TS
20'
21
22test_expect_success 'looping aliases - internal execution' '
23 git config alias.loop-internal-1 loop-internal-2 &&
24 git config alias.loop-internal-2 loop-internal-3 &&
25 git config alias.loop-internal-3 loop-internal-2 &&
26 test_must_fail git loop-internal-1 2>output &&
6789275d 27 test_grep "^fatal: alias loop detected: expansion of" output
fef5f7fc
TS
28'
29
30# This test is disabled until external loops are fixed, because would block
31# the test suite for a full minute.
32#
33#test_expect_failure 'looping aliases - mixed execution' '
34# git config alias.loop-mixed-1 loop-mixed-2 &&
35# git config alias.loop-mixed-2 "!git loop-mixed-1" &&
36# test_must_fail git loop-mixed-1 2>output &&
6789275d 37# test_grep "^fatal: alias loop detected: expansion of" output
fef5f7fc
TS
38#'
39
ce2d7ed2 40test_expect_success 'run-command formats empty args properly' '
17aa9d9c
DL
41 test_must_fail env GIT_TRACE=1 git frotz a "" b " " c 2>actual.raw &&
42 sed -ne "/run_command:/s/.*trace: run_command: //p" actual.raw >actual &&
ce2d7ed2
GS
43 echo "git-frotz a '\'''\'' b '\'' '\'' c" >expect &&
44 test_cmp expect actual
45'
46
fef5f7fc 47test_done