3
3
test_description=' test git rev-parse --parseopt'
4
4
. ./test-lib.sh
5
5
6
- sed -e ' s/^|//' > expect << \END_EXPECT
6
+ test_expect_success ' setup optionspec' '
7
+ sed -e "s/^|//" >optionspec <<\EOF
8
+ |some-command [options] <args>...
9
+ |
10
+ |some-command does foo and bar!
11
+ |--
12
+ |h,help show the help
13
+ |
14
+ |foo some nifty option --foo
15
+ |bar= some cool option --bar with an argument
16
+ |b,baz a short and long option
17
+ |
18
+ | An option group Header
19
+ |C? option C with an optional argument
20
+ |d,data? short and long option with an optional argument
21
+ |
22
+ | Argument hints
23
+ |B=arg short option required argument
24
+ |bar2=arg long option required argument
25
+ |e,fuz=with-space short and long option required argument
26
+ |s?some short option optional argument
27
+ |long?data long option optional argument
28
+ |g,fluf?path short and long option optional argument
29
+ |longest=very-long-argument-hint a very long argument hint
30
+ |pair=key=value with an equals sign in the hint
31
+ |short-hint=a with a one symbol hint
32
+ |
33
+ |Extras
34
+ |extra1 line above used to cause a segfault but no longer does
35
+ EOF
36
+ '
37
+
38
+ test_expect_success ' test --parseopt help output' '
39
+ sed -e "s/^|//" >expect <<\END_EXPECT &&
7
40
|cat <<\EOF
8
41
|usage: some-command [options] <args>...
9
42
|
@@ -28,49 +61,23 @@ sed -e 's/^|//' >expect <<\END_EXPECT
28
61
| -g, --fluf[=<path>] short and long option optional argument
29
62
| --longest <very-long-argument-hint>
30
63
| a very long argument hint
64
+ | --pair <key=value> with an equals sign in the hint
65
+ | --short-hint <a> with a one symbol hint
31
66
|
32
67
|Extras
33
68
| --extra1 line above used to cause a segfault but no longer does
34
69
|
35
70
|EOF
36
71
END_EXPECT
37
-
38
- sed -e ' s/^|//' > optionspec << \EOF
39
- |some-command [options] <args>...
40
- |
41
- |some-command does foo and bar!
42
- |--
43
- |h,help show the help
44
- |
45
- |foo some nifty option --foo
46
- |bar= some cool option --bar with an argument
47
- |b,baz a short and long option
48
- |
49
- | An option group Header
50
- |C? option C with an optional argument
51
- |d,data? short and long option with an optional argument
52
- |
53
- | Argument hints
54
- |B=arg short option required argument
55
- |bar2=arg long option required argument
56
- |e,fuz=with-space short and long option required argument
57
- |s?some short option optional argument
58
- |long?data long option optional argument
59
- |g,fluf?path short and long option optional argument
60
- |longest=very-long-argument-hint a very long argument hint
61
- |
62
- |Extras
63
- |extra1 line above used to cause a segfault but no longer does
64
- EOF
65
-
66
- test_expect_success ' test --parseopt help output' '
67
72
test_expect_code 129 git rev-parse --parseopt -- -h > output < optionspec &&
68
73
test_i18ncmp expect output
69
74
'
70
75
71
- cat > expect << EOF
76
+ test_expect_success ' setup expect.1' "
77
+ cat > expect <<EOF
72
78
set -- --foo --bar 'ham' -b -- 'arg'
73
79
EOF
80
+ "
74
81
75
82
test_expect_success ' test --parseopt' '
76
83
git rev-parse --parseopt -- --foo --bar=ham --baz arg < optionspec > output &&
@@ -82,9 +89,11 @@ test_expect_success 'test --parseopt with mixed options and arguments' '
82
89
test_cmp expect output
83
90
'
84
91
85
- cat > expect << EOF
92
+ test_expect_success ' setup expect.2' "
93
+ cat > expect <<EOF
86
94
set -- --foo -- 'arg' '--bar=ham'
87
95
EOF
96
+ "
88
97
89
98
test_expect_success ' test --parseopt with --' '
90
99
git rev-parse --parseopt -- --foo -- arg --bar=ham < optionspec > output &&
@@ -96,54 +105,66 @@ test_expect_success 'test --parseopt --stop-at-non-option' '
96
105
test_cmp expect output
97
106
'
98
107
99
- cat > expect << EOF
108
+ test_expect_success ' setup expect.3' "
109
+ cat > expect <<EOF
100
110
set -- --foo -- '--' 'arg' '--bar=ham'
101
111
EOF
112
+ "
102
113
103
114
test_expect_success ' test --parseopt --keep-dashdash' '
104
115
git rev-parse --parseopt --keep-dashdash -- --foo -- arg --bar=ham < optionspec > output &&
105
116
test_cmp expect output
106
117
'
107
118
108
- cat > expect << EOF
119
+ test_expect_success ' setup expect.4' "
120
+ cat >expect <<EOF
109
121
set -- --foo -- '--' 'arg' '--spam=ham'
110
122
EOF
123
+ "
111
124
112
125
test_expect_success ' test --parseopt --keep-dashdash --stop-at-non-option with --' '
113
126
git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo -- arg --spam=ham <optionspec >output &&
114
127
test_cmp expect output
115
128
'
116
129
117
- cat > expect << EOF
130
+ test_expect_success ' setup expect.5' "
131
+ cat > expect <<EOF
118
132
set -- --foo -- 'arg' '--spam=ham'
119
133
EOF
134
+ "
120
135
121
136
test_expect_success ' test --parseopt --keep-dashdash --stop-at-non-option without --' '
122
137
git rev-parse --parseopt --keep-dashdash --stop-at-non-option -- --foo arg --spam=ham <optionspec >output &&
123
138
test_cmp expect output
124
139
'
125
140
126
- cat > expect << EOF
141
+ test_expect_success ' setup expect.6' "
142
+ cat > expect <<EOF
127
143
set -- --foo --bar='z' --baz -C'Z' --data='A' -- 'arg'
128
144
EOF
145
+ "
129
146
130
147
test_expect_success ' test --parseopt --stuck-long' '
131
148
git rev-parse --parseopt --stuck-long -- --foo --bar=z -b arg -CZ -dA <optionspec >output &&
132
149
test_cmp expect output
133
150
'
134
151
135
- cat > expect << EOF
152
+ test_expect_success ' setup expect.7' "
153
+ cat > expect <<EOF
136
154
set -- --data='' -C --baz -- 'arg'
137
155
EOF
156
+ "
138
157
139
158
test_expect_success ' test --parseopt --stuck-long and empty optional argument' '
140
159
git rev-parse --parseopt --stuck-long -- --data= arg -C -b <optionspec >output &&
141
160
test_cmp expect output
142
161
'
143
162
144
- cat > expect << EOF
163
+ test_expect_success ' setup expect.8' "
164
+ cat > expect <<EOF
145
165
set -- --data --baz -- 'arg'
146
166
EOF
167
+ "
147
168
148
169
test_expect_success ' test --parseopt --stuck-long and long option with unset optional argument' '
149
170
git rev-parse --parseopt --stuck-long -- --data arg -b <optionspec >output &&
0 commit comments