-
Notifications
You must be signed in to change notification settings - Fork 48
/
test_config
executable file
·1317 lines (956 loc) · 39.9 KB
/
test_config
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
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if [[ -z "$1" ]]
then
echo "Must have a first parameter with the version (e.g. 0.5.4) not in quotes!"
exit 1
fi
command="java -jar target/zprint-filter-$1"
if [[ $2 != "uberjar" ]]
then
command="./zprintm-$1"
if [[ $2 != "graalvm-mac" ]]
then
command="./zprintl-$1"
if [[ $2 != "graalvm-linux" ]]
then
command="./zprint.clj"
if [[ $2 != "babashka" ]]
then
echo "Second argument must be uberjar or graalvm-mac or graalvm-linux or babashka!"
exit 1
fi
fi
fi
fi
#
# Output something to format
#
# These will be cleaned up later
#
echo "{:this :is :a :test :thix :is :only :a :test :foo :bar :baz}" > test_config.map.clj
echo "\"Hello World!\"" > test_config.string.clj
#
# Save ~/.zprintrc and ./.zprintrc
#
if [[ -f "$HOME/.zprintrc" ]]
then
echo "Saving ~/.zprintrc as ~/.zprintrc.save"
mv ~/.zprintrc ~/.zprintrc.save
fi
if [[ -f "./.zprintrc" ]]
then
echo "Saving ./.zprintrc ./.zprintrc.save"
mv ./.zprintrc ./.zprintrc.save
fi
if [[ -f "./.zprint.edn" ]]
then
echo "Saving ./.zprint.edn ./.zprint.edn.save"
mv ./.zprint.edn ./.zprint.edn.save
fi
echo "If you ^c out of this test, be sure and clean up ~/.zprintrc, ./.zprintrc and ./.zprint.edn!"
#
# Create new, narrow, ~/.zprintrc
# and color local ./.zprintrc
#
echo "{:width 40 :url {:cache-dir \"configurldir\" :cache-secs 9}}" > ~/.zprintrc
echo "{:color? true}" > ./.zprintrc
# Make a test config file
echo "{:color? true}" > test_config.edn
# Remove any previously cached url
rm -rf ~/.zprint/configurldir
# exit-status
tests_failed=0
###############################
#
# Start of Tests
#
#
# Set up for testing --url and --url-only
#
# Start a web-server
#python -m SimpleHTTPServer 8081 >/dev/null 2&>1 &
./bbfiles/http-server.bb -p 8081 >/dev/null 2&>1 &
# Let it come up
sleep 10
#
# Try --url
#
# It should do the map in 6 lines in color.
# 6 lines from ~/.zprintrc width 40
# color from config_test.edn
# 197 means 6 lines in color
# 71 means 6 lines w/out color
# 192 means 1 line w/color
#
echo "........... --url"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=197
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj | od -c
fi
#
# Remove file that is the target of --url, see if cache works
#
rm -rf test_config.edn
echo "........... --url, with URL missing, see if cache works"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=197
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
sleep 10
echo "........... --url, with URL missing, see if expired cache works"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=323
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
rm -rf ~/.zprint/configurldir
echo "........... --url, with URL missing, and no cache"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | grep ERROR | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=214
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
#
# The URL is there, but not a valid Clojure map
#
# Make a test config file that is not a Clojure map
echo "{:color? true" > test_config.edn
echo "........... --url, with URL not a valid Clojure map, and no cache"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | grep ERROR | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=226
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
#
# Valid Clojure map, but not valid zprint options map
#
echo "{:colorx? true}" > test_config.edn
echo "........... --url, with URL not a valid zprint options map, and no cache"
output_length=`$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | grep ERROR | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=396
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
#
# Fix URL file
#
echo "{:color? true}" > test_config.edn
echo "........... --url-only, with valid URL and no cache"
output_length=`$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | wc -c`
output_lines=`$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
output_lines=`echo "${output_lines}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
#echo "lines is $output_lines"
expected_length=192
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
expected_line_length=1
if [[ $output_lines != $expected_line_length ]]
then
echo "--url test failed to have correct count of lines, should be $expected_line_length, was: $output_lines"
$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
#
# URL file with fn included, should pass as of 1.1
#
# remove cache
rm -rf ~/.zprint/configurldir
# URL config file containing fn, which should now work since we use sci
echo "{:vector {:option-fn-first (fn [x y] {})}}" > test_config.edn
echo "........... --url-only, with valid URL, file w/fn, and no cache"
output_length=`$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=66
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--url with fn test failed to have correct count of characters, should be $expected_length, was: $output_length"
$command --url-only 'http://127.0.0.1:8081/test_config.edn' <test_config.map.clj
fi
#
# End of URL tests, kill webserver
#
{ kill %1 && wait %1; } 2>/dev/null
sleep 2
#
# Try basic config and see if that works.
#
echo "........... basic config test."
output_length=`$command <test_config.string.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=15
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "basic config test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command <test_config.string.clj
fi
#
# Set up for comment in zprintrc test
#
echo "{:width 40 :url {:cache-dir \"configurldir\" ;test
:cache-secs 9}}" > ~/.zprintrc
#
# Try basic config with a comment in .zprintrc
#
echo "........... basic config with comment in ~/.zprintrc test."
output_length=`$command <test_config.string.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=15
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "basic config with comment in zprintrc test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command <test_config.string.clj
fi
#
# put zprintrc back w/out a comment
#
echo "{:width 40 :url {:cache-dir \"configurldir\" :cache-secs 9}}" > ~/.zprintrc
# Make a local .zprintrc
echo "{:color? true}" > .zprintrc
#
# See if we can get {:cwd-zprintrc? true} to be recognized on the command line
#
echo "........... {:cwd-zprintrc? true} on command line test"
output_length=`$command '{:cwd-zprintrc? true}' <test_config.string.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=24
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "{:cwd-zprintrc? true} test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command '{:cwd-zprintrc? true}' <test_config.string.clj
fi
#
# See if we can get {:search-config? true} to be recognized on the command line
#
echo "........... {:search-config? true} on command line test"
output_length=`$command '{:search-config? true}' <test_config.string.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=24
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "{:search-config? true} test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command '{:search-config? true}' <test_config.string.clj
fi
#
# Is ~/.zprintrc being used at all?
#
echo "........... ~/.zprintrc being used test"
output_length=`$command <test_config.map.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=71
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "~/.zprintrc being used test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command <test_config.map.clj
fi
#
# Is .zprintrc being used at all?
#
# Use alternative (it is restored after this test)
echo "(def a :b) (def c :d)" > test_config.string.clj
# Make a local .zprintrc
echo "{:parse {:interpose \"\nxxx\n\"}}" > .zprintrc
# Set up a ~/.zprintrc where it will read the local .zprintrc
echo "{:search-config? true}" > ~/.zprintrc
echo "........... .zprintrc being used test"
output_length=`$command <test_config.string.clj 2>&1| grep "xxx" | wc -l`
char_length=`$command <test_config.string.clj 2>&1| grep "xxx" | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
char_length=`echo "${char_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
#echo "char count is $char_length"
expected_length=1
expected_chars=4
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo ".zprintrc being used test failed to have correct count of lines after grep for 'xxx' added by {:parse {:interpose ...}}, should be $expected_length, was: $output_length"
$command <test_config.string.clj
fi
if [[ $char_length != $expected_chars ]]
then
((tests_failed++))
echo ".zprintrc being used test failed to have correct count of chars after grep for 'xxx' added by {:parse {:interpose ...}}, should be $expected_chars, was: $char_length"
$command <test_config.string.clj
fi
# Restore test_config.string.clj
echo "\"Hello World!\"" > test_config.string.clj
# Restore ~/.zprintrc
echo "{:width 40 :url {:cache-dir \"configurldir\" :cache-secs 9}}" > ~/.zprintrc
# Remove .zprintrc
rm .zprintrc
#
# ~/.zprintrc should not be used now, since this is -d
#
echo "........... -d test -- ~/.zprintrc should not be used"
output_length=`$command -d <test_config.map.clj 2>&1 | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=66
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "-d test -- ~/.zprintrc should not be used test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command -d <test_config.map.clj
fi
#
# Try bad basic ~/.zprintrc
#
# This is not a valid Clojure map (missing last '}'")
#
echo "{:width 40 :url {:cache-dir \"configurldir\" :cache-secs 9}" > ~/.zprintrc
echo "........... bad ~/.zprintrc, invalid Clojure map test"
output_length=`$command <test_config.string.clj 2>&1| grep "EOF while reading" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "bad ~/.zprintrc (invalid Clojure map) test failed to have correct count of lines after grep for 'EOF while reading', should be $expected_length, was: $output_length"
$command <test_config.string.clj
fi
#
# Try another bad basic ~/.zprintrc
#
# This is a valid Clojure map, but not a valid zprint options map
#
echo "{:widthxxx 40 :url {:cache-dir \"configurldir\" :cache-secs 9}}" > ~/.zprintrc
echo "........... invalid zprint options map in ~/.zprintrc"
output_length=`$command <test_config.string.clj 2>&1| grep "the key :widthxxx was not recognized as valid" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "invalid zprint options map in ~/.zprintrc test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command <test_config.string.clj
fi
#
# Put back a reasonable ~/.zprintrc
#
echo "{:width 40 :url {:cache-dir \"configurldir\" :cache-secs 9}}" > ~/.zprintrc
#
# Test -v switch (version output)
#
echo "........... -v test"
zprint_version=`$command -v 2>&1 >/dev/null`
if [[ $zprint_version != "zprint-$1" ]]
then
((tests_failed++))
echo "-v test failed to have correct version, should be zprint-$1, was: $zprint-version"
$command -v
fi
#
# Test -h switch (help output)
#
# Of course, it needs to be fixed when we change the help output
#
echo "........... -h test"
output_length=`$command -h 2>&1 >/dev/null | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=69
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "-h test failed to have correct count of chars, should be $expected_length, was: $output_length"
$command -h
fi
#
# Test --explain-all switch (explain output)
#
# Of course, it needs to be fixed when we change the config options map
#
echo "........... --explain-all test"
output_length=`$command --explain-all 2>&1 >/dev/null | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1059
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--explain-all test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... --explain test"
output_length=`$command '{:color? false}' --explain 2>&1 >/dev/null | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=16
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "--explain test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command '{:color? false}' --explain
fi
#
# Test :coerce-to-false
#
#
# Configure some strange .zprintrc files to test coerce-to-false
#
echo "........... :coerce-to-false test"
echo "{:cwd-zprintrc? 1 :coerce-to-false 0 :parallel? \"junk\"}" > ~/.zprintrc
echo "{:parallel? :stuff :coerce-to-false :stuff :width 500}" > ./.zprintrc
output_length=`$command --explain-all 2>&1| grep :parallel? | grep ":value false" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo ":coerce-to-false test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
#
# Configure some strange .zprintrc files to test fns in zprintrc files
#
echo "........... fn using (fn ...) in ~/.zprintrc file test"
# ~/.zprintrc gets a fn
echo "{:vector {:option-fn-first (fn [x y] {})}}" > ~/.zprintrc
# no ./.zprintrc
rm -rf ./.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, we expect this to work in both uberjar and graalvm versions
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... fn using #(...) in ~/.zprintrc file test"
# ~/.zprintrc gets a fn
echo "{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" > ~/.zprintrc
# no ./.zprintrc
rm -rf ./.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, we expect this to work in both uberjar and graalvm versions
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... fn #(...) in .zprintrc, unused, no :cwd-zprintrc?/:search-config?"
# .zprintrc gets a fn
echo "{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
# no ~/.zprintrc
rm -rf ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=0
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
# .zprintrc gets a fn
echo "{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:search-config? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, we expect this to work in both uberjar and graalvm versions
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... fn #(...) in .zprintrc found since :cwd-zprintrc?"
# .zprintrc gets a fn
echo "{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:cwd-zprintrc? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, we expect this to work in both uberjar and graalvm versions
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... local .zprintrc file that does not parse found with :search-config?"
# .zprintrc gets a bad file
echo "{:vector :stuff {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:search-config? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep "Unable to read configuration from file" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... local .zprintrc file that does not parse found with :cwd-zprintrc?"
# .zprintrc gets a bad file
echo "{:vector :stuff {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:cwd-zprintrc? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep "Unable to read configuration from file" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... local .zprintrc file with bad data found with :search-config?"
# .zprintrc gets a bad file
echo "{:vectorxxx {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:search-config? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep "was not recognized as valid" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
echo "........... local .zprintrc file with bad data found with :cwd-zprintrc?"
# .zprintrc gets a bad file
echo "{:vectorxxx {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" >.zprintrc
echo "{:cwd-zprintrc? true}" > ~/.zprintrc
output_length=`$command --explain-all 2>&1| grep "was not recognized as valid" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn in ~/.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
#
# Configure some strange .zprintrc files to test fns in zprintrc files
#
echo "........... fn is valid in ./.zprintrc file test"
# ~/.zprintrc does not get a fn
echo "{:cwd-zprintrc? true :vector {:option-fn-first nil}}" > ~/.zprintrc
# ./.zprintrc gets a fn, which should pass as of 1.1
echo "{:vector {:option-fn-first (fn [x y] {})}}" > ./.zprintrc
output_length=`$command --explain-all 2>&1| grep -A 3 :option-fn-first | grep ":set-by" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn is valid in ./.zprintrc test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command --explain-all
fi
#
# Fns on the command line
#
echo "........... fn using (fn [x y] ...) on command line test"
# ~/.zprintrc gets a fn
echo "{:vector {:option-fn-first (fn [x y] {})}}" > ~/.zprintrc
# No ./.zprintrc
rm -rf ./.zprintrc
output_length=`$command '{:vector {:option-fn-first (fn [x y] {})}}' <test_config.string.clj 2>&1| grep "Hello World!" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, this should work for every version
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn on command line test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command '{:vector {:option-fn-first (fn [x y] {})}}' <test_config.string.clj
fi
echo "........... fn using #(...) on command line test"
# ~/.zprintrc gets a fn
echo "{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}" > ~/.zprintrc
# No ./.zprintrc
rm -rf ./.zprintrc
output_length=`$command '{:vector {:option-fn-first #(do (nil? %1) (nil? %2) {})}}' <test_config.string.clj 2>&1| grep "Hello World!" | wc -l`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "length is $output_length"
# As of 1.1, this should work for every version
expected_length=1
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "fn on command line test failed to have correct count of lines, should be $expected_length, was: $output_length"
$command '{:vector {:option-fn-first (fn [x y] {})}}' <test_config.string.clj
fi
#
# -w tests
#
# Put in a reasonable (and different than before) .zprintrc
echo "{:width 80}" > ~/.zprintrc
echo "........... -w test with one file"
cp test_config.map.clj test_config.map1.clj
$command -w test_config.map1.clj 2> test_config.stderr.out > test_config.stdout.out
output_length=`cat test_config.map1.clj test_config.stderr.out test_config.stdout.out | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "-w length is $output_length"
expected_length=66
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "-w test failed to have correct count of chars, should be 66, was: $output_length"
cat test_config.map1.clj test_config.stderr.out test_config.stdout.out
wc -c test_config.map1.clj test_config.stderr.out test_config.stdout.out
fi
rm test_config.stdout.out
rm test_config.stderr.out
rm test_config.map1.clj
#
# -w with multiple files
#
echo "........... -w test with two files"
cp test_config.map.clj test_config.map1.clj
cp test_config.map.clj test_config.map2.clj
$command -w test_config.map1.clj test_config.map2.clj 2> test_config.stderr.out > test_config.stdout.out
output_length=`cat test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "-w length is $output_length"
expected_length=132
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "-w test failed to have correct count of chars, should be $expected_length, was: $output_length"
cat test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out
wc -c test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out
fi
rm test_config.stdout.out
rm test_config.stderr.out
rm test_config.map1.clj
rm test_config.map2.clj
#
# -w with multiple files, one of which doesn't exist
#
echo "........... -w test with three files, one of which doesn't exist"
cp test_config.map.clj test_config.map1.clj
cp test_config.map.clj test_config.map2.clj
$command -w test_config.map1.clj test_config.missing.clj test_config.map2.clj 2> test_config.stderr.out > test_config.stdout.out
output_length=`cat test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out | wc -c`
output_length=`echo "${output_length}" | sed -e 's/^[[:space:]]*//'`
#echo "-w length is $output_length"
expected_length=268
if [[ $output_length != $expected_length ]]
then
((tests_failed++))
echo "-w test failed to have correct count of chars, should be $expected_length, was: $output_length"
cat test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out
wc -c test_config.map1.clj test_config.map2.clj test_config.stderr.out test_config.stdout.out
fi
rm test_config.stdout.out
rm test_config.stderr.out
rm test_config.map1.clj
rm test_config.map2.clj