forked from emender/emender
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
1052 lines (690 loc) · 26.5 KB
/
Copy pathChangeLog
File metadata and controls
1052 lines (690 loc) · 26.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
2014-11-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/fileio.lua:
Updated comments.
2014-11-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/getopt.lua:
Added support for new output format to the getopt module.
2014-11-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/junitWriter.lua:
Added new writer used to create reports compatible with JUnit.
2014-11-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* selftest/test_pass_fail.in:
Fixed selftest test_pass_fail.
2014-11-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/xmlWriter.lua:
Special HTML/XML characters should be properly escaped in XML output.
2014-11-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/htmlWriter.lua:
Special HTML characters should be properly escaped in HTML output.
2014-11-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/string.lua:
Add new method string.escapeHTML() into the module string.lua.
2014-11-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/TestPassFail.lua:
Updated the test TestPassFail.lua to check for more issues.
2014-10-24 Pavel Tisnovsky <ptisnovs@redhat.com>
* selftest/cleanup.sh:
* selftest/selfcheck.sh:
Added support for JUnit-like output of test results
(to be used on Jenkins).
2014-10-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionPass.lua:
* test/TestAssertionWarn.lua:
Updated, added comments and some new test cases.
2014-10-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionPass.lua:
Updated, added comments and some new test cases.
2014-10-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/test_pass_fail.in:
* selfchecks/test_teardown.in:
* selfchecks/test_teardown_only.in:
Fixed three selfchecks according to string.rep()-related fix.
2014-10-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/string.lua:
Fixed issue with implicit rounding in string.rep().
2014-10-21 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_1_fail.in:
* selfchecks/test_1_info.in:
* selfchecks/test_1_pass.in:
Added three new selfchecks.
2014-10-21 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test1Fail.lua:
* test/Test1Info.lua:
* test/Test1Pass.lua:
Add three new basic tests.
2014-10-21 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_100_passes_1_fail.in:
* selfchecks/test_100_passes_1_info.in:
Added two (yet another) new selfchecks.
2014-10-21 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_pass_fail.in:
* selfchecks/test_setup_teardown_only.in:
Added two new selfchecks.
2014-10-20 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_setup.in:
* selfchecks/test_teardown.in:
Added two new selfchecks.
2014-10-20 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestSetUpOnly.lua:
* test/TestSetUpTearDown.lua:
Added comments.
2014-10-20 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_setup_only.in:
* selfchecks/test_teardown_only.in:
Added two new selfchecks.
2014-10-20 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/test_empty.in:
Added one new selfcheck.
2014-10-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/htmlWriter.lua:
Updated, added documentation.
2014-10-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/xmlWriter.lua:
Updated xmlWriter.lua.
2014-10-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/bad_output_format_1.in:
* selfchecks/bad_output_format_2.in:
* selfchecks/bad_output_format_3.in:
* selfchecks/bad_output_format_4.in:
* selfchecks/bad_output_format_5.in:
* selfchecks/selfcheck.sh:
Added five new selfchecks.
2014-10-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/bad_cli_options_1.in:
* selfchecks/bad_cli_options_2.in:
* selfchecks/bad_cli_options_3.in:
* selfchecks/bad_cli_options_4.in:
* selfchecks/bad_cli_options_6.in:
* selfchecks/bad_cli_options_7.in:
* selfchecks/cleanup.sh:
* selfchecks/selfcheck.sh:
Added six new selfchecks.
2014-10-16 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selfcheck.sh:
First attempt to make graphs/plot in Jenkins.
2014-10-16 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
Unknown command line options should be sorted to have the stable output.
2014-10-16 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/table.lua:
Added four useful functions: keys(), values(), sortedKeys() and sortedValues().
2014-10-16 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
* selfchecks/show_help_1.in:
* selfchecks/show_help_2.in:
Added two new selfchecks.
2014-10-16 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
Refactored a bit.
* selfchecks/show_license_1.in:
* selfchecks/show_license_2.in:
Added new selfchecks.
2014-10-15 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/abstractWriter.lua:
Added comments, minor fixes.
2014-10-15 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/textWriter.lua:
Added comments, minor fixes.
2014-10-15 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selftest/toolsChecker.lua:
Added comments, minor fixes.
2014-10-15 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selftest/luaVersionChecker.lua:
Added comments, minor fixes.
2014-10-14 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/common/asserts.lua:
Refactored asserts.lua and emend to use commonTextWriter instead of dirty logger.
2014-10-14 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Refactored to use commonTextWriter instead of dirty logger.
2014-10-14 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/textWriter.lua:
Refactored to use commonTextWriter.
2014-10-14 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/commonTextWriter.lua:
Added commonTextWriter that will be used by textWriter and logger.
2014-10-13 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
Added comments to this script.
2014-10-13 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionIsUnequal.lua:
Added (c).
2014-10-13 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test100Passes1Info.lua:
Added new test into common testcases.
2014-10-13 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/gendoc.lua:
1st version of documentation generator.
2014-10-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/show_version_1.in:
* selfchecks/show_version_2.in:
Added two self check messages.
2014-10-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/selfcheck.sh:
Self check script.
2014-10-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/cleanup.sh:
Added cleanup script.
2014-10-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
Added licence text.
2014-10-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/core.lua:
Fixed test path resolver.
2014-10-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestComments.lua:
Added test for check the behaviour of docunit.
2014-10-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionWarn.lua:
Added test to check the behaviour of warn() function.
2014-10-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added comments in fileio module.
2014-10-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/fileio.lua:
Added comments in fileio module.
2014-10-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added warn() function.
2014-10-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/writers/htmlWriter.lua:
Fixed percentage computation.
2014-10-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test100Failures1Pass.lua:
Added new test into common testcases.
2014-10-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test100Passes1Fail.lua:
Added new test into common testcases.
2014-10-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestSetUp.lua:
* test/TestSetUpOnly.lua:
* test/TestSetUpTearDownOnly.lua:
Minor updates to more tests.
2014-10-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/TestSetUp.lua:
Updated the test TestSetUp.
2014-10-07 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestTearDown.lua:
Updated the test TestTearDown.
2014-10-07 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestTearDownOnly.lua:
Further improvements of TestTearDownOnly.lua.
2014-10-07 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestTearDownOnly.lua:
Updated the test TestTearDownOnly.
2014-10-07 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestEmpty.lua:
Added new test TestEmpty into the project.
2014-10-07 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test2.lua:
Updated Test2.lua.
2014-10-06 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Minor update.
2014-10-06 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selftest/toolsChecker.lua:
Added licence text.
2014-10-06 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selftest/luaVersionChecker.lua:
Added licence text.
2014-10-06 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/abstractWriter.lua:
Added licence text.
2014-10-06 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/Test1.lua:
Updated Test1.lua.
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
GenDoc and Fileio modules should be loaded during Emender startup.
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/check_tracer_many_test_errors.sh:
* examples/run_assertion_pass.sh:
Two more examples added.
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
Added function that prints Emender configuration.
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/gendoc.lua:
Added stub for documentation generator.
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/fileio.lua:
Added licence text (I forget about that all the time :).
2014-10-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/fileio.lua:
Added module with functions for file I/O operations used elsewhere in the Emender.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* files/flotr/flotr-0.2.0-alpha.js:
* files/flotr/lib/base64.js:
* files/flotr/lib/canvas2image.js:
* files/flotr/lib/canvastext.js:
* files/flotr/lib/excanvas.js:
* files/flotr/lib/prototype-1.6.0.2.js:
* src/writers/htmlWriter.lua:
Added support for rendering simple graph with overall results.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
Register text writer.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/help.lua:
Added help for -o and --output CLI options.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Fixed function that reports errors in the text structure.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/htmlWriter.lua:
Added missing licence text to htmlWriter.lua.
2014-10-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/textWriter.lua:
Added text writer.
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/htmlWriter.lua:
Fixed three issues: test result evaluation, percentage computation and
links to Bootstrap library.
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/htmlWriter.lua:
Rewritten HTML writer to use new layout and design.
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
* src/writers/abstractWriter.lua:
Improved test results reporting.
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Added function to dump all results (used mainly for internal
checking).
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
* src/writers/abstractWriter.lua:
* src/writers/htmlWriter.lua:
Changed API for writers/reporters.
2014-10-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* selfchecks/README.md:
Introduce selfchecks content.
2014-09-30 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Add check that test could be loaded.
2014-09-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Added support for test result writers.
2014-09-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/abstractWriter.lua:
* src/writers/htmlWriter.lua:
Changed API for writers.
2014-09-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
All test results are stored in its own data structure that would
be used for exporting results into various formats.
2014-09-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
* src/core.lua:
Functions used to register test messages should have proper names.
2014-09-24 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added missing comments.
2014-09-24 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionIsEqual.lua:
Additional negative tests added into TestAssertionIsEqual.
2014-09-24 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionIsEqual.lua:
Added more tests into TestAssertionIsEqual.lua.
2014-09-23 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/TestAssertionFail.lua:
Minor fix.
2014-09-23 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/TestAssertionIsEqual.lua:
Added more positive tests to check if is_equal works with tables.
2014-09-23 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
The function is_equal should compare tables properly.
2014-09-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/table.lua:
Added function/method to perform deep comparison of two tables.
2014-09-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/TestAssertionPass.lua:
Updated the test TestAssertionPass to check other improper cases.
2014-09-22 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestAssertionFail.lua:
Updated the test TestAssertionFail to check other improper cases.
2014-09-19 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
More metadata are fetch & printed for each test.
2014-09-19 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/logger.lua:
* src/common/string.lua:
* src/common/table.lua:
Added (c).
2014-09-19 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/string.lua:
Added the trim() string function.
2014-09-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/writers/abstractWriter.lua:
* src/writers/htmlWriter.lua:
Added HTML writer and the abstract writer.
2014-09-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/common/asserts.lua:
* src/common/getopt.lua:
* src/core.lua:
Added support for various types of writers.
2014-09-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/check_bad_output_format_1.sh:
* examples/check_bad_output_format_2.sh:
* examples/check_bad_output_format_3.sh:
* examples/check_bad_output_format_4.sh:
* examples/check_bad_output_format_5.sh:
* examples/check_good_output_format_1.sh:
* examples/check_good_output_format_2.sh:
* examples/check_good_output_format_3.sh:
* examples/output_to_all_formats.sh:
Added checks for proper handling -o and --output command line options.
2014-09-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/common/getopt.lua:
Refactored and added support for handling -o and --output command line options.
2014-09-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
* src/core.lua:
Store and report given message in case of test failure.
2014-09-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
* src/core.lua:
Updated text report format.
2014-09-17 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/run_test_pass_fail.sh:
* test/TestPassFail.lua:
Added test for checking pass() and fail() functions.
2014-09-12 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
We need to show name of test, name of test function a source line
in case of (any) assertion error.
2014-09-12 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Removed unused function, added comments.
2014-09-12 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/getopt.lua:
Added missing licence section.
2014-09-12 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/tracer.lua:
pcall() and error() should be handled in special way.
2014-09-12 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/tracer.lua:
Added missing licence section.
2014-09-11 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/list_tests_1_trace.sh:
* examples/run_assertion_tests_trace.sh:
* examples/run_setup_teardown_tests_trace.sh:
Some examples to check tracer.
2014-09-11 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/tracer.lua:
Fixed an issue in tracer (pcall+error pair).
2014-09-11 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/common/getopt.lua:
Added check for bad/unknown command line options.
2014-09-11 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/bad_options_1.sh:
* examples/bad_options_2.sh:
* examples/bad_options_3.sh:
* examples/bad_options_4.sh:
More examples with bad/unknown CLI option(s).
2014-09-11 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/bad_option_1.sh:
* examples/bad_option_2.sh:
* examples/bad_option_3.sh:
Added examples with a bad/unknown CLI option(s).
2014-09-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Fixed a bug - emend should look for the test in
"test" directory by default.
2014-09-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/common/getopt.lua:
* src/core.lua:
Moved all CLI-related options to getopt module.
2014-09-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/help.lua:
Basic support for turn on tracing.
2014-09-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/tracer.lua:
Added 1st version of tracer (debugging tool).
2014-09-10 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/table.lua:
Added function to make shallow copy of given table.
2014-09-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* test/TestSetUpTearDownOnly.lua:
Added new test.
2014-09-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
* tests/Test1.lua -> test/Test1.lua:
* tests/Test2.lua -> test/Test2.lua:
* tests/TestAssertionIsEqual.lua -> test/TestAssertionIsEqual.lua:
* tests/TestAssertionIsFalse.lua -> test/TestAssertionIsFalse.lua:
* tests/TestAssertionIsLike.lua -> test/TestAssertionIsLike.lua:
* tests/TestAssertionIsNotType.lua -> test/TestAssertionIsNotType.lua:
* tests/TestAssertionIsTrue.lua -> test/TestAssertionIsTrue.lua:
* tests/TestAssertionIsType.lua -> test/TestAssertionIsType.lua:
* tests/TestAssertionIsUnequal.lua -> test/TestAssertionIsUnequal.lua:
* tests/TestAssertionIsUnlike.lua -> test/TestAssertionIsUnlike.lua:
* tests/TestRequires1.lua -> test/TestRequires1.lua:
* tests/TestRequires2.lua -> test/TestRequires2.lua:
* tests/TestSetUp.lua -> test/TestSetUp.lua:
* tests/TestSetUpOnly.lua -> test/TestSetUpOnly.lua:
* tests/TestSetUpTearDown.lua -> test/TestSetUpTearDown.lua:
* tests/TestTearDown.lua -> test/TestTearDown.lua:
* tests/TestTearDownOnly.lua -> test/TestTearDownOnly.lua:
Tests needs to be stored in the "test" directory.
2014-09-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/run_test1_and_test2.sh:
* examples/run_test1_and_test2_.sh:
* examples/run_test1_only.sh:
Added three new example scripts.
2014-09-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/run_setup_teardown_tests.sh:
* examples/run_setup_tests.sh:
* examples/run_teardown_tests.sh:
Added example scripts that start all tests that check setUp and
tearDown functions.
2014-09-09 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/run_all_assertion_tests.sh:
* examples/run_all_tests.sh:
* examples/run_assertion_tests.sh:
* examples/run_assertion_type_tests.sh:
Added example scripts that start all tests that check assertions.
2014-09-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestSetUpOnly.lua:
* tests/TestSetUpTearDown.lua:
* tests/TestTearDownOnly.lua:
More tests for setUp() and tearDown() functions.
2014-09-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Fixed silly typo.
2014-09-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestTearDown.lua:
Added test that checks the "special" tearDown() function.
2014-09-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestSetUp.lua:
Added test that checks the "special" setUp() function.
2014-09-08 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Added support for setup and teardown functions/methods in tests.
2014-09-05 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/table.lua:
Table utils module.
2014-09-05 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/core.lua:
Added support for running selected test(s) only.
2014-09-05 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added support for two new assertions: is_type() and is_not_type().
2014-09-05 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsNotType.lua:
Added new test to check is_not_type assertion.
2014-09-05 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsType.lua:
Added new test to check is_type assertion.
2014-09-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsUnlike.lua:
Added new test to check is_unlike assertion.
2014-09-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsLike.lua:
Added new test to check is_like assertion.
2014-09-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsntEqual.lua -> tests/TestAssertionIsUnequal.lua:
Renamed and updated to match official documentation.
2014-09-04 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Renamed assertion functions to match official documentation.
Updated comments too.
2014-09-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added tests that check does_match and doesnt_equal assertions.
2014-09-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Handling of "requires" attribute in test list.
2014-09-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestRequires1.lua:
* tests/TestRequires2.lua:
Added tests that check "requires" attribute.
2014-09-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/help.lua:
Updated help file.
2014-09-03 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/logger.lua:
Added licence text.
2014-09-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
* src/core.lua:
Added ability to list and run all tests.
2014-09-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsEqual.lua:
* tests/TestAssertionIsntEqual.lua:
Added tests that check is_equal and isnt_equal assertions.
2014-09-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added new assertions: is_equal and isnt_equal.
2014-09-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/TestAssertionIsFalse.lua:
* tests/TestAssertionIsTrue.lua:
Added tests that check is_true and is_false assertions.
2014-09-02 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Updated assertions is_true and is_false.
2014-09-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/selftest/toolsChecker.lua:
Added 1st version of tools checker.
2014-09-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/logger.lua:
Added 1st version of logger module.
2014-09-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/Test1.lua:
* tests/Test2.lua:
Updated to match new test calling conventions.
2014-09-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/list_tests_1.sh:
* examples/list_tests_2.sh:
* examples/list_tests_verbose_1.sh:
* examples/list_tests_verbose_2.sh:
Different CLI arguments are now used to list tests.
2014-09-01 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/dry_run_1.sh -> examples/list_tests_1.sh:
* examples/dry_run_2.sh -> examples/list_tests_2.sh:
* examples/dry_run_verbose_1.sh -> examples/list_tests_verbose_1.sh:
* examples/dry_run_verbose_2.sh -> examples/list_tests_verbose_2.sh:
Renamed.
2014-08-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/Test1.lua:
* tests/Test2.lua:
Added proper metadata.
2014-08-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Fixed to be compatible with Lua < 5.2.
2014-08-25 Pavel Tisnovsky <ptisnovs@redhat.com>
* README:
Added (empty ATM) README file.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* emend:
Better handling of modules.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/core.lua:
Added support for getting basic test metadatas.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/version.lua:
Added version module.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/license.lua:
Added license module.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/help.lua:
Added help module.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/string.lua:
Added module for string handling.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* src/common/asserts.lua:
Added license.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* tests/Test1.lua:
Renamed, added license.
* tests/Test2.lua:
Added.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/dry_run_1.sh:
* examples/dry_run_2.sh:
* examples/show_help_1.sh:
* examples/show_help_2.sh:
* examples/show_version_cli_1.sh:
* examples/show_version_cli_2.sh:
Added license to those six scripts.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* examples/dry_run_verbose_1.sh:
* examples/dry_run_verbose_2.sh:
* examples/show_license_1.sh:
* examples/show_license_2.sh:
New checks for CLI options.
2014-08-18 Pavel Tisnovsky <ptisnovs@redhat.com>
* renamed test_dry_run_cli_1.sh -> examples/dry_run_1.sh:
* renamed test_dry_run_cli_2.sh -> examples/dry_run_2.sh:
* renamed test_help_cli_1.sh -> examples/show_help_1.sh:
* renamed test_help_cli_2.sh -> examples/show_help_2.sh: