-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoverageConfigurationTest.pas
More file actions
1551 lines (1325 loc) · 61.3 KB
/
Copy pathCoverageConfigurationTest.pas
File metadata and controls
1551 lines (1325 loc) · 61.3 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
(***********************************************************************)
(* Delphi Code Coverage *)
(* *)
(* A quick hack of a Code Coverage Tool for Delphi *)
(* by Christer Fahlgren and Nick Ring *)
(* *)
(* This Source Code Form is subject to the terms of the Mozilla Public *)
(* License, v. 2.0. If a copy of the MPL was not distributed with this *)
(* file, You can obtain one at http://mozilla.org/MPL/2.0/. *)
unit CoverageConfigurationTest;
interface
uses
Classes,
SysUtils,
TestFramework,
CoverageConfiguration,
I_CoverageConfiguration;
type
TCoverageConfigurationTest = class(TTestCase)
private
function RandomFileName : string;
published
procedure TestPreParsing;
procedure TestNoParameters;
procedure TestInvalidParameter;
procedure TestEnableApiLogging;
procedure TestSetCodepage;
procedure TestEnableFileLoggingDefaultFile;
procedure TestEnableFileLoggingSpecifiedFile;
procedure TestOutputDirectoryError;
procedure TestOutputDirectory;
procedure TestSourcePathFileError;
procedure TestSourcePathFileNoExistingFile;
procedure TestSourcePathFileFakeDir;
procedure TestSourcePathFile;
procedure TestSourcePathError;
procedure TestSourcePathFakeDir;
procedure TestSourcePathSingleDir;
procedure TestSourcePathMultipleDir;
procedure TestSourceDirectoryError;
procedure TestSourceDirectory;
procedure TestExecutableParameterEmpty;
procedure TestExecutableParameterSingle;
procedure TestExecutableParameterMultiple;
procedure TestExecutableParameterUnescape;
procedure TestUnitFileError;
procedure TestUnitFileNoExistingFile;
procedure TestUnitFile;
procedure TestUnitFileStrippingOfPathAndExtensions;
procedure TestUnitError;
procedure TestUnitSingle;
procedure TestUnitMultiple;
procedure TestUnitStrippingOfPathAndExtensions;
procedure TestMapFileError;
procedure TestMapFile;
procedure TestMapFileNoExistingFile;
procedure TestExecutableError;
procedure TestExecutable;
procedure TestExecutableNoExistingFile;
procedure TestExcludingFileExtension;
procedure TestExcludingFileExtensionMultipleToggling;
procedure TestExcludingFileExtensionFromUnitFile;
procedure TestIncludingFileExtension;
procedure TestIncludingFileExtensionMultipleToggling;
procedure TestIncludingFileExtensionFromUnitFile;
procedure TestFileExtensionFromUnitFileToggling;
procedure TestExcludeSourceMask;
procedure TestDProj;
end;
implementation
uses
Windows,
MockCommandLineProvider,
IOUtils,
StrUtils;
const
cINVALID_PARAMETER : array [0 .. 0] of string = ('-frank');
cENABLE_API_LOGGING : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_LOGGING_WINAPI);
cENABLE_FILE_LOG_DEFAULT : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_LOGGING_TEXT);
cENABLE_LOG_FILE_SPECIFIED : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_LOGGING_TEXT, 'some-debug-log-file.txt');
cOUTPUT_DIRECTORY_ERROR : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_OUTPUT_DIRECTORY);
cOUTPUT_DIRECTORY : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_OUTPUT_DIRECTORY, 'some-output-dir');
cSOURCE_PATH_FILENAME_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS_FILE);
cSOURCE_PATH_EMPTY_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS);
cSOURCE_DIRECTORY_PARAMETER_EMPTY : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_SOURCE_DIRECTORY);
cSOURCE_DIRECTORY_PARAMETER : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_SOURCE_DIRECTORY, 'some_parameter');
cEXECUTABLE_PARAMETER_EMPTY : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_EXECUTABLE_PARAMETER);
cEXECUTABLE_PARAMETER_SINGLE : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_EXECUTABLE_PARAMETER, 'some_parameter');
cEXECUTABLE_PARAMETER_MULTIPLE : array [0 .. 2] of string = (I_CoverageConfiguration.cPARAMETER_EXECUTABLE_PARAMETER, 'some_parameter', 'another_parameter');
cEXECUTABLE_PARAMETER_ESCAPING : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_EXECUTABLE_PARAMETER, '^^some_parameter');
cUNIT_FILENAME_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_UNIT_FILE);
cUNIT_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_UNIT);
cMAP_FILE_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_MAP_FILE);
cEXECUTABLE_PARAMETER : array [0 .. 0] of string = (I_CoverageConfiguration.cPARAMETER_EXECUTABLE);
cCODE_PAGE : array [0 .. 1] of string = (I_CoverageConfiguration.cPARAMETER_CODE_PAGE, '1250');
cSOME_EXTENSION = '.someExt';
cEXCLUDE_FILES_PREFIX = 'exclude';
//==============================================================================
function TCoverageConfigurationTest.RandomFileName: string;
var
lp : Integer;
begin
Randomize;
repeat
Result := '';
for lp := 1 to 8 do
begin
Result := Result + Chr(Ord('A') + Random(26));
end;
until not FileExists(Result);
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestPreParsing;
var
LCoverageConfiguration: ICoverageConfiguration;
LReason : string;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create([]));
CheckEquals('', LCoverageConfiguration.ApplicationParameters, 'Application Parameters set');
CheckEquals('', LCoverageConfiguration.ExeFileName, 'Executable file name should not be set');
CheckEquals('', LCoverageConfiguration.MapFileName, 'Map file name should not be set');
CheckEquals('', LCoverageConfiguration.OutputDir, 'Report output directory should not be set');
CheckEquals('', LCoverageConfiguration.SourceDir, 'Source directory should not be set');
CheckEquals('', LCoverageConfiguration.DebugLogFile, 'Debug logging file name should not be set');
CheckEquals(0, LCoverageConfiguration.SourcePaths.Count, 'Source paths should not have directories listed');
CheckEquals(0, LCoverageConfiguration.Units.Count, 'Unit list should not have any units listed');
CheckEquals(0, LCoverageConfiguration.ExcludedUnits.Count, 'Excluded Unit list should not have any units listed');
CheckFalse(LCoverageConfiguration.UseApiDebug, 'API Logging is turned on.');
CheckFalse(LCoverageConfiguration.IsComplete(LReason), 'Parameters shoujld not be complete');
CheckEquals('No executable was specified', LReason, 'Map file should not have been specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestNoParameters;
var
LCoverageConfiguration: ICoverageConfiguration;
LReason : string;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cINVALID_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
Check(False, 'Command line parsing passed');
except
on E: EConfigurationException do
begin
CheckEquals('Unexpected switch:' + cINVALID_PARAMETER[0], E.Message, 'Error message mis-match');
CheckEquals('', LCoverageConfiguration.ApplicationParameters, 'Application Parameters set');
CheckEquals('', LCoverageConfiguration.ExeFileName, 'Executable file name should not be set');
CheckEquals('', LCoverageConfiguration.MapFileName, 'Map file name should not be set');
CheckEquals('', LCoverageConfiguration.OutputDir, 'Report output directory should not be set');
CheckEquals('', LCoverageConfiguration.SourceDir, 'Source directory should not be set');
CheckEquals('', LCoverageConfiguration.DebugLogFile, 'Debug logging file name should not be set');
CheckEquals(0, LCoverageConfiguration.SourcePaths.Count, 'Source paths should not have directories listed');
CheckEquals(0, LCoverageConfiguration.Units.Count, 'Unit list should not have any units listed');
CheckEquals(0, LCoverageConfiguration.ExcludedUnits.Count, 'Unit list should not have any units listed');
CheckFalse(LCoverageConfiguration.UseApiDebug, 'API Logging is turned on.');
CheckFalse(LCoverageConfiguration.IsComplete(LReason), 'Parameters shoujld not be complete');
CheckEquals('No executable was specified', LReason, 'Map file should not have been specified');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestInvalidParameter;
var
LCoverageConfiguration: ICoverageConfiguration;
LReason : string;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cINVALID_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Unexpected switch:' + cINVALID_PARAMETER[0], E.Message, 'Error message mis-match');
CheckEquals('', LCoverageConfiguration.ApplicationParameters, 'Application Parameters set');
CheckEquals('', LCoverageConfiguration.ExeFileName, 'Executable file name should not be set');
CheckEquals('', LCoverageConfiguration.MapFileName, 'Map file name should not be set');
CheckEquals('', LCoverageConfiguration.OutputDir, 'Report output directory should not be set');
CheckEquals('', LCoverageConfiguration.SourceDir, 'Source directory should not be set');
CheckEquals('', LCoverageConfiguration.DebugLogFile, 'Debug logging file name should not be set');
CheckEquals(0, LCoverageConfiguration.SourcePaths.Count, 0, 'Source paths should not have directories listed');
CheckEquals(0, LCoverageConfiguration.Units.Count, 0, 'Unit list should not have any units listed');
CheckEquals(0, LCoverageConfiguration.ExcludedUnits.Count, 0, 'Unit list should not have any units listed');
CheckFalse(LCoverageConfiguration.UseApiDebug, 'API Logging is turned on.');
CheckFalse(LCoverageConfiguration.IsComplete(LReason), 'Parameters shoujld not be complete');
CheckEquals('No executable was specified', LReason, 'Map file should not have been specified');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestEnableApiLogging;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cENABLE_API_LOGGING));
LCoverageConfiguration.ParseCommandLine;
CheckTrue(LCoverageConfiguration.UseApiDebug, 'API Logging was not turned on.');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSetCodepage;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cCODE_PAGE));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(StrToInt(cCODE_PAGE[1]), LCoverageConfiguration.CodePage, 'Code page was not set.');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestEnableFileLoggingDefaultFile;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cENABLE_FILE_LOG_DEFAULT));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(I_CoverageConfiguration.cDEFULT_DEBUG_LOG_FILENAME, LCoverageConfiguration.DebugLogFile, 'Different debug logging file specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestEnableFileLoggingSpecifiedFile;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cENABLE_LOG_FILE_SPECIFIED));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(cENABLE_LOG_FILE_SPECIFIED[1], LCoverageConfiguration.DebugLogFile, 'Different debug logging file specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestOutputDirectoryError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cOUTPUT_DIRECTORY_ERROR));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
Check(True, 'Expected ConfigurationException detected');
CheckEquals('Expected parameter for output directory', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestOutputDirectory;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cOUTPUT_DIRECTORY));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(cOUTPUT_DIRECTORY[1], LCoverageConfiguration.OutputDir, 'Different output directory specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathFileError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cSOURCE_PATH_FILENAME_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
Check(True, 'Expected ConfigurationException detected');
CheckEquals('Expected parameter for source path file name', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathFileNoExistingFile;
var
LCmdParams : array of string;
LCoverageConfiguration: ICoverageConfiguration;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS_FILE;
LCmdParams[Low(LCmdParams) + 1] := RandomFileName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EInOutError do
begin
Check(True, 'Expected file missing detected');
CheckEquals(2, E.ErrorCode, 'Unexpected error code');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathFileFakeDir;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LDirListFileName : string;
LFakeDirName : string;
LDirList : TStrings;
begin
LDirList := nil;
try
LDirList := TStringList.Create;
LDirListFileName := RandomFileName();
try
repeat
LFakeDirName := IncludeTrailingPathDelimiter(GetCurrentDir()) + RandomFileName();
until not DirectoryExists(LFakeDirName);
LDirList.Add(LFakeDirName);
LDirList.SaveToFile(LDirListFileName);
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS_FILE;
LCmdParams[Low(LCmdParams) + 1] := LDirListFileName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LDirList.Count - 1, LCoverageConfiguration.SourcePaths.Count, 'None existant directory listed');
CheckEquals(-1, LCoverageConfiguration.SourcePaths.IndexOf(LFakeDirName), 'Fake directory exists in the directory list');
finally
if FileExists(LDirListFileName) then
CheckTrue(SysUtils.DeleteFile(LDirListFileName), 'Unable to deleted source path directory file with fake directories');
end;
finally
FreeAndNil(LDirList);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathFile;
{}procedure GetDirectories(const ADirPath: string; const ADirLst: TStrings);
{}var
{} LSearchRec : TSearchRec;
{}begin
{} if SysUtils.FindFirst(ADirPath + PathDelim + '*.*', faDirectory, LSearchRec) = 0 then
{} try
{} repeat
{} if ((LSearchRec.Attr and faDirectory) = faDirectory) and
{} (LSearchRec.Name <> '.') and
{} (LSearchRec.Name <> '..') then
{} begin
{} ADirLst.Add(IncludeTrailingPathDelimiter(ADirPath) + LSearchRec.Name);
{} GetDirectories(IncludeTrailingPathDelimiter(ADirPath) + LSearchRec.Name, ADirLst);
{} end;
{} until SysUtils.FindNext(LSearchRec) <> 0;
{} finally
{} SysUtils.FindClose(LSearchRec)
{} end;
{}end;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LDirList : TStrings;
LDirListFileName : string;
begin
LDirList := nil;
try
LDirList := TStringList.Create;
GetDirectories(ExpandUNCFileName(IncludeTrailingPathDelimiter(GetCurrentDir()) + '..'), LDirList);
LDirListFileName := RandomFileName();
try
LDirList.SaveToFile(LDirListFileName);
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS_FILE;
LCmdParams[Low(LCmdParams) + 1] := LDirListFileName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LDirList.Count, LCoverageConfiguration.SourcePaths.Count, 'Incorrect number of directories listed');
finally
if FileExists(LDirListFileName) then
CheckTrue(SysUtils.DeleteFile(LDirListFileName), 'Unable to deleted source path directory file');
end;
finally
FreeAndNil(LDirList);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cSOURCE_PATH_EMPTY_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected at least one source path', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathFakeDir;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LFakeDirName : string;
begin
repeat
LFakeDirName := IncludeTrailingPathDelimiter(GetCurrentDir()) + RandomFileName();
until not DirectoryExists(LFakeDirName);
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS;
LCmdParams[Low(LCmdParams) + 1] := LFakeDirName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected at least one source path', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathSingleDir;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := cSOURCE_PATH_EMPTY_PARAMETER[0];
LCmdParams[Low(LCmdParams) + 1] := IncludeTrailingPathDelimiter(GetCurrentDir()) + '..';
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(1, LCoverageConfiguration.SourcePaths.Count, 'Incorrect number of directories listed');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourcePathMultipleDir;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
begin
SetLength(LCmdParams, 3);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_SOURCE_PATHS;
LCmdParams[Low(LCmdParams) + 1] := IncludeTrailingPathDelimiter(GetCurrentDir()) + '..';
LCmdParams[Low(LCmdParams) + 2] := IncludeTrailingPathDelimiter(GetCurrentDir()) + '..';
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(2, LCoverageConfiguration.SourcePaths.Count, 'Incorrect number of directories listed');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourceDirectoryError;
var
LCoverageConfiguration : ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cSOURCE_DIRECTORY_PARAMETER_EMPTY));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
Check(True, 'Expected ConfigurationException detected');
CheckEquals('Expected parameter for source directory', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestSourceDirectory;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cSOURCE_DIRECTORY_PARAMETER));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(cSOURCE_DIRECTORY_PARAMETER[1], LCoverageConfiguration.SourceDir, 'Different output directory specified');
CheckEquals(1, LCoverageConfiguration.SourcePaths.Count, 'Different source path count');
CheckEquals(cSOURCE_DIRECTORY_PARAMETER[1], LCoverageConfiguration.SourcePaths.Strings[0], 'Different source path directory');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableParameterEmpty;
var
LCoverageConfiguration : ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cEXECUTABLE_PARAMETER_EMPTY));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected at least one executable parameter', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableParameterSingle;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cEXECUTABLE_PARAMETER_SINGLE));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(cEXECUTABLE_PARAMETER_SINGLE[1], LCoverageConfiguration.ApplicationParameters, 'Different parameter specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableParameterMultiple;
var
LCoverageConfiguration: ICoverageConfiguration;
lp : Integer;
LExpectedParams : string;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cEXECUTABLE_PARAMETER_MULTIPLE));
LCoverageConfiguration.ParseCommandLine;
LExpectedParams := '';
for lp := Low(cEXECUTABLE_PARAMETER_MULTIPLE) + 1 to High(cEXECUTABLE_PARAMETER_MULTIPLE) do
LExpectedParams := LExpectedParams + ' ' + cEXECUTABLE_PARAMETER_MULTIPLE[lp];
LExpectedParams := TrimLeft(LExpectedParams);
CheckEquals(LExpectedParams, LCoverageConfiguration.ApplicationParameters, 'Different parameters specified');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableParameterUnescape;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cEXECUTABLE_PARAMETER_ESCAPING));
LCoverageConfiguration.ParseCommandLine;
CheckEquals('^some_parameter', LCoverageConfiguration.ApplicationParameters, 'Escaped parameters difference occurred');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitFileError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cUNIT_FILENAME_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected parameter for units file name', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitFileNoExistingFile;
var
LCmdParams : array of string;
LCoverageConfiguration: ICoverageConfiguration;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT_FILE;
LCmdParams[Low(LCmdParams) + 1] := RandomFileName();
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EInOutError do
begin
CheckEquals(2, E.ErrorCode, 'Unexpected error code');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitFile;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LFileListFileName : string;
LFileNameList : TStringList;
LNumOfFiles : Integer;
begin
LFileNameList := nil;
try
LFileNameList := TStringList.Create;
LFileNameList.Sorted := True;
LFileNameList.Duplicates := dupIgnore;
LNumOfFiles := Random(20) + 10;
while LFileNameList.Count < LNumOfFiles do
LFileNameList.Add(RandomFileName());
repeat
LFileListFileName := RandomFileName();
until not FileExists(LFileListFileName);
try
LFileNameList.SaveToFile(LFileListFileName);
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT_FILE;
LCmdParams[Low(LCmdParams) + 1] := LFileListFileName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LFileNameList.Count, LCoverageConfiguration.Units.Count, 'Incorrect number of units listed');
finally
if FileExists(LFileListFileName) then
CheckTrue(SysUtils.DeleteFile(LFileListFileName), 'Unable to deleted unit file');
end;
finally
FreeAndNil(LFileNameList);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitFileStrippingOfPathAndExtensions;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LFileListFileName : string;
LFileNameList : TStringList;
LFileNameListWithExt : TStrings;
LIdx : Integer;
lp : Integer;
LNumOfFiles : Integer;
begin
LFileNameList := nil;
LFileNameListWithExt := nil;
try
LFileNameList := TStringList.Create;
LFileNameList.Sorted := True;
LFileNameList.Duplicates := dupIgnore;
LFileNameListWithExt := TStringList.Create;
LNumOfFiles := Random(20) + 10;
while LFileNameList.Count < LNumOfFiles do
LFileNameList.Add(RandomFileName());
for lp := 0 to Pred(LFileNameList.Count) do
LFileNameListWithExt.Add(IncludeTrailingPathDelimiter(GetCurrentDir) + LFileNameList.Strings[lp] + cSOME_EXTENSION);
repeat
LFileListFileName := RandomFileName();
until not FileExists(LFileListFileName);
try
LFileNameListWithExt.SaveToFile(LFileListFileName);
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT_FILE;
LCmdParams[Low(LCmdParams) + 1] := LFileListFileName;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LFileNameList.Count, LCoverageConfiguration.Units.Count, 'Incorrect number of units listed');
for lp := 0 to Pred(LFileNameList.Count) do
CheckNotEquals(-1, LCoverageConfiguration.Units.IndexOf(LFileNameList.Strings[lp]), 'Missing unit name');
for lp := Pred(LFileNameList.Count) downto 0 do
begin
LIdx := LCoverageConfiguration.Units.IndexOf(LFileNameList.Strings[lp]);
if (LIdx <> -1) then
begin
LCoverageConfiguration.Units.Delete(LIdx);
LFileNameList.Delete(lp);
end;
end;
CheckEquals(0, LFileNameList.Count, 'Expecting more units to be present');
CheckEquals(0, LCoverageConfiguration.Units.Count, 'More units than expected are present');
finally
if FileExists(LFileListFileName) then
CheckTrue(SysUtils.DeleteFile(LFileListFileName), 'Unable to deleted unit file');
end;
finally
FreeAndNil(LFileNameList);
FreeAndNil(LFileNameListWithExt);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cUNIT_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected at least one unit', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitSingle;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT;
LCmdParams[Low(LCmdParams) + 1] := RandomFileName();
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(1, LCoverageConfiguration.Units.Count, 'Incorrect number of units listed');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitMultiple;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
begin
SetLength(LCmdParams, 3);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT;
LCmdParams[Low(LCmdParams) + 1] := RandomFileName();
repeat
LCmdParams[Low(LCmdParams) + 2] := RandomFileName();
until LCmdParams[Low(LCmdParams) + 2] <> LCmdParams[Low(LCmdParams) + 1];
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(2, LCoverageConfiguration.Units.Count, 'Incorrect number of units listed');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestUnitStrippingOfPathAndExtensions;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LIdx : Integer;
lp : Integer;
LNumOfFiles : Integer;
LUnitFileNames : TStringList;
begin
LUnitFileNames := nil;
try
LUnitFileNames := TStringList.Create;
LUnitFileNames.Sorted := True;
LUnitFileNames.Duplicates := dupIgnore;
LNumOfFiles := Random(10) + 5;
while LUnitFileNames.Count < LNumOfFiles do
LUnitFileNames.Add(RandomFileName());
LUnitFileNames.Sorted := False;
SetLength(LCmdParams, LUnitFileNames.Count + 1);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_UNIT;
for lp := 0 to Pred(LUnitFileNames.Count) do
begin
if lp mod 4 = 0 then
LUnitFileNames.Strings[lp] := IncludeTrailingPathDelimiter(GetCurrentDir) + LUnitFileNames.Strings[lp];
LCmdParams[Low(LCmdParams) + lp + 1] := LUnitFileNames.Strings[lp];
if lp mod 3 = 0 then
LCmdParams[Low(LCmdParams) + lp + 1] := LCmdParams[Low(LCmdParams) + lp + 1] + cSOME_EXTENSION;
end;
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LUnitFileNames.Count, LCoverageConfiguration.Units.Count, 'Incorrect number of units listed');
for lp := 0 to Pred(LUnitFileNames.Count) do
CheckNotEquals(-1, LCoverageConfiguration.Units.IndexOf(LUnitFileNames.Strings[lp]), 'Missing unit name');
for lp := Pred(LUnitFileNames.Count) downto 0 do
begin
LIdx := LCoverageConfiguration.Units.IndexOf(LUnitFileNames.Strings[lp]);
if (LIdx <> -1) then
begin
LCoverageConfiguration.Units.Delete(LIdx);
LUnitFileNames.Delete(lp);
end;
end;
CheckEquals(0, LUnitFileNames.Count, 'Expecting more units to be present');
CheckEquals(0, LCoverageConfiguration.Units.Count, 'More units than expected are present');
finally
FreeAndNil(LUnitFileNames);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestMapFileError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cMAP_FILE_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected parameter for mapfile', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestMapFile;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LReason : string;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_MAP_FILE;
LCmdParams[Low(LCmdParams) + 1] := ParamStr(0);
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LCmdParams[Low(LCmdParams) + 1], LCoverageConfiguration.MapFileName, 'Incorrect map file listed');
CheckFalse(LCoverageConfiguration.isComplete(LReason), 'Configuration should not be complete based on these parameters');
CheckEquals(LReason, 'No executable was specified', 'Incorrect reason returned.');
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestMapFileNoExistingFile;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LReason : string;
LExpectedReason : string;
LExeFile : string;
begin
SetLength(LCmdParams, 4);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_EXECUTABLE;
LExeFile := RandomFileName();
LCmdParams[Low(LCmdParams) + 1] := LExeFile;
TFile.WriteAllText(LExeFile, 'test');
try
LCmdParams[Low(LCmdParams) + 2] := I_CoverageConfiguration.cPARAMETER_MAP_FILE;
LCmdParams[Low(LCmdParams) + 3] := RandomFileName();
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LCmdParams[Low(LCmdParams) + 3], LCoverageConfiguration.MapFileName, 'Incorrect map file listed');
CheckFalse(LCoverageConfiguration.isComplete(LReason), 'Configuration should not be complete based on these parameters');
LExpectedReason := 'The map file ' + LCmdParams[Low(LCmdParams) + 3] + ' does not exist. Current dir is ' + GetCurrentDir();
CheckEquals(LReason, LExpectedReason, 'Incorrect reason returned.');
finally
TFile.Delete(LExeFile);
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableError;
var
LCoverageConfiguration: ICoverageConfiguration;
begin
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(cEXECUTABLE_PARAMETER));
try
LCoverageConfiguration.ParseCommandLine;
except
on E: EConfigurationException do
begin
CheckEquals('Expected parameter for executable', E.Message, 'Error message mis-match');
end
else
Raise;
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutable;
var
LCoverageConfiguration : ICoverageConfiguration;
LCmdParams : array of string;
LReason : string;
LExpectedReason : string;
LMapFileName : string;
begin
SetLength(LCmdParams, 2);
LCmdParams[Low(LCmdParams)] := I_CoverageConfiguration.cPARAMETER_EXECUTABLE;
LCmdParams[Low(LCmdParams) + 1] := ParamStr(0);
LCoverageConfiguration := TCoverageConfiguration.Create(TMockCommandLineProvider.Create(LCmdParams));
LCoverageConfiguration.ParseCommandLine;
CheckEquals(LCmdParams[Low(LCmdParams) + 1], LCoverageConfiguration.ExeFileName, 'Incorrect executable listed');
LMapFileName := ChangeFileExt(LCmdParams[Low(LCmdParams) + 1], '.map');
CheckEquals(LMapFileName, LCoverageConfiguration.MapFileName, 'Incorrect default map file listed');
if FileExists(LMapFileName) then
begin
CheckTrue(LCoverageConfiguration.isComplete(LReason), 'Configuration should not be complete based on these parameters');
CheckEquals('', LReason, 'Incorrect reason returned.');
end
else
begin
CheckFalse(LCoverageConfiguration.isComplete(LReason), 'Configuration should not be complete based on these parameters');
LExpectedReason := 'The map file ' + LMapFileName + ' does not exist. Current dir is ' + GetCurrentDir();
CheckEquals(LExpectedReason, LReason, 'Incorrect reason returned.');
end;
end;
//==============================================================================
procedure TCoverageConfigurationTest.TestExecutableNoExistingFile;
var