-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashrep_test_code_joined_dashdefs.txt
More file actions
1733 lines (1632 loc) · 67.5 KB
/
Copy pathdashrep_test_code_joined_dashdefs.txt
File metadata and controls
1733 lines (1632 loc) · 67.5 KB
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
dashdef-copyright-notice:
All the code and text in this collection of Dashrep phrase definitions are (c) Copyright 2017 by the entity who owns the source code from which this object code was generated, and who is specified in a separate copyright statement within one of the following files within this collection. ALL RIGHTS RESERVED.
----
simple-xml-with-tags:
<begin>dolphin<end>
<begin>tail<end>
<begin>fin<end>
<begin>flippers<end>
----
web-page-begin-2-of-2:
tag-begin /head tag-end
new-line
tag-begin body tag-end
----
template-string-correct-value-for-hyphen:
correct hyphen-here value hyphen-here for hyphen-here
----
correct-value-for-list-of-unique-word-counts:
2 2 1 3 1 2 1 1
----
correct-value-for-test-of-comment-delimiters:
beginning text middle text ending text
----
string-123:
123
----
web-page-begin-1-of-2:
tag-begin html tag-end
tag-begin head tag-end
tag-begin title tag-end no-space
words-web-page-title
no-space tag-begin /title tag-end
----
correct-value-for-text-copied-uppercase:
ABC DEF 123
----
column-number:
5
----
correct-value-for-word-count-extra-space:
3
----
list-of-animal-types:
dolphin whale starfish octopus
----
correct-value-for-yes-if-file-size-non-zero:
yes
----
text-to-repeat:
number 9
----
grep-collect-operand-checks:
ambee if-no-begin ambee yes-or-no-empty-phrase action-name-for-getting-operand-checks amenn amenn
ambee copy-text operand-checks-for-action fenambee action-name-for-getting-operand-checks amenn operand-checks amenn
ambee append-text-no-space string-begin-operand-check operand-checks amenn
ambee append-text-no-space linewise-input-line-from-file operand-checks amenn
ambee append-text string-end-operand-check operand-checks amenn
ambee append-new-line operand-checks amenn
ambee copy-text operand-checks operand-checks-for-action fenambee action-name-for-getting-operand-checks amenn amenn
ambee if-end amenn
----
placeholder-value-of-phrase-name:
<placeholder_value_of_phrase_name>
----
string-got-here-end:
' ; <new_line>
----
correct-value-for-list-of-pointers-to-unique-words:
1 2 3 4 5 7 8 13
----
contains-angle-bracketed-phrase-names:
one<character_hyphen>two<character_hyphen>three <item_one>
----
list-of-files-to-find:
output_for_test_writing_to_file.txt
output_for_test_appending_to_file.txt
----
correct-value-for-should-be-length-0:
0
----
correct-value-for-yes-if-got-modification-time-of-file:
yes
----
display-values-not-ok:
Not all values are OK. (Errors!)
----
correct-value-for-should-be-multiple:
multiple
----
symbol-two-periods:
..
----
word-other:
other
----
correct-value-for-list-of-file-line-numbers:
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
----
correct-value-for-counts-from-5-to-minus-4:
5 4 3 2 1 0 -1 -2 -3 -4
----
dashrep-gather-tag-unique:
uniqueid
----
correct-value-for-pointers-to-end-of-tags:
7 19 27 36 44 52 60 73
----
format-begin-heading-level-1:
tag-begin h1 tag-end no-space
----
string-ok-colon:
OK:
----
correct-value-for-should-be-17:
17
----
correct-value-for-list-of-first-words-in-file:
entry_begin uniqueid datetime title description entry_end entry_end entry_begin uniqueid datetime title description entry_end entry_end dolphin octopus whale otter otter dolphin dolphin dolphin dolphin octopus octopus whale
----
text-containing-period:
abc.def.ghi
----
correct-value-for-should-be-size-one:
1
----
list-of-numbers:
3 12 7 13 4
----
grep-case-file-name-root-begins-with-template-runtime-code-for-action:
ambee put-into-phrase prefix-length-plus-one ambee numeric-add 1 ambee get-count-of-characters string-template-runtime-code-for-action amenn amenn amenn
ambee copy-characters-from-position-to-position file-name-root action-name ambee prefix-length-plus-one amenn 9999 amenn
----
grep-case-file-name-root-begins-with-template-function:
ambee put-into-phrase prefix-length-plus-one ambee numeric-add 1 ambee get-count-of-characters string-template-function amenn amenn amenn
ambee copy-characters-from-position-to-position file-name-root action-name ambee prefix-length-plus-one amenn 9999 amenn
----
vector-one:
17 23 -4
----
code-indirect-executable:
ambee put-into-phrase sample-count 234 amenn
ambee numeric-increment sample-count amenn
ambee numeric-increment sample-count amenn
sample-count
----
web-page-title:
No hyphen-here title no-space
----
tag-begin:
< no-space
----
grep-handle-one-line:
ambee put-into-phrase word-count-input-line ambee get-count-of-words linewise-input-line-from-file amenn amenn
ambee if-no-begin ambee yes-or-no-same-two-words 0 ambee word-count-input-line amenn amenn amenn
ambee copy-word-at-position linewise-input-line-from-file first-word 1 amenn
ambee if-else amenn
ambee clear-phrase first-word amenn
ambee if-end amenn
ambee if-yes-begin ambee yes-or-no-same-two-phrase-definitions first-word string-start-of-next-file-bracketed amenn amenn
ambee grep-at-file-name amenn
ambee if-else amenn
ambee grep-not-at-file-name amenn
ambee if-end amenn
combee
ambee append-text-no-space linewise-input-line-from-file revised-compiler-source-code amenn
ambee append-new-line revised-compiler-source-code amenn
comenn
----
placeholder-phrase-name:
<placeholder_phrase_name>
----
yes-or-no-use-two-spaces-as-column-delimiter:
no
----
correct-value-for-compare-numbers-less:
less
----
vector-two:
21 -9 0
----
test-counter:
17
----
correct-value-for-result-of-numeric-vectors-multiply:
-36 -742 0
----
text-begins-with-here-is:
here-is
----
text-for-multiple-find:
fish bird
----
correct-value-for-reversed-list:
octopus starfish whale dolphin
----
correct-value-for-copied-pattern-item-three:
starfish
----
correct-value-for-result-calculation-subtraction:
4
----
yes-or-no-permission-to-append-to-files:
yes
----
string-got-here-begin:
$global_action_name_with_underscores = '
----
correct-value-for-should-be-number-four:
4
----
correct-value-for-result-append-multiple:
dolphin octopus whale
----
first-word-phrase:
first_word
----
unused-correct-value-for-found-line-for-animal-combination:
dolphin octopus intersection of dolphin and octopus
----
prefix-text:
abc
----
string-three:
three
----
input-filename-for-cgi-information:
input_cgi_information.txt
----
test-of-space-and-line-directives:
Content-type: text/html
<new_line>
<new_line>
<html>
<new_line>
<head>
<new_line>
<title> no-space web-page-title no-space </title>
<new_line>
----
correct-value-for-calculation-result:
23
----
correct-value-for-result-of-testing-if-begin-actions:
one four six seven nine eleven
----
correct-value-for-result-before-listed-phrases-cleared:
123 123 123
----
template-html-to-display-in-browser:
Content-type: text/html<new_line>
<new_line>
<html> <new_line>
<head> <new_line>
<title>Response from test code</title> <new_line>
</head> <new_line>
<body> <new_line>
<h1>CGI information</h1> <new_line>
<ul> <new_line>
list-of-displayed-input-phrases
no-space
</ul> <new_line>
<h1> no-space displayed-text-ok-or-not-ok no-space </h1> <new_line>
<p>Phrases with wrong values: list-of-phrases-with-incorrect-values-version-html no-space </p> <new_line>
<p>Phrases with correct values: list-of-phrases-with-correct-values-version-html no-space </p> <new_line>
</body> <new_line>
</html> <new_line>
----
correct-value-for-pointers-to-multiple-matching-words:
1 4 11 14 16 19 26 29
----
template-date-time-full:
time-day-of-month
time-day-of-week
time-hour
time-minute
time-month-number
time-second
time-year
----
correct-value-for-specification-value-for-name-value-two:
some text here for value-two
----
correct-value-for-result-of-zero-or-nonzero:
nonzero
----
string-seven:
seven
----
correct-value-for-check-current-time-in-epoch-seconds:
greater
----
value-inserted-if-skip-level-ok:
ok
----
text-with-extra-spaces:
12 34 56 78 90
----
correct-value-for-specification-value-for-name-value_one:
some text here for value_one
----
correct-value-for-list-of-values-in-column-1:
uniqueid datetime title description uniqueid datetime title description dolphin octopus whale otter dolphin dolphin dolphin dolphin octopus octopus whale
----
list-of-decimal-numbers:
1.0 0.0 -4.2 9.666 -0.002 32.7 21.4 -7.7 42.5 0.100
----
html-list-item-begin:
<li>
----
correct-value-for-copied-pattern-item-two:
whale
----
template-display-value-is-not-correct:
ERROR: Value of phrase "<placeholder_phrase_name>" is "<placeholder_value_of_phrase_name>" but should be "<placeholder_correct_value_for_phrase_name>"
<new_line>
----
correct-value-for-list-ordered-pairwise-words-one:
dolphin dolphin dolphin whale whale starfish
----
correct-value-for-text-with-adjacent-spaces-replaced:
first_word second_word
----
character-equal-sign:
=
----
string-nine:
nine
----
string-sub:
sub
----
correct-value-for-results-of-two-dimensional-sort:
row-2-column-3 row-4-column-1 row-3-column-1 row-4-column-2 row-1-column-2 row-3-column-2 row-3-column-3 row-2-column-2 row-1-column-1 row-1-column-3 row-2-column-1
----
output-filename:
output_display_values_not_correct.txt
----
correct-value-for-should-be-length-1:
1
----
correct-value-for-list-of-counter-increment-decrement-values:
1 0 -1 0
----
input-right-values:
12 -3 6 23 15 9 22 17 2 -5 10
----
test-of-adjacent-parameter-values:
g7r[-row-number-]c[-column-number-]
----
string-words-inline-text:
inline text
----
grep-not-at-needed-operand-checks:
----
grep-case-file-name-root-begins-with-operand-checks-for-action:
ambee put-into-phrase prefix-length-plus-one ambee numeric-add 1 ambee get-count-of-characters string-operand-checks-for-action amenn amenn amenn
ambee copy-characters-from-position-to-position file-name-root action-name-for-getting-operand-checks ambee prefix-length-plus-one amenn 9999 amenn
----
correct-value-for-some-text-with-underscores:
here _ is _ some _ text _ with _ underscores
----
sample-word-list-two:
something-here alpha alpha-here beta delta whatever
----
phrase-to-delete-one:
123
----
text-with-tags-attributes-inside-tags:
and a <span style="whatever">dolphin</span>
----
test-expand-text-inline:
ambee copy-text string-words-inline-text copy-of-string-words-inline-text amenn
copy-of-string-words-inline-text
----
string-two:
two
----
middle-text:
ghi
----
correct-value-for-counts-from-0-to-7:
0 1 2 3 4 5 6 7
----
phrase-to-delete-two:
123
----
additional-test-of-dashrep-actions-not-currently-being-tested:
combee ****
ambee get-definitions-from-phrase amenn
ambee put-listed-phrase-definitions-into-phrase amenn
ambee copy-words-offset-skip list-of-numbers skipped-list-of-numbers 2 1 amenn
ambee ambee handle-double-nested-executable-phrase amenn amenn
**** comenn
----
dashrep-warning-trace-on-yes-or-no:
yes
----
string-template-function:
template-function-
----
string-twelve:
twelve
----
correct-value-for-result-calculation-even:
even
----
correct-value-for-should-be-item-with-value-7:
7
----
correct-value-for-result-of-numeric-logarithm-base-e:
1.25276296849537
----
correct-value-for-expanded-entire-standard-web-page:
<html> <head> <title>List of participants</title> </head> <body> <h1>List of participants</h1> <ul> <li>James (Conservative)</li> <li>Nicole (Bloc Québécois)</li> <li>Eduard (Liberal)</li> <li>Robert (New Democratic)</li> <li>Diane (Conservative)</li> </ul> </body> </html>
----
sample-word-list-one:
alpha alpha-here and beta gamma beta delta
----
suffix-text:
mno
----
text-with-tags-attributes-outside-of-tags:
<img /><attribute href="image.jpg"><attribute alt="image">
----
check-dashrep-recognized-phrase-names-in-documentation:
ambee copy-from-file-to-phrase specifications_phrase_categories_and_names.txt documented-phrase-names amenn
ambee copy-words-that-begin-with-text documented-phrase-names category-words string-category-underscore amenn
ambee copy-words-found-only-in-first-list documented-phrase-names category-words documented-phrase-names amenn
ambee expand-text template-spoken-words-split-to-avoid-replacement-here spoken-words amenn
ambee copy-words-found-only-in-first-list documented-phrase-names spoken-words documented-phrase-names amenn
ambee copy-words-found-only-in-first-list documented-phrase-names dashrep-list-of-recognized-phrase-names list-of-phrase-names-documented-minus-recognized amenn
ambee copy-words-found-only-in-first-list dashrep-list-of-recognized-phrase-names documented-phrase-names list-of-phrase-names-recognized-minus-documented amenn
ambee copy-words-found-only-in-first-list list-of-phrase-names-documented-minus-recognized list-containing-only-phrase-name-list-of-phrases-newly-defined list-of-phrase-names-documented-minus-recognized amenn
ambee copy-words-found-only-in-first-list list-of-phrase-names-recognized-minus-documented list-containing-only-phrase-name-list-of-phrases-newly-defined list-of-phrase-names-recognized-minus-documented amenn
ambee copy-text list-of-phrase-names-documented-minus-recognized list-of-phrase-names-difference amenn
ambee append-text character-period list-of-phrase-names-difference amenn
ambee append-text character-period list-of-phrase-names-difference amenn
ambee append-text list-of-phrase-names-recognized-minus-documented list-of-phrase-names-difference amenn
ambee copy-without-extra-spaces list-of-phrase-names-difference list-of-phrase-names-difference amenn
----
correct-value-for-specification-value-for-name-valuethree:
some text here for value three
----
correct-value-for-sample-word-list-two:
" something-here alpha alpha-here beta delta whatever<new_line> "
----
correct-value-for-should-be-size-three:
3
----
correct-value-for-result-yes-or-no-file-write-read-successful:
yes
----
html-list-item-end:
</li>
----
page-participants-list:
ambee put-into-phrase list-of-parameter-values-for-list-named-participant-names-full ambee case-info-idlistparticipants amenn amenn
ambee use-handler-with-each-word-in-phrase handle-one-named-participant list-of-parameter-values-for-list-named-participant-names-full amenn
ambee numeric-increment test-counter amenn
format-begin-heading-level-1
words-web-page-title
format-end-heading-level-1
tag-begin ul tag-end
generated-list-named-participant-names-full
tag-begin /ul tag-end
----
text-for-multiple-search:
birds songbird fish clownfish
----
template-spoken-words-split-to-avoid-replacement-here:
dash no-space bee dash no-space enn dash no-space nex am no-space bee am no-space enn com no-space bee com no-space enn fe no-space n fenam no-space bee am no-space ennfen lin no-space bray
----
string-template-runtime-code-for-action:
template-runtime-code-for-action-
----
correct-value-for-result-of-numeric-vectors-divide-by:
0 -9 1000000
----
todo-correct-value-for-skipped-list-of-numbers:
???
----
participant-fullname-for-participantid-12:
Nicole (Bloc Québécois)
----
correct-value-for-list-from-rearranged-numeric:
one three five seven twelve
----
correct-value-for-input-cgi-value-two:
abc xyz
----
correct-value-for-alpha-something-row-column:
alphabeta5
----
test-assignment:
17
----
entire-standard-web-page:
web-page-begin-1-of-2
web-page-begin-2-of-2
ambee page-participants-list amenn
web-page-end
----
correct-value-for-result-contents-from-file-renamed:
dolphin whale starfish octopus
----
string-word-hyphens:
hyphens
----
string-start-of-next-file-bracketed:
<START_OF_NEXT_FILE>
----
correct-value-for-list-of-repeated-text:
number 9 number 9 number 9 number 9 number 9 number 9 number 9 number 9 number 9
----
correct-value-for-word-list-in-first-only:
alpha beta beta alpha beta
----
correct-value-for-expanded-test-of-dashrep-actions:
text-that-occurs-before-parameter-phrases text-that-occurs-within-parameter-phrases inline text text-that-occurs-after-parameter-phrases
----
test-of-insert-codeview-tags:
ambee copy-text text-being-codified dashrep-code-with-inserted-codeview-tags amenn
ambee insert-codeview-tags dashrep-code-with-inserted-codeview-tags amenn
----
correct-value-for-text-with-tag-and-attribute:
<p style="xyz">... and a < span style="whatever" >wet< / span > dolphin ...<br />...</p>
----
correct-value-for-alphabetically-sorted-animal-types:
dolphin octopus starfish whale
----
words-preface-to-list-of-correct-values:
List of phrases correctly calculated:
----
input-up-values:
8 -9 4 2 18 3 11 9 12 6 7
----
two-dimensional-sort:
ambee numeric-two-dimensional-sort-into-columns-and-rows 3 input-right-values input-up-values results-of-two-dimensional-sort amenn
----
list-of-numbers-matching-number-words-by-name:
7 1 5 3 12
----
item-one:
waltz
----
code-indirect:
code-indirect-executable
----
correct-value-for-should-be-counts-3-and-minus-2:
3 -2
----
correct-value-for-result-of-numeric-vector-absolutes:
1 82 3
----
correct-value-for-result-list-of-expected-folders-found:
compiler_source
test_dashrep_code
----
string-abc:
abc
----
correct-value-for-result-yes-or-no-folder-exists:
no
----
start-here:
*--- todo: use dashrep code already written, but using line-by-line handling ---*
ambee delete-file ambee output-filename amenn amenn
ambee clear-phrase list-of-displayed-input-phrases amenn
ambee test-getting-of-cgi-information amenn
ambee expand-text test-of-dashrep-actions expanded-test-of-dashrep-actions amenn
ambee test-file-related-dashrep-actions amenn
ambee test-get-specifications-from-phrase amenn
ambee put-into-phrase result-of-testing-of-adjacent-parameter-values ambee test-of-adjacent-parameter-values amenn amenn
ambee do-check-for-correct-values amenn
ambee copy-and-replace list-of-phrases-with-incorrect-values list-of-phrases-with-incorrect-values-version-html character-hyphen html-entity-hyphen amenn
ambee copy-and-replace list-of-phrases-with-correct-values list-of-phrases-with-correct-values-version-html character-hyphen html-entity-hyphen amenn
ambee if-yes-begin ambee yes-or-no-empty-phrase full-display-values-not-correct amenn amenn
ambee copy-from-phrase-append-to-file display-values-all-ok ambee output-filename amenn amenn
ambee copy-text display-values-all-ok displayed-text-ok-or-not-ok amenn
ambee if-else amenn
ambee copy-from-phrase-append-to-file display-values-not-ok ambee output-filename amenn amenn
ambee copy-from-phrase-append-to-file character-newline ambee output-filename amenn amenn
ambee copy-from-phrase-append-to-file full-display-values-not-correct ambee output-filename amenn amenn
ambee copy-text display-values-not-ok displayed-text-ok-or-not-ok amenn
ambee if-end amenn
ambee copy-from-phrase-append-to-file character-newline ambee output-filename amenn amenn
ambee copy-from-phrase-append-to-file words-preface-to-list-of-correct-values ambee output-filename amenn amenn
ambee copy-from-phrase-append-to-file list-of-phrases-with-correct-values ambee output-filename amenn amenn
ambee expand-text template-html-to-display-in-browser standard-output amenn
----
test-of-dashrep-actions:
text-that-occurs-before-parameter-phrases
ambee put-into-phrase test-assignment 17 amenn
text-that-occurs-within-parameter-phrases
ambee put-into-phrase should-be-17 ambee test-assignment amenn amenn
ambee copy-text empty-text copied-text amenn
ambee append-text first-word-phrase copied-text amenn
ambee append-text second-word-phrase copied-text amenn
ambee copy-text copied-text should-be-copied-text amenn
ambee copy-text character-space multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space first-word-phrase multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space character-tab multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space character-newline multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space second-word-phrase multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space character-newline multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space character-tab multiple-words-separated-by-whitespace-multiple-types amenn
ambee append-text-no-space character-space multiple-words-separated-by-whitespace-multiple-types amenn
ambee copy-without-extra-spaces multiple-words-separated-by-whitespace-multiple-types text-with-adjacent-spaces-replaced amenn
ambee put-into-phrase should-be-zero ambee zero-one-multiple 0 amenn amenn
ambee put-into-phrase should-be-one ambee zero-one-multiple 1 amenn amenn
ambee put-into-phrase should-be-multiple ambee zero-one-multiple 2 amenn amenn
ambee put-into-phrase should-be-size-zero ambee get-count-of-words empty-text amenn amenn
ambee put-into-phrase should-be-size-one ambee get-count-of-words should-be-17 amenn amenn
ambee put-into-phrase list-of-size-three 4 5 6 amenn
ambee put-into-phrase should-be-size-three ambee get-count-of-words list-of-size-three amenn amenn
ambee put-into-phrase should-be-number-three ambee get-word-at-position list-of-numbers 1 amenn amenn
ambee put-into-phrase should-be-number-four ambee get-word-at-position list-of-numbers 999 amenn amenn
ambee put-into-phrase should-be-same-words-yes ambee yes-or-no-same-two-words waltz waltz amenn amenn
ambee put-into-phrase should-be-same-words-no ambee yes-or-no-same-two-words waltz dance amenn amenn
ambee put-into-phrase item-one waltz amenn
ambee put-into-phrase item-two dance amenn
ambee put-into-phrase should-be-same-yes ambee yes-or-no-same-two-phrase-definitions item-one item-one amenn amenn
ambee put-into-phrase should-be-same-no ambee yes-or-no-same-two-phrase-definitions item-one item-two amenn amenn
ambee put-into-phrase test-counter 17 amenn
ambee put-into-phrase test-value 3 amenn
ambee put-into-phrase compare-numbers-equal ambee numeric-equal-greater-less-compare 16 16 amenn amenn
ambee put-into-phrase compare-numbers-less ambee numeric-equal-greater-less-compare 18 19 amenn amenn
ambee put-into-phrase compare-numbers-greater ambee numeric-equal-greater-less-compare 21 20 amenn amenn
ambee put-into-phrase result-calculation-subtraction ambee numeric-minus 7 3 amenn amenn
ambee put-into-phrase result-calculation-absolute ambee numeric-absolute -6 amenn amenn
ambee put-into-phrase result-calculation-integer ambee numeric-integer 7.3 amenn amenn
ambee put-into-phrase result-calculation-division ambee numeric-divide-by 7 3 amenn amenn
ambee copy-characters-from-position-to-position result-calculation-division result-calculation-division 1 6 amenn
ambee put-into-phrase result-calculation-sine ambee numeric-sine 0.5 amenn amenn
ambee copy-characters-from-position-to-position result-calculation-sine result-calculation-sine 1 6 amenn
ambee put-into-phrase result-calculation-cosine ambee numeric-cosine 0.5 amenn amenn
ambee copy-characters-from-position-to-position result-calculation-cosine result-calculation-cosine 1 6 amenn
ambee put-into-phrase result-calculation-odd ambee numeric-odd-or-even 3 amenn amenn
ambee put-into-phrase result-calculation-even ambee numeric-odd-or-even 4 amenn amenn
ambee copy-text empty-text test-text-length-0 amenn
ambee put-into-phrase should-be-length-0 ambee get-count-of-characters test-text-length-0 amenn amenn
ambee put-into-phrase test-text-length-1 a amenn
ambee put-into-phrase should-be-length-1 ambee get-count-of-characters test-text-length-1 amenn amenn
ambee put-into-phrase test-text-length-7 abcdefg amenn
ambee put-into-phrase should-be-length-7 ambee get-count-of-characters test-text-length-7 amenn amenn
ambee put-into-phrase should-be-item-with-value-7 ambee get-word-at-position list-of-numbers 3 amenn amenn
ambee generate-counts-from-integer-to-integer 0 7 counts-from-0-to-7 amenn
ambee copy-and-replace some-text-with-hyphens some-text-with-underscores character-hyphen character-underscore amenn
ambee copy-and-replace some-text-with-underscores some-text-with-underscores string-word-hyphens string-word-underscores amenn
ambee clear-phrase counter-increment-decrement amenn
ambee numeric-increment counter-increment-decrement amenn
ambee append-text counter-increment-decrement list-of-counter-increment-decrement-values amenn
ambee numeric-decrement counter-increment-decrement amenn
ambee append-text counter-increment-decrement list-of-counter-increment-decrement-values amenn
ambee numeric-decrement counter-increment-decrement amenn
ambee append-text counter-increment-decrement list-of-counter-increment-decrement-values amenn
ambee numeric-increment counter-increment-decrement amenn
ambee append-text counter-increment-decrement list-of-counter-increment-decrement-values amenn
ambee generate-counts-from-integer-to-integer 5 -4 counts-from-5-to-minus-4 amenn
ambee put-into-phrase minimum-maximum-result ambee numeric-minimum 2 8 amenn ambee numeric-maximum 2 8 amenn ambee numeric-minimum 3 amenn ambee numeric-maximum 4 amenn amenn
ambee generate-every-pairwise-combination-of-words counts-from-0-to-7 counts-from-5-to-minus-4 list-of-first-items-in-two-dimensions list-of-second-items-in-two-dimensions amenn
ambee put-into-phrase should-be-counts-3-and-minus-2 ambee get-word-at-position list-of-first-items-in-two-dimensions 38 amenn ambee get-word-at-position list-of-second-items-in-two-dimensions 38 amenn amenn
ambee put-into-phrase calculation-result ambee numeric-integer ambee numeric-multiply 3.14 7.39 amenn amenn amenn
ambee put-into-phrase compare-result ambee numeric-equal-greater-less-compare 23 17 amenn ambee numeric-equal-greater-less-compare 17 17 amenn ambee numeric-equal-greater-less-compare 17 23 amenn amenn
ambee put-into-phrase character-result ambee get-characters-from-position-to-position string-to-test-character-actions 1 1 -][-get-characters-from-position-to-position string-to-test-character-actions 2 2 -][-get-characters-from-position-to-position string-to-test-character-actions 4 4 -][-get-characters-from-position-to-position string-to-test-character-actions 5 5 -][-get-characters-from-position-to-position string-to-test-character-actions 20 20 -][-get-characters-from-position-to-position string-to-test-character-actions 21 21 amenn amenn
ambee copy-words-from-position-to-position sample-word-list should-be-beta-gamma 2 3 amenn
ambee put-into-phrase word-list-result ambee get-position-of-word word-alpha sample-word-list-]-[-get-position-of-word word-gamma sample-word-list-]-[-get-position-of-word word-other sample-word-list amenn amenn
ambee clear-phrase list-of-prepended-items amenn
ambee prepend-text word-other list-of-prepended-items amenn
ambee prepend-text word-gamma list-of-prepended-items amenn
ambee prepend-text word-alpha list-of-prepended-items amenn
ambee prepend-text-no-space character-space sample-word-list-one amenn
ambee append-new-line sample-word-list-one amenn
ambee append-text-no-space character-space sample-word-list-one amenn
ambee copy-and-replace correct-value-for-sample-word-list-one correct-value-for-sample-word-list-one character-double-quote empty-text amenn
ambee copy-and-replace correct-value-for-sample-word-list-one correct-value-for-sample-word-list-one placeholder-new-line character-newline amenn
ambee prepend-text-no-space character-space sample-word-list-two amenn
ambee append-new-line sample-word-list-two amenn
ambee append-text-no-space character-space sample-word-list-two amenn
ambee copy-and-replace correct-value-for-sample-word-list-two correct-value-for-sample-word-list-two character-double-quote empty-text amenn
ambee copy-and-replace correct-value-for-sample-word-list-two correct-value-for-sample-word-list-two placeholder-new-line character-newline amenn
ambee prepend-text-no-space character-space sample-word-list-three amenn
ambee append-new-line sample-word-list-three amenn
ambee append-text-no-space character-space sample-word-list-three amenn
ambee copy-and-replace correct-value-for-sample-word-list-three correct-value-for-sample-word-list-three character-double-quote empty-text amenn
ambee copy-and-replace correct-value-for-sample-word-list-three correct-value-for-sample-word-list-three placeholder-new-line character-newline amenn
ambee copy-text sample-word-list-one list-with-dups amenn
ambee append-text sample-word-list-two list-with-dups amenn
ambee copy-without-extra-spaces list-with-dups list-with-dups-without-extra-spaces amenn
ambee copy-words-found-in-both-lists sample-word-list-one sample-word-list-two word-list-in-both amenn
ambee copy-words-found-in-either-list sample-word-list-one sample-word-list-two word-list-in-either amenn
ambee copy-words-found-only-in-first-list list-with-dups sample-word-list-three word-list-in-first-only amenn
ambee copy-words-unique-only list-with-dups unique-words amenn
ambee copy-without-extra-spaces find-in-lists-result find-in-lists-result amenn
ambee expand-text contains-angle-bracketed-phrase-names expanded-contains-angle-bracketed-phrase-names amenn
ambee copy-zero-pad-left-to-length string-123 string-123-padded 5 amenn
ambee numeric-vector-add-number vector-one -7 vector-result-add-number amenn
ambee numeric-vector-multiply-by-number vector-one 7 vector-result-multiply-by-number amenn
ambee numeric-vectors-add vector-one vector-two vector-result-addition amenn
ambee numeric-vectors-from-delta-values-calculate-distances vector-one vector-two vector-result-distances amenn
ambee numeric-vectors-multiply vector-decimals-and-negatives vector-two result-of-numeric-vectors-multiply amenn
ambee numeric-vectors-divide-by vector-decimals-and-negatives vector-two result-of-numeric-vectors-divide-by amenn
ambee numeric-vector-integers vector-decimals-and-negatives result-of-numeric-vector-integers amenn
ambee numeric-vector-absolutes vector-decimals-and-negatives result-of-numeric-vector-absolutes amenn
ambee append-repeatedly-using-count text-to-repeat list-of-repeated-text 9 amenn
ambee copy-and-remove-attributes-from-xml-tags text-with-tag-and-attribute text-with-tag amenn
ambee copy-words-that-begin-with-text list-of-words-to-search-based-on-prefix list-of-words-that-begin-with-text text-begins-with-here-is amenn
ambee copy-words-that-contain-listed-words list-of-words-to-search-based-on-prefix list-of-words-that-contain-listed-words text-contains amenn
ambee copy-words-that-begin-with-listed-words list-of-words-to-search-based-on-prefix list-of-words-that-begin-with-listed-words text-begins-with amenn
ambee generate-positions-of-listed-words text-for-multiple-find text-for-multiple-search pointers-to-multiple-matching-words amenn
ambee copy-and-replace-using-paired-listed-words text-for-multiple-search results-replacements-using-paired-words paired-words-for-replacements amenn
ambee copy-text character-space text-to-append-with-leading-and-trailing-space amenn
ambee append-text-no-space string-abc text-to-append-with-leading-and-trailing-space amenn
ambee append-text-no-space character-space text-to-append-with-leading-and-trailing-space amenn
ambee copy-text text-to-append-with-leading-and-trailing-space text-after-double-appending amenn
ambee append-text-no-space text-to-append-with-leading-and-trailing-space text-after-double-appending amenn
ambee put-into-phrase results-position-of-matching-text ambee get-position-of-matching-text character-period text-containing-period amenn amenn
ambee convert-unicode-to-html-entities text-with-unicode-characters results-with-unicode-converted-to-html-entities amenn
ambee clear-phrase correct-value-for-results-with-unicode-converted-to-html-entities amenn
ambee append-text-no-space character-space words-with-space-at-end amenn
ambee put-into-phrase word-count ambee get-count-of-words words-with-space-at-end amenn amenn
ambee copy-text words-with-space-at-end words-with-spaces-at-end amenn
ambee append-text-no-space character-space words-with-spaces-at-end amenn
ambee put-into-phrase word-count-extra-space ambee get-count-of-words words-with-spaces-at-end amenn amenn
ambee copy-and-replace text-with-periods text-with-spaces character-period character-space amenn
ambee copy-text text-being-copied text-copied amenn
ambee copy-lowercase-only text-being-copied text-copied-lowercase amenn
ambee copy-uppercase-only text-being-copied text-copied-uppercase amenn
ambee copy-words-from-position-to-position text-being-copied text-copied-without-first-word 2 999 amenn
ambee copy-words-from-position-to-position text-being-copied text-copied-without-last-word 1 2 amenn
ambee copy-words-sort-numeric list-of-integers-positive-and-negative result-integers-positive-sorted amenn
ambee two-dimensional-sort amenn
ambee test-if-begin-actions amenn
ambee test-yes-no-checks amenn
ambee expand-text entire-standard-web-page expanded-entire-standard-web-page amenn
ambee copy-without-extra-spaces expanded-entire-standard-web-page expanded-entire-standard-web-page amenn
*--- correct value for above is specified below as separate phrase ---*
ambee expand-text test-expand-text-inline result-of-test-expand-text-inline amenn
result-of-test-expand-text-inline
ambee expand-text ambee contains-name-test-skip-level-executable-phrase amenn unused-result-of-test-skip-level amenn
ambee expand-text ambee get-phrase-name-from-phrase code-indirect amenn expanded-code-indirect amenn
ambee put-into-phrase alpha-something-row-column alpha[-something-about-row-[-row-number-]-][-column-number-] amenn
ambee copy-initial-caps list-of-animal-types initial-caps-list-of-animal-types amenn
ambee copy-words-order-reversed list-of-animal-types reversed-list amenn
ambee copy-word-at-position list-of-animal-types single-animal-type 2 amenn
ambee copy-words-sort-alphabetic list-of-animal-types alphabetically-sorted-animal-types amenn
ambee generate-every-ordered-pairwise-combination-of-words list-of-animal-types list-ordered-pairwise-words-one list-ordered-pairwise-words-two amenn
ambee copy-words-rearrange-using-order-sort-numeric list-of-number-words-by-name list-from-rearranged-numeric list-of-numbers-matching-number-words-by-name amenn
ambee copy-words-rearrange-using-order-sort-alphabetic list-of-person-names-first-underscore-last list-from-rearranged-alphabetic list-of-person-names-lowercase-last-underscore-first amenn
ambee put-into-phrase result-of-zero-or-nonzero ambee zero-or-nonzero 0 amenn amenn
ambee put-into-phrase result-of-zero-or-nonzero ambee zero-or-nonzero 23 amenn amenn
ambee expand-text list-of-phrases-to-clear result-before-listed-phrases-cleared amenn
ambee clear-listed-phrases list-of-phrases-to-clear amenn
ambee expand-text list-of-phrases-to-clear result-after-listed-phrases-cleared amenn
ambee copy-without-extra-spaces result-after-listed-phrases-cleared result-after-listed-phrases-cleared amenn
ambee clear-phrase correct-value-for-result-after-listed-phrases-cleared amenn
ambee expand-text list-of-phrases-to-delete result-before-listed-phrases-deleted amenn
ambee delete-listed-phrases list-of-phrases-to-delete amenn
ambee expand-text list-of-phrases-to-delete result-after-listed-phrases-deleted amenn
ambee copy-without-extra-spaces result-after-listed-phrases-deleted result-after-listed-phrases-deleted amenn
ambee copy-text list-of-phrases-to-delete correct-value-for-result-after-listed-phrases-deleted amenn
ambee put-into-phrase result-of-numeric-add ambee numeric-add 3.5 2.7 amenn amenn
ambee put-into-phrase result-of-numeric-logarithm-base-e ambee numeric-logarithm-base-e 3.5 amenn amenn
ambee put-into-phrase result-of-numeric-logarithm-base-10 ambee numeric-logarithm-base-10 3.5 amenn amenn
ambee put-into-phrase current-time-in-epoch-seconds ambee get-current-time-in-epoch-seconds amenn amenn
ambee put-into-phrase check-current-time-in-epoch-seconds ambee numeric-equal-greater-less-compare ambee current-time-in-epoch-seconds amenn 1498700000 amenn amenn
ambee split-epoch-seconds-into-named-components-for-zero-meridian ambee epoch-seconds-frozen-in-time amenn amenn
ambee expand-text template-date-time-full expanded-date-time-frozen-zero-meridian amenn
ambee split-epoch-seconds-into-named-components ambee epoch-seconds-frozen-in-time amenn amenn
ambee expand-text template-date-time-full expanded-date-time-frozen amenn
ambee copy-words-from-position-to-position expanded-date-time-frozen expanded-date-time-frozen-adjusted 4 7 amenn
ambee copy-words-from-position-to-position list-of-numbers-as-text short-list-of-numbers-as-text 1 4 amenn
ambee copy-listed-words-to-phrases-named-in-pattern list-of-animal-types pattern-for-copied-items amenn
ambee copy-words-from-position-to-position list-of-numbers-as-text shorter-list-of-numbers-as-text 1 3 amenn
ambee append-multiple-from-phrases-named-in-pattern pattern-for-appended-items result-append-multiple amenn
ambee copy-without-extra-spaces result-append-multiple result-append-multiple amenn
ambee generate-positions-of-delimiter character-open-angle-bracket simple-xml-with-tags pointers-to-beginning-of-tags amenn
ambee generate-positions-of-first-matching-delimiter-after-listed-positions character-close-angle-bracket simple-xml-with-tags pointers-to-beginning-of-tags pointers-to-end-of-tags amenn
ambee copy-and-remove-attributes-from-xml-tags text-with-tags-attributes-inside-tags result-text-after-remove-attributes-from-tags amenn
ambee copy-and-move-attributes-into-xml-tags text-with-tags-attributes-outside-of-tags result-text-after-move-attributes-inside-tags amenn
ambee put-into-phrase result-numeric-y-map-tile-number ambee numeric-y-map-tile-number-based-on-latitude 45.00 amenn amenn
ambee encode-as-cgi-parameter text-with-tags-attributes-inside-tags encoded-cgi-parameter amenn
ambee decode-from-cgi-parameter encoded-cgi-parameter result-decoded-cgi-parameter amenn
text-that-occurs-after-parameter-phrases
----
correct-value-for-compare-result:
greater equal less
----
participant-fullname-for-participantid-3:
James (Conservative)
----
correct-value-for-list-of-words-that-begin-with-listed-words:
and-something-else
----
list-of-person-names-first-underscore-last:
Nikola_Tesla Abe_Lincoln Thomas_Jefferson Paul_MacCready
----
string-end-operand-check:
**** com_enn
----
string-word-underscores:
underscores
----
yes-or-no-indicate-line-endings:
no
----
test-skip-level-executable-phrase:
ambee put-into-phrase value-inserted-if-skip-level-ok ok amenn
----
dashrep-special-replacement-hyphen:
–
----
yes-or-no-allow-user-defined-actions:
yes
----
dashrep-gather-tag-matching-id:
----
text-contains:
is
----
handle-one-check-for-correct-value:
ambee copy-text word-to-use-in-handler phrase-name amenn
combee
ambee trace-show phrase-name amenn
comenn
ambee put-into-phrase yes-or-no-value-is-correct ambee yes-or-no-same-two-phrase-definitions ambee phrase-name amenn correct-value-for fenambee phrase-name amenn amenn amenn
ambee append-text yes-or-no-value-is-correct list-of-yes-or-no-values-are-correct amenn
ambee copy-and-replace phrase-name phrase-name-with-underscores character-hyphen character-underscore amenn
ambee if-no-begin ambee yes-or-no-value-is-correct amenn amenn
ambee expand-text template-display-value-is-not-correct display-value-is-not-correct amenn
ambee copy-and-replace display-value-is-not-correct display-value-is-not-correct placeholder-phrase-name phrase-name amenn
ambee copy-and-replace display-value-is-not-correct display-value-is-not-correct placeholder-value-of-phrase-name ambee phrase-name amenn amenn
ambee copy-and-replace display-value-is-not-correct display-value-is-not-correct placeholder-correct-value-for-phrase-name correct-value-for fenambee phrase-name amenn amenn
ambee append-text-no-space display-value-is-not-correct full-display-values-not-correct amenn
ambee append-text phrase-name list-of-phrases-with-incorrect-values amenn
ambee if-else amenn
ambee append-text phrase-name list-of-phrases-with-correct-values amenn
ambee if-end amenn
----
correct-value-for-results-position-of-matching-text:
4
----
string-one:
one
----
grep-not-at-sub-function:
ambee if-yes-begin ambee yes-or-no-same-two-phrase-definitions first-word string-needed-operand-checks amenn amenn
ambee grep-insert-operand-checks amenn
ambee if-else amenn
ambee grep-collect-operand-checks amenn
ambee if-end amenn
----
correct-value-for-result-calculation-absolute:
6
----
correct-value-for-should-be-copied-text:
first_word second_word
----
correct-value-for-sample-word-list-one:
" alpha alpha-here and beta gamma beta delta<new_line> "
----
correct-value-for-text-copied-without-last-word:
abc DEF
----
correct-value-for-should-be-one:
one
----
do-check-for-correct-values:
ambee expand-text template-string-correct-value-for-hyphen string-correct-value-for-hyphen amenn
ambee generate-list-of-all-dashrep-phrases full-list-of-all-dashrep-phrases amenn
ambee copy-words-that-begin-with-text full-list-of-all-dashrep-phrases list-of-phrases-beginning-with-string-correct-value string-correct-value-for-hyphen amenn
ambee copy-and-replace list-of-phrases-beginning-with-string-correct-value list-of-phrases-to-check-for-correct-value string-correct-value-for-hyphen empty-text amenn
*---
ambee trace-show list-of-phrases-to-check-for-correct-value amenn
---*
ambee use-handler-with-each-word-in-phrase handle-one-check-for-correct-value list-of-phrases-to-check-for-correct-value amenn
ambee put-into-phrase yes-or-no-all-values-are-correct ambee yes-if-all-yes ambee list-of-yes-or-no-values-are-correct amenn amenn amenn
*---
ambee trace-show full-display-values-not-correct amenn
ambee trace-show list-of-phrases-with-correct-values amenn
---*
----
input-filename-containing-data-to-test-gather-find-actions:
input-data-to-test-gather-find-actions.txt
----
correct-value-for-result-calculation-division:
2.3333
----
correct-value-for-expanded-date-time-frozen-adjusted:
50 6 53 2017
----
correct-value-for-result-yes-or-no-file-exists-no:
no
----
character-asterisk:
*
----
filename-output-for-test-writing-to-file:
output_for_test_writing_to_file.txt
----
dashrep-gather-tag-delete:
tag_delete
----
string-eight:
eight
----
correct-value-for-expanded-date-time-frozen-zero-meridian:
29 4 5 50 6 53 2017
----
correct-value-for-result-integers-positive-sorted:
-72 -36 -28 -1 0 1 3 12 17 94
----
pattern-for-appended-items:
appended-pattern-item-ambee-list-of-numbers-as-text-amenn
----
case-info-idlistparticipants:
ambee list-of-numbers amenn
----
correct-value-for-should-be-length-7:
7
----
correct-value-for-vector-result-multiply-by-number:
119 161 -28
----
list-of-integers-positive-and-negative:
12 -72 0 3 -28 94 -36 1 17 -1
----
correct-value-for-multiple-yes-no-checks:
no_yes_yes_no_no_yes_yes_no_yes_no_yes_no
----
correct-value-for-result-numeric-y-map-tile-number:
1473.433751
----
correct-value-for-copied-pattern-item-one:
dolphin
----