]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1502-rev-parse-parseopt.sh
git-p4: replace each tab with 8 spaces for consistency
[thirdparty/git.git] / t / t1502-rev-parse-parseopt.sh
CommitLineData
e1033436
JS
1#!/bin/sh
2
3test_description='test git rev-parse --parseopt'
4. ./test-lib.sh
5
47e9cd28
TR
6cat > expect <<\END_EXPECT
7cat <<\EOF
e1033436 8usage: some-command [options] <args>...
44d86e91 9
e1033436
JS
10 some-command does foo and bar!
11
12 -h, --help show the help
13 --foo some nifty option --foo
14 --bar ... some cool option --bar with an argument
15
16An option group Header
6422f633 17 -C[...] option C with an optional argument
e1033436
JS
18
19Extras
20 --extra1 line above used to cause a segfault but no longer does
21
22EOF
47e9cd28 23END_EXPECT
e1033436 24
824af25a 25cat > optionspec << EOF
e1033436
JS
26some-command [options] <args>...
27
28some-command does foo and bar!
29--
30h,help show the help
31
32foo some nifty option --foo
33bar= some cool option --bar with an argument
34
35 An option group Header
36C? option C with an optional argument
37
38Extras
39extra1 line above used to cause a segfault but no longer does
40EOF
824af25a
UKK
41
42test_expect_success 'test --parseopt help output' '
2b5ec018 43 test_expect_code 129 git rev-parse --parseopt -- -h > output < optionspec &&
9c7304e3 44 test_cmp expect output
e1033436
JS
45'
46
824af25a
UKK
47cat > expect <<EOF
48set -- --foo --bar 'ham' -- 'arg'
49EOF
50
51test_expect_success 'test --parseopt' '
52 git rev-parse --parseopt -- --foo --bar=ham arg < optionspec > output &&
53 test_cmp expect output
54'
55
56test_expect_success 'test --parseopt with mixed options and arguments' '
57 git rev-parse --parseopt -- --foo arg --bar=ham < optionspec > output &&
58 test_cmp expect output
59'
60
61cat > expect <<EOF
62set -- --foo -- 'arg' '--bar=ham'
63EOF
64
65test_expect_success 'test --parseopt with --' '
66 git rev-parse --parseopt -- --foo -- arg --bar=ham < optionspec > output &&
67 test_cmp expect output
68'
69
6e0800ef
UKK
70test_expect_success 'test --parseopt --stop-at-non-option' '
71 git rev-parse --parseopt --stop-at-non-option -- --foo arg --bar=ham < optionspec > output &&
72 test_cmp expect output
73'
74
824af25a
UKK
75cat > expect <<EOF
76set -- --foo -- '--' 'arg' '--bar=ham'
77EOF
78
79test_expect_success 'test --parseopt --keep-dashdash' '
80 git rev-parse --parseopt --keep-dashdash -- --foo -- arg --bar=ham < optionspec > output &&
81 test_cmp expect output
82'
83
29981380
UKK
84cat >expect <<EOF
85set -- --foo -- '--' 'arg' '--spam=ham'
86EOF
87
88test_expect_success 'test --parseopt --keep-dashdash --stop-at-non-option with --' '
89 git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo -- arg --spam=ham <optionspec >output &&
90 test_cmp expect output
91'
92
93cat > expect <<EOF
94set -- --foo -- 'arg' '--spam=ham'
95EOF
96
97test_expect_success 'test --parseopt --keep-dashdash --stop-at-non-option without --' '
98 git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo arg --spam=ham <optionspec >output &&
99 test_cmp expect output
100'
101
e1033436 102test_done