summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/bin/sh/t_cmdsub.sh
blob: f3ee21064631b0b12219a605bfb2d800a8643ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
# $NetBSD: t_cmdsub.sh,v 1.4 2016/04/04 12:40:13 christos Exp $
#
# Copyright (c) 2016 The NetBSD Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# the implementation of "sh" to test
: ${TEST_SH:="/bin/sh"}

#
# This file tests command substitutions ( `...` and $( ... ) )
#
# CAUTION:
#	Be careful attempting running these tests outside the ATF environment
#	Some of the tests run "rm *" in the current directory to clean up
#	An ATF test directory should be empty already, outside ATF, anything

atf_test_case a_basic_cmdsub
a_basic_cmdsub_head() {
	atf_set "descr" 'Test operation of simple $( ) substitutions'
}
a_basic_cmdsub_body() {
	atf_check -s exit:0 -o match:'Result is true today' -e empty \
	    ${TEST_SH} -c \
		'echo Result is $( true && echo true || echo false ) today'

	atf_check -s exit:0 -o match:'Result is false today' -e empty \
	    ${TEST_SH} -c \
		'echo Result is $( false && echo true || echo false ) today'

	atf_check -s exit:0 -o match:'aaabbbccc' -e empty \
	    ${TEST_SH} -c 'echo aaa$( echo bbb )ccc'
	atf_check -s exit:0 -o match:'aaabbb cccddd' -e empty \
	    ${TEST_SH} -c 'echo aaa$( echo bbb ccc )ddd'
	atf_check -s exit:0 -o inline:'aaabbb cccddd\n' -e empty \
	    ${TEST_SH} -c 'echo aaa$( echo bbb; echo ccc )ddd'
	atf_check -s exit:0 -o inline:'aaabbb\ncccddd\n' -e empty \
	    ${TEST_SH} -c 'echo "aaa$( echo bbb; echo ccc )ddd"'

	atf_check -s exit:0 -o inline:'some string\n' -e empty \
	    ${TEST_SH} -c 'X=$( echo some string ); echo "$X"'
	atf_check -s exit:0 -o inline:'weird; string *\n' -e empty \
	    ${TEST_SH} -c 'X=$( echo "weird; string *" ); echo "$X"'

	rm -f * 2>/dev/null || :
	for f in file-1 file-2
	do
		cp /dev/null "$f"
	done

	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found $( echo * )'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found "$( echo * )"'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found $('" echo '*' )"
	atf_check -s exit:0 -o match:'Found \*' -e empty \
	    ${TEST_SH} -c 'echo Found "$('" echo '*' "')"'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found $('" echo \\* )"
	atf_check -s exit:0 -o match:'Found \*' -e empty \
	    ${TEST_SH} -c 'echo Found "$('" echo \\* )"\"
}

atf_test_case b_basic_backticks
b_basic_backticks_head() {
	atf_set "descr" 'Test operation of old style ` ` substitutions'
}
b_basic_backticks_body() {
	atf_check -s exit:0 -o match:'Result is true today' -e empty \
	    ${TEST_SH} -c \
		'echo Result is `true && echo true || echo false` today'

	atf_check -s exit:0 -o match:'Result is false today' -e empty \
	    ${TEST_SH} -c \
		'echo Result is `false && echo true || echo false` today'

	atf_check -s exit:0 -o match:'aaabbbccc' -e empty \
	    ${TEST_SH} -c 'echo aaa` echo bbb `ccc'
	atf_check -s exit:0 -o match:'aaabbb cccddd' -e empty \
	    ${TEST_SH} -c 'echo aaa` echo bbb ccc `ddd'
	atf_check -s exit:0 -o inline:'aaabbb cccddd\n' -e empty \
	    ${TEST_SH} -c 'echo aaa` echo bbb; echo ccc `ddd'
	atf_check -s exit:0 -o inline:'aaabbb\ncccddd\n' -e empty \
	    ${TEST_SH} -c 'echo "aaa` echo bbb; echo ccc `ddd"'

	atf_check -s exit:0 -o inline:'some string\n' -e empty \
	    ${TEST_SH} -c 'X=` echo some string `; echo "$X"'
	atf_check -s exit:0 -o inline:'weird; string *\n' -e empty \
	    ${TEST_SH} -c 'X=` echo "weird; string *" `; echo "$X"'

	rm -f * 2>/dev/null || :
	for f in file-1 file-2
	do
		cp /dev/null "$f"
	done

	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found ` echo * `'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found "` echo * `"'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found `'" echo '*' "'`'
	atf_check -s exit:0 -o match:'Found \*' -e empty \
	    ${TEST_SH} -c 'echo Found "`'" echo '*' "'`"'
	atf_check -s exit:0 -o match:'Found file-1 file-2' -e empty \
	    ${TEST_SH} -c 'echo Found `'" echo \\* "'`'
	atf_check -s exit:0 -o match:'Found \*' -e empty \
	    ${TEST_SH} -c 'echo Found "`'" echo \\* "'`"'
}

atf_test_case c_nested_cmdsub
c_nested_cmdsub_head() {
	atf_set "descr" "Test that cmd substitutions can be nested"
}
c_nested_cmdsub_body() {
	atf_check -s exit:0 -o match:'__foobarbletch__' -e empty \
	    ${TEST_SH} -c 'echo __$( echo foo$(echo bar)bletch )__'
	atf_check -s exit:0 -o match:'_abcde_' -e empty \
	    ${TEST_SH} -c 'echo _$(echo a$(echo $(echo b)c$(echo d))e )_'
	atf_check -s exit:0 -o match:'123454321' -e empty \
	    ${TEST_SH} -c 'echo 1$(echo 2$(echo 3$(echo 4$(echo 5)4)3)2)1'
}

atf_test_case d_nested_backticks
d_nested_backticks_head() {
	atf_set "descr" "Tests that old style backtick cmd subs can be nested"
}
d_nested_backticks_body() {
	atf_check -s exit:0 -o match:'__foobarbletch__' -e empty \
	    ${TEST_SH} -c 'echo __` echo foo\`echo bar\`bletch `__'
	atf_check -s exit:0 -o match:'_abcde_' -e empty \
	    ${TEST_SH} -c \
		'echo _`echo a\`echo \\\`echo b\\\`c\\\`echo d\\\`\`e `_'
	atf_check -s exit:0 -o match:'123454321' -e empty \
	    ${TEST_SH} -c \
	    'echo 1`echo 2\`echo 3\\\`echo 4\\\\\\\`echo 5\\\\\\\`4\\\`3\`2`1'
}

atf_test_case e_perverse_mixing
e_perverse_mixing_head() {
	atf_set "descr" \
		"Checks various mixed new and old style cmd substitutions"
}
e_perverse_mixing_body() {
	atf_check -s exit:0 -o match:'__foobarbletch__' -e empty \
	    ${TEST_SH} -c 'echo __$( echo foo`echo bar`bletch )__'
	atf_check -s exit:0 -o match:'__foobarbletch__' -e empty \
	    ${TEST_SH} -c 'echo __` echo foo$(echo bar)bletch `__'
	atf_check -s exit:0 -o match:'_abcde_' -e empty \
	    ${TEST_SH} -c 'echo _$(echo a`echo $(echo b)c$(echo d)`e )_'
	atf_check -s exit:0 -o match:'_abcde_' -e empty \
	    ${TEST_SH} -c 'echo _`echo a$(echo \`echo b\`c\`echo d\`)e `_'
	atf_check -s exit:0 -o match:'12345654321' -e empty \
	    ${TEST_SH} -c \
		'echo 1`echo 2$(echo 3\`echo 4\\\`echo 5$(echo 6)5\\\`4\`3)2`1'
}

atf_test_case f_redirect_in_cmdsub
f_redirect_in_cmdsub_head() {
	atf_set "descr" "Checks that redirects work in command substitutions"
}
f_redirect_in_cmdsub_body() {
	atf_require_prog cat
	atf_require_prog rm

	rm -f file 2>/dev/null || :
	atf_check -s exit:0 -o match:'_aa_' -e empty \
	    ${TEST_SH} -c 'echo _$( echo a$( echo b > file )a)_'
	atf_check -s exit:0 -o match:b -e empty ${TEST_SH} -c 'cat file'
	atf_check -s exit:0 -o match:'_aba_' -e empty \
	    ${TEST_SH} -c 'echo _$( echo a$( cat < file )a)_'
	atf_check -s exit:0 -o match:'_aa_' -e empty \
	    ${TEST_SH} -c 'echo _$( echo a$( echo d >> file )a)_'
	atf_check -s exit:0 -o inline:'b\nd\n' -e empty ${TEST_SH} -c 'cat file'
	atf_check -s exit:0 -o match:'_aa_' -e match:'not error' \
	    ${TEST_SH} -c 'echo _$( echo a$( echo not error >&2 )a)_'
}

atf_test_case g_redirect_in_backticks
g_redirect_in_backticks_head() {
	atf_set "descr" "Checks that redirects work in old style cmd sub"
}
g_redirect_in_backticks_body() {
	atf_require_prog cat
	atf_require_prog rm

	rm -f file 2>/dev/null || :
	atf_check -s exit:0 -o match:'_aa_' -e empty \
	    ${TEST_SH} -c 'echo _` echo a\` echo b > file \`a`_'
	atf_check -s exit:0 -o match:b -e empty ${TEST_SH} -c 'cat file'
	atf_check -s exit:0 -o match:'_aba_' -e empty \
	    ${TEST_SH} -c 'echo _` echo a\` cat < file \`a`_'
	atf_check -s exit:0 -o match:'_aa_' -e empty \
	    ${TEST_SH} -c 'echo _` echo a\` echo d >> file \`a`_'
	atf_check -s exit:0 -o inline:'b\nd\n' -e empty ${TEST_SH} -c 'cat file'
	atf_check -s exit:0 -o match:'_aa_' -e match:'not error' \
	    ${TEST_SH} -c 'echo _` echo a\` echo not error >&2 \`a`_'
}

atf_test_case h_vars_in_cmdsub
h_vars_in_cmdsub_head() {
	atf_set "descr" "Check that variables work in command substitutions"
}
h_vars_in_cmdsub_body() {
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo __$( echo ${X} )__'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo __$( echo "${X}" )__'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "__$( echo ${X} )__"'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "__$( echo "${X}" )__"'

	atf_check -s exit:0 -o inline:'a\n\nb\n\nc\n' -e empty \
	    ${TEST_SH} -c "for X in a '' b '' c"'; do echo $( echo "$X" ); done'

	atf_check -s exit:0 -o match:'__acd__' -e empty \
	    ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X-b}${Y-c}d)__"'
	atf_check -s exit:0 -o match:'__abcd__' -e empty \
	    ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X:-b}${Y:-c}d)__"'
	atf_check -s exit:0 -o match:'__XYX__' -e empty \
	    ${TEST_SH} -c 'X=X; echo "__${X}$( X=Y; echo ${X} )${X}__"'
	atf_check -s exit:0 -o match:'__def__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "__$(X=def; echo "${X}" )__"'
	atf_check -s exit:0 -o inline:'abcdef\nabc\n' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "$X$(X=def; echo ${X} )"; echo $X'
}

atf_test_case i_vars_in_backticks
i_vars_in_backticks_head() {
	atf_set "descr" "Checks that variables work in old style cmd sub"
}
i_vars_in_backticks_body() {
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo __` echo ${X} `__'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo __` echo "${X}" `__'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "__` echo ${X} `__"'
	atf_check -s exit:0 -o match:'__abc__' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "__` echo \"${X}\" `__"'

	atf_check -s exit:0 -o inline:'a\n\nb\n\nc\n' -e empty \
	    ${TEST_SH} -c "for X in a '' b '' c"'; do echo $( echo "$X" ); done'

	atf_check -s exit:0 -o match:'__acd__' -e empty \
	    ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X-b}${Y-c}d)__"'
	atf_check -s exit:0 -o match:'__abcd__' -e empty \
	    ${TEST_SH} -c 'X=; unset Y; echo "__$( echo a${X:-b}${Y:-c}d)__"'
	atf_check -s exit:0 -o match:'__XYX__' -e empty \
	    ${TEST_SH} -c 'X=X; echo "__${X}$( X=Y; echo ${X} )${X}__"'
	atf_check -s exit:0 -o inline:'abcdef\nabc\n' -e empty \
	    ${TEST_SH} -c 'X=abc; echo "$X`X=def; echo \"${X}\" `";echo $X'

	# The following is nonsense, so is not included ...
	# atf_check -s exit:0 -o match:'__abc__' -e empty \
	#                              oV             cV   oV   cV
	#    ${TEST_SH} -c 'X=abc; echo "__`X=def echo "${X}" `__"'
	#				   `start in " ^ " ends, ` not yet
}

atf_test_case j_cmdsub_in_varexpand
j_cmdsub_in_varexpand_head() {
	atf_set "descr" "Checks that command sub can be used in var expansion"
}
j_cmdsub_in_varexpand_body() {
	atf_check -s exit:0 -o match:'foo' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X+$(echo foo)}'
	atf_check -s exit:0 -o match:'set' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X-$(echo foo)}'
	rm -f bar 2>/dev/null || :
	atf_check -s exit:0 -o match:'set' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X-$(echo foo > bar)}'
	test -f bar && atf_fail "bar should not exist, but does"
	atf_check -s exit:0 -o inline:'\n' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X+$(echo foo > bar)}'
	test -f bar || atf_fail "bar should exist, but does not"
}

atf_test_case k_backticks_in_varexpand
k_backticks_in_varexpand_head() {
	atf_set "descr" "Checks that old style cmd sub works in var expansion"
}
k_backticks_in_varexpand_body() {
	atf_check -s exit:0 -o match:'foo' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X+`echo foo`}'
	atf_check -s exit:0 -o match:'set' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X-`echo foo`}'
	rm -f bar 2>/dev/null || :
	atf_check -s exit:0 -o match:'set' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X-`echo foo > bar`}'
	test -f bar && atf_fail "bar should not exist, but does"
	atf_check -s exit:0 -o inline:'\n' -e empty \
	    ${TEST_SH} -c 'X=set; echo ${X+`echo foo > bar`}'
	test -f bar || atf_fail "bar should exist, but does not"
}

atf_test_case l_arithmetic_in_cmdsub
l_arithmetic_in_cmdsub_head() {
	atf_set "descr" "Checks that arithmetic works in cmd substitutions"
}
l_arithmetic_in_cmdsub_body() {
	atf_check -s exit:0 -o inline:'1 + 1 = 2\n' -e empty \
	    ${TEST_SH} -c 'echo 1 + 1 = $( echo $(( 1 + 1 )) )'
	atf_check -s exit:0 -o inline:'X * Y = 6\n' -e empty \
	    ${TEST_SH} -c 'X=2; Y=3; echo X \* Y = $( echo $(( X * Y )) )'
	atf_check -s exit:0 -o inline:'Y % X = 1\n' -e empty \
	    ${TEST_SH} -c 'X=2; Y=3; echo Y % X = $( echo $(( $Y % $X )) )'
}

atf_test_case m_arithmetic_in_backticks
m_arithmetic_in_backticks_head() {
	atf_set "descr" "Checks that arithmetic works in old style cmd sub"
}
m_arithmetic_in_backticks_body() {
	atf_check -s exit:0 -o inline:'2 + 3 = 5\n' -e empty \
	    ${TEST_SH} -c 'echo 2 + 3 = ` echo $(( 2 + 3 )) `'
	atf_check -s exit:0 -o inline:'X * Y = 6\n' -e empty \
	    ${TEST_SH} -c 'X=2; Y=3; echo X \* Y = ` echo $(( X * Y )) `'
	atf_check -s exit:0 -o inline:'Y % X = 1\n' -e empty \
	    ${TEST_SH} -c 'X=2; Y=3; echo Y % X = ` echo $(( $Y % $X )) `'
}

atf_test_case n_cmdsub_in_arithmetic
n_cmdsub_in_arithmetic_head() {
	atf_set "descr" "Tests uses of command substitutions in arithmetic"
}
n_cmdsub_in_arithmetic_body() {
	atf_check -s exit:0 -o inline:'7\n' -e empty \
	    ${TEST_SH} -c 'echo $(( $( echo 3 ) $( echo + ) $( echo 4 ) ))'
	atf_check -s exit:0 -o inline:'11\n7\n18\n4\n1\n' -e empty \
	    ${TEST_SH} -c \
		 'for op in + - \* / %
		  do
		      echo $(( $( echo 9 ) $( echo "${op}" ) $( echo 2 ) ))
		  done'
}

atf_test_case o_backticks_in_arithmetic
o_backticks_in_arithmetic_head() {
	atf_set "descr" "Tests old style cmd sub used in arithmetic"
}
o_backticks_in_arithmetic_body() {
	atf_check -s exit:0 -o inline:'33\n' -e empty \
	    ${TEST_SH} -c 'echo $(( `echo 77` `echo -` `echo 44`))'
	atf_check -s exit:0 -o inline:'14\n8\n33\n3\n2\n' -e empty \
	    ${TEST_SH} -c \
		 'for op in + - \* / %
		  do
		      echo $((`echo 11``echo "${op}"``echo 3`))
		  done'
}

atf_test_case p_cmdsub_in_heredoc
p_cmdsub_in_heredoc_head() {
	atf_set "descr" "Checks that cmdsubs work inside a here document"
}
p_cmdsub_in_heredoc_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'line 1+1\nline 2\nline 3\n' -e empty \
	    ${TEST_SH} -c \
		'cat <<- EOF
			$( echo line 1 )$( echo +1 )
			$( echo line 2;echo line 3 )
		EOF'
}

atf_test_case q_backticks_in_heredoc
q_backticks_in_heredoc_head() {
	atf_set "descr" "Checks that old style cmdsubs work in here docs"
}
q_backticks_in_heredoc_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'Mary had a\nlittle\nlamb\n' -e empty \
	    ${TEST_SH} -c \
		'cat <<- EOF
			`echo Mary ` `echo had a `
			` echo little; echo lamb `
		EOF'
}

atf_test_case r_heredoc_in_cmdsub
r_heredoc_in_cmdsub_head() {
	atf_set "descr" "Checks that here docs work inside cmd subs"
}
r_heredoc_in_cmdsub_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'Mary had a\nlittle\nlamb\n' -e empty \
	    ${TEST_SH} -c 'echo "$( cat <<- \EOF
				Mary had a
				little
				lamb
			EOF
			)"'

	atf_check -s exit:0 -e empty \
	    -o inline:'Mary had 1\nlittle\nlamb\nMary had 4\nlittle\nlambs\n' \
	    ${TEST_SH} -c 'for N in 1 4; do echo "$( cat <<- EOF
				Mary had ${N}
				little
				lamb$( [ $N -gt 1 ] && echo s )
			EOF
			)"; done'


	atf_check -s exit:0 -o inline:'A Calculation:\n2 * 7 = 14\n' -e empty \
	    ${TEST_SH} -c 'echo "$( cat <<- EOF
				A Calculation:
					2 * 7 = $(( 2 * 7 ))
			EOF
			)"'
}

atf_test_case s_heredoc_in_backticks
s_heredoc_in_backticks_head() {
	atf_set "descr" "Checks that here docs work inside old style cmd subs"
}
s_heredoc_in_backticks_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'Mary had a little lamb\n' -e empty \
	    ${TEST_SH} -c 'echo ` cat <<- \EOF
				Mary had a
				little
				lamb
			EOF
			`'

	atf_check -s exit:0 -o inline:'A Calculation:\n17 / 3 = 5\n' -e empty \
	    ${TEST_SH} -c 'echo "` cat <<- EOF
				A Calculation:
					17 / 3 = $(( 17 / 3 ))
			EOF
			`"'
}

atf_test_case t_nested_cmdsubs_in_heredoc
t_nested_cmdsubs_in_heredoc_head() {
	atf_set "descr" "Checks nested command substitutions in here docs"
}
t_nested_cmdsubs_in_heredoc_body() {
	atf_require_prog cat
	atf_require_prog rm

	rm -f * 2>/dev/null || :
	echo "Hello" > File

	atf_check -s exit:0 -o inline:'Hello U\nHelp me!\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
		$(cat File) U
		$( V=$(cat File); echo "${V%lo}p" ) me!
		EOF'

	rm -f * 2>/dev/null || :
	echo V>V ; echo A>A; echo R>R
	echo Value>VAR

	atf_check -s exit:0 -o inline:'$2.50\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
	$(Value='\''$2.50'\'';eval echo $(eval $(cat V)$(cat A)$(cat R)=\'\''\$$(cat $(cat V)$(cat A)$(cat R))\'\''; eval echo \$$(set -- *;echo ${3}${1}${2})))
		EOF'
}

atf_test_case u_nested_backticks_in_heredoc
u_nested_backticks_in_heredoc_head() {
	atf_set "descr" "Checks nested old style cmd subs in here docs"
}
u_nested_backticks_in_heredoc_body() {
	atf_require_prog cat
	atf_require_prog rm

	rm -f * 2>/dev/null || :
	echo "Hello" > File

	atf_check -s exit:0 -o inline:'Hello U\nHelp me!\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
		`cat File` U
		`V=\`cat File\`; echo "${V%lo}p" ` me!
		EOF'

	rm -f * 2>/dev/null || :
	echo V>V ; echo A>A; echo R>R
	echo Value>VAR

	atf_check -s exit:0 -o inline:'$5.20\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
	`Value='\''$5.20'\'';eval echo \`eval \\\`cat V\\\`\\\`cat A\\\`\\\`cat R\\\`=\\\'\''\\\$\\\`cat \\\\\\\`cat V\\\\\\\`\\\\\\\`cat A\\\\\\\`\\\\\\\`cat R\\\\\\\`\\\`\\\'\''; eval echo \\\$\\\`set -- *;echo \\\\\${3}\\\\\${1}\\\\\${2}\\\`\``
		EOF'
}

atf_test_case v_cmdsub_paren_tests
v_cmdsub__paren_tests_head() {
	atf_set "descr" "tests with cmdsubs containing embedded ')'"
}
v_cmdsub_paren_tests_body() {

	# Tests from:
	#	http://www.in-ulm.de/~mascheck/various/cmd-subst/
	# (slightly modified.)

	atf_check -s exit:0 -o inline:'A.1\n' -e empty ${TEST_SH} -c \
		'echo $(
			case x in  x) echo A.1;; esac
		)'

	atf_check -s exit:0 -o inline:'A.2\n' -e empty ${TEST_SH} -c \
		'echo $(
			case x in  x) echo A.2;; esac # comment
		)'

	atf_check -s exit:0 -o inline:'A.3\n' -e empty ${TEST_SH} -c \
		'echo $(
			case x in (x) echo A.3;; esac
		)'

	atf_check -s exit:0 -o inline:'A.4\n' -e empty ${TEST_SH} -c \
		'echo $(
			case x in (x) echo A.4;; esac # comment
		)'

	atf_check -s exit:0 -o inline:'A.5\n' -e empty ${TEST_SH} -c \
		'echo $(
			case x in (x) echo A.5
			esac
		)'

	atf_check -s exit:0 -o inline:'B: quoted )\n' -e empty ${TEST_SH} -c \
		'echo $(
			echo '\''B: quoted )'\''
		)'

	atf_check -s exit:0 -o inline:'C: comment then closing paren\n' \
		-e empty ${TEST_SH} -c \
			'echo $(
				echo C: comment then closing paren # )
			)'

	atf_check -s exit:0 -o inline:'D.1: here-doc with )\n' \
		-e empty ${TEST_SH} -c \
			'echo $(
				cat <<-\eof
				D.1: here-doc with )
				eof
			)'

	# D.2 is a bogus test.

	atf_check -s exit:0 -o inline:'D.3: here-doc with \()\n' \
		-e empty ${TEST_SH} -c \
			'echo $(
				cat <<-\eof
				D.3: here-doc with \()
				eof
			)'

	atf_check -s exit:0 -e empty \
	  -o inline:'E: here-doc terminated with a parenthesis ("academic")\n' \
		${TEST_SH} -c \
		'echo $(
			cat <<-\)
			E: here-doc terminated with a parenthesis ("academic")
			)
		)'

	atf_check -s exit:0 -e empty \
-o inline:'F.1: here-doc embed with unbal single, back- or doublequote '\''\n' \
		${TEST_SH} -c \
		'echo $(
			cat <<-"eof"
		F.1: here-doc embed with unbal single, back- or doublequote '\''
			eof
		)'
	atf_check -s exit:0 -e empty \
 -o inline:'F.2: here-doc embed with unbal single, back- or doublequote "\n' \
		${TEST_SH} -c \
		'echo $(
			cat <<-"eof"
		F.2: here-doc embed with unbal single, back- or doublequote "
			eof
		)'
	atf_check -s exit:0 -e empty \
 -o inline:'F.3: here-doc embed with unbal single, back- or doublequote `\n' \
		${TEST_SH} -c \
		'echo $(
			cat <<-"eof"
		F.3: here-doc embed with unbal single, back- or doublequote `
			eof
		)'

	atf_check -s exit:0 -e empty -o inline:'G: backslash at end of line\n' \
		${TEST_SH} -c \
			'echo $(
				echo G: backslash at end of line # \
			)'

	atf_check -s exit:0 -e empty \
		-o inline:'H: empty command-substitution\n' \
		${TEST_SH} -c 'echo H: empty command-substitution $( )'
}

atf_test_case w_heredoc_outside_cmdsub
w_heredoc_outside_cmdsub_head() {
	atf_set "descr" "Checks that here docs work inside cmd subs"
}
w_heredoc_outside_cmdsub_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'Mary had a\nlittle\nlamb\n' -e empty \
	    ${TEST_SH} -c 'echo "$( cat <<- \EOF )"
				Mary had a
				little
				lamb
			EOF
			'

	atf_check -s exit:0 -e empty \
	    -o inline:'Mary had 1\nlittle\nlamb\nMary had 4\nlittle\nlambs\n' \
	    ${TEST_SH} -c 'for N in 1 4; do echo "$( cat <<- EOF )"
				Mary had ${N}
				little
				lamb$( [ $N -gt 1 ] && echo s )
			EOF
			done'


	atf_check -s exit:0 -o inline:'A Calculation:\n2 * 7 = 14\n' -e empty \
	    ${TEST_SH} -c 'echo "$( cat <<- EOF)"
				A Calculation:
					2 * 7 = $(( 2 * 7 ))
			EOF
			'
}

atf_test_case x_heredoc_outside_backticks
x_heredoc_outside_backticks_head() {
	atf_set "descr" "Checks that here docs work inside old style cmd subs"
}
x_heredoc_outside_backticks_body() {
	atf_require_prog cat

	atf_check -s exit:0 -o inline:'Mary had a little lamb\n' -e empty \
	    ${TEST_SH} -c 'echo ` cat <<- \EOF `
				Mary had a
				little
				lamb
			EOF
			'

	atf_check -s exit:0 -o inline:'A Calculation:\n17 / 3 = 5\n' -e empty \
	    ${TEST_SH} -c 'echo "` cat <<- EOF `"
				A Calculation:
					17 / 3 = $(( 17 / 3 ))
			EOF
			'
}

atf_test_case t_nested_cmdsubs_in_heredoc
t_nested_cmdsubs_in_heredoc_head() {
	atf_set "descr" "Checks nested command substitutions in here docs"
}
t_nested_cmdsubs_in_heredoc_body() {
	atf_require_prog cat
	atf_require_prog rm

	rm -f * 2>/dev/null || :
	echo "Hello" > File

	atf_check -s exit:0 -o inline:'Hello U\nHelp me!\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
		$(cat File) U
		$( V=$(cat File); echo "${V%lo}p" ) me!
		EOF'

	rm -f * 2>/dev/null || :
	echo V>V ; echo A>A; echo R>R
	echo Value>VAR

	atf_check -s exit:0 -o inline:'$2.50\n' -e empty \
	    ${TEST_SH} -c 'cat <<- EOF
	$(Value='\''$2.50'\'';eval echo $(eval $(cat V)$(cat A)$(cat R)=\'\''\$$(cat $(cat V)$(cat A)$(cat R))\'\''; eval echo \$$(set -- *;echo ${3}${1}${2})))
		EOF'
}

atf_test_case z_absurd_heredoc_cmdsub_combos
z_absurd_heredoc_cmdsub_combos_head() {
	atf_set "descr" "perverse and unusual cmd substitutions & more"
}
z_absurd_heredoc_cmdsub_combos_body() {

	echo "Help!" > help

	# This version works in NetBSD (& FreeBSD)'s sh (and most others)
	atf_check -s exit:0 -o inline:'Help!\nMe 2\n' -e empty ${TEST_SH} -c '
			cat <<- EOF
				$(
					cat <<- STOP
						$(
							cat `echo help`
						)
					STOP
				)
				$(
					cat <<- END 4<<-TRASH
						Me $(( 1 + 1 ))
					END
					This is unused noise!
					TRASH
				)
			EOF
		'

	# atf_expect_fail "PR bin/50993 - heredoc parsing done incorrectly"
	atf_check -s exit:0 -o inline:'Help!\nMe 2\n' -e empty ${TEST_SH} -c '
			cat <<- EOF
				$(
					cat << STOP
						$(
							cat `echo help`
						)
					STOP
				)
				$(
					cat <<- END 4<<TRASH
						Me $(( 1 + 1 ))
					END
					This is unused noise!
					TRASH
				)
			EOF
		'
}

atf_init_test_cases() {
	atf_add_test_case a_basic_cmdsub
	atf_add_test_case b_basic_backticks
	atf_add_test_case c_nested_cmdsub
	atf_add_test_case d_nested_backticks
	atf_add_test_case e_perverse_mixing
	atf_add_test_case f_redirect_in_cmdsub
	atf_add_test_case g_redirect_in_backticks
	atf_add_test_case h_vars_in_cmdsub
	atf_add_test_case i_vars_in_backticks
	atf_add_test_case j_cmdsub_in_varexpand
	atf_add_test_case k_backticks_in_varexpand
	atf_add_test_case l_arithmetic_in_cmdsub
	atf_add_test_case m_arithmetic_in_backticks
	atf_add_test_case n_cmdsub_in_arithmetic
	atf_add_test_case o_backticks_in_arithmetic
	atf_add_test_case p_cmdsub_in_heredoc
	atf_add_test_case q_backticks_in_heredoc
	atf_add_test_case r_heredoc_in_cmdsub
	atf_add_test_case s_heredoc_in_backticks
	atf_add_test_case t_nested_cmdsubs_in_heredoc
	atf_add_test_case u_nested_backticks_in_heredoc
	atf_add_test_case v_cmdsub_paren_tests
	atf_add_test_case w_heredoc_outside_cmdsub
	atf_add_test_case x_heredoc_outside_backticks
	atf_add_test_case z_absurd_heredoc_cmdsub_combos
}
OpenPOWER on IntegriCloud