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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
|
{
This file is part of the Free Component Library (FCL)
Copyright (c) 2004 by Dean Zobec, Michael Van Canneyt
Port to Free Pascal of the JUnit framework.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit fpcunit;
{$mode objfpc}
{$h+}
interface
{ Uncomment this define to remove the DUnit compatibility interface. }
{$DEFINE DUnit}
uses
SysUtils
,Classes
;
{ This lets us use a single include file for both the Interface and
Implementation sections. }
{$define read_interface}
{$undef read_implementation}
type
EAssertionFailedError = class(Exception)
constructor Create; overload;
constructor Create(const msg :string); overload;
end;
EIgnoredTest = class(EAssertionFailedError);
TTestStep = (stSetUp, stRunTest, stTearDown, stNothing);
TRunMethod = procedure of object;
TTestResult = class;
TTestSuite = class;
{$M+}
TTest = class(TObject)
protected
FLastStep: TTestStep;
function GetTestName: string; virtual;
function GetTestSuiteName: string; virtual;
function GetEnableIgnores: boolean; virtual;
procedure SetTestSuiteName(const aName: string); virtual; abstract;
procedure SetEnableIgnores(Value: boolean); virtual; abstract;
public
function CountTestCases: integer; virtual;
procedure Run(AResult: TTestResult); virtual;
procedure Ignore(const AMessage: string);
published
property TestName: string read GetTestName;
property TestSuiteName: string read GetTestSuiteName write SetTestSuiteName;
property LastStep: TTestStep read FLastStep;
property EnableIgnores: boolean read GetEnableIgnores write SetEnableIgnores;
end;
{$M-}
{ TAssert }
TAssert = class(TTest)
public
class procedure Fail(const AMessage: string);
class procedure AssertTrue(const AMessage: string; ACondition: boolean); overload;
class procedure AssertTrue(ACondition: boolean); overload;
class procedure AssertFalse(const AMessage: string; ACondition: boolean); overload;
class procedure AssertFalse(ACondition: boolean); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: string); overload;
class procedure AssertEquals(Expected, Actual: string); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: integer); overload;
class procedure AssertEquals(Expected, Actual: integer); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: int64); overload;
class procedure AssertEquals(Expected, Actual: int64); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: currency); overload;
class procedure AssertEquals(Expected, Actual: currency); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual, Delta: double); overload;
class procedure AssertEquals(Expected, Actual, Delta: double); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: boolean); overload;
class procedure AssertEquals(Expected, Actual: boolean); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: char); overload;
class procedure AssertEquals(Expected, Actual: char); overload;
class procedure AssertEquals(const AMessage: string; Expected, Actual: TClass); overload;
class procedure AssertEquals(Expected, Actual: TClass); overload;
class procedure AssertSame(const AMessage: string; Expected, Actual: TObject); overload;
class procedure AssertSame(Expected, Actual: TObject); overload;
class procedure AssertSame(const AMessage: string; Expected, Actual: Pointer); overload;
class procedure AssertSame(Expected, Actual: Pointer); overload;
class procedure AssertNotSame(const AMessage: string; Expected, Actual: TObject); overload;
class procedure AssertNotSame(Expected, Actual: TObject); overload;
class procedure AssertNotSame(const AMessage: string; Expected, Actual: Pointer); overload;
class procedure AssertNotSame(Expected, Actual: Pointer); overload;
class procedure AssertNotNull(const AMessage: string; AObject: TObject); overload;
class procedure AssertNotNull(AObject: TObject); overload;
class procedure AssertNotNullIntf(const AMessage: string; AInterface: IInterface); overload;
class procedure AssertNotNullIntf(AInterface: IInterface); overload;
class procedure AssertNotNull(const AMessage: string; APointer: Pointer); overload;
class procedure AssertNotNull(APointer: Pointer); overload;
class procedure AssertNull(const AMessage: string; AObject: TObject); overload;
class procedure AssertNull(AObject: TObject); overload;
class procedure AssertNullIntf(const AMessage: string; AInterface: IInterface); overload;
class procedure AssertNullIntf(AInterface: IInterface); overload;
class procedure AssertNull(const AMessage: string; APointer: Pointer); overload;
class procedure AssertNull(APointer: Pointer); overload;
class procedure AssertNotNull(const AMessage, AString: string); overload;
class procedure AssertNotNull(const AString: string); overload;
class procedure AssertException(const AMessage: string; AExceptionClass: ExceptClass; AMethod: TRunMethod); overload;
class procedure AssertException(AExceptionClass: ExceptClass; AMethod: TRunMethod); overload;
{$IFDEF DUnit}
{$I DUnitCompatibleInterface.inc}
{$ENDIF DUnit}
end;
TTestFailure = class(TObject)
private
FTestName: string;
FTestSuiteName: string;
FLineNumber: longint;
FFailedMethodName: string;
FRaisedExceptionClass: TClass;
FRaisedExceptionMessage: string;
FSourceUnitName: string;
FTestLastStep: TTestStep;
function GetAsString: string;
function GetExceptionMessage: string;
function GetIsFailure: boolean;
function GetIsIgnoredTest: boolean;
function GetExceptionClassName: string;
procedure SetTestLastStep(const Value: TTestStep);
public
constructor CreateFailure(ATest: TTest; E: Exception; LastStep: TTestStep);
property ExceptionClass: TClass read FRaisedExceptionClass;
published
property AsString: string read GetAsString;
property IsFailure: boolean read GetIsFailure;
property IsIgnoredTest: boolean read GetIsIgnoredTest;
property ExceptionMessage: string read GetExceptionMessage;
property ExceptionClassName: string read GetExceptionClassName;
property SourceUnitName: string read FSourceUnitName write FSourceUnitName;
property LineNumber: longint read FLineNumber write FLineNumber;
property FailedMethodName: string read FFailedMethodName write FFailedMethodName;
property TestLastStep: TTestStep read FTestLastStep write SetTestLastStep;
end;
ITestListener = interface
['{0CE9D3AE-882A-D811-9401-ADEB5E4C7FC1}']
procedure AddFailure(ATest: TTest; AFailure: TTestFailure);
procedure AddError(ATest: TTest; AError: TTestFailure);
procedure StartTest(ATest: TTest);
procedure EndTest(ATest: TTest);
procedure StartTestSuite(ATestSuite: TTestSuite);
procedure EndTestSuite(ATestSuite: TTestSuite);
end;
TTestCase = class(TAssert)
private
FName: string;
FTestSuiteName: string;
FEnableIgnores: boolean;
protected
function CreateResult: TTestResult; virtual;
procedure SetUp; virtual;
procedure TearDown; virtual;
procedure RunTest; virtual;
function GetTestName: string; override;
function GetTestSuiteName: string; override;
function GetEnableIgnores: boolean; override;
procedure SetTestSuiteName(const aName: string); override;
procedure SetTestName(const Value: string); virtual;
procedure SetEnableIgnores(Value: boolean); override;
procedure RunBare; virtual;
public
constructor Create; virtual;
constructor CreateWith(const ATestName: string; const ATestSuiteName: string); virtual;
constructor CreateWithName(const AName: string); virtual;
function CountTestCases: integer; override;
function CreateResultAndRun: TTestResult; virtual;
procedure Run(AResult: TTestResult); override;
function AsString: string;
property TestSuiteName: string read GetTestSuiteName write SetTestSuiteName;
published
property TestName: string read GetTestName write SetTestName;
end;
TTestCaseClass = class of TTestCase;
TTestSuite = class(TTest)
private
FTests: TFPList;
FName: string;
FTestSuiteName: string;
FEnableIgnores: boolean;
function GetTest(Index: integer): TTest;
protected
function GetTestName: string; override;
function GetTestSuiteName: string; override;
function GetEnableIgnores: boolean; override;
procedure SetTestSuiteName(const aName: string); override;
procedure SetTestName(const Value: string); virtual;
procedure SetEnableIgnores(Value: boolean); override;
public
constructor Create(AClass: TClass; AName: string); reintroduce; overload; virtual;
constructor Create(AClass: TClass); reintroduce; overload; virtual;
constructor Create(AClassArray: Array of TClass); reintroduce; overload; virtual;
constructor Create(AName: string); reintroduce; overload; virtual;
constructor Create; reintroduce; overload; virtual;
destructor Destroy; override;
function CountTestCases: integer; override;
procedure Run(AResult: TTestResult); override;
procedure RunTest(ATest: TTest; AResult: TTestResult); virtual;
procedure AddTest(ATest: TTest); overload; virtual;
procedure AddTestSuiteFromClass(ATestClass: TClass); virtual;
class function Warning(const aMessage: string): TTestCase;
property Test[Index: integer]: TTest read GetTest; default;
property TestSuiteName: string read GetTestSuiteName write SetTestSuiteName;
property TestName: string read GetTestName write SetTestName;
property Tests: TFPList read FTests;
end;
TProtect = procedure(aTest: TTest; aResult: TTestResult);
{ TTestResult }
TTestResult = class(TObject)
protected
FRunTests: integer;
FFailures: TFPList;
FIgnoredTests: TFPList;
FErrors: TFPList;
FListeners: TFPList;
FSkippedTests: TFPList;
FStartingTime: TDateTime;
function GetNumErrors: integer;
function GetNumFailures: integer;
function GetNumIgnoredTests: integer;
function GetNumSkipped: integer;
public
constructor Create; virtual;
destructor Destroy; override;
procedure ClearErrorLists;
procedure StartTest(ATest: TTest);
procedure AddFailure(ATest: TTest; E: EAssertionFailedError; aFailureList: TFPList);
procedure AddError(ATest: TTest; E: Exception; AUnitName: string;
AFailedMethodName: string; ALineNumber: longint);
procedure EndTest(ATest: TTest);
procedure AddListener(AListener: ITestListener);
procedure RemoveListener(AListener: ITestListener);
procedure Run(ATestCase: TTestCase);
procedure RunProtected(ATestCase: TTest; protect: TProtect);
function WasSuccessful: boolean;
function SkipTest(ATestCase: TTestCase): boolean;
procedure AddToSkipList(ATestCase: TTestCase);
procedure RemoveFromSkipList(ATestCase: TTestCase);
procedure StartTestSuite(ATestSuite: TTestSuite);
procedure EndTestSuite(ATestSuite: TTestSuite);
published
property Listeners: TFPList read FListeners;
property Failures: TFPList read FFailures;
property IgnoredTests: TFPList read FIgnoredTests;
property Errors: TFPList read FErrors;
property RunTests: integer read FRunTests;
property NumberOfErrors: integer read GetNumErrors;
property NumberOfFailures: integer read GetNumFailures;
property NumberOfIgnoredTests: integer read GetNumIgnoredTests;
property NumberOfSkippedTests: integer read GetNumSkipped;
property StartingTime: TDateTime read FStartingTime;
end;
function ComparisonMsg(const aExpected: string; const aActual: string; const aCheckEqual: boolean=true): string;
Resourcestring
SCompare = ' expected: <%s> but was: <%s>';
SCompareNotEqual = ' expected: not equal to <%s> but was: <%s>';
SExpectedNotSame = 'expected not same';
SExceptionCompare = 'Exception %s expected but %s was raised';
SMethodNotFound = 'Method <%s> not found';
SNoValidInheritance = ' does not inherit from TTestCase';
SNoValidTests = 'No valid tests found in ';
SNoException = 'no exception';
implementation
uses
testutils;
Const
sExpectedButWasFmt = 'Expected:' + LineEnding + '"%s"' + LineEnding + 'But was:' + LineEnding + '"%s"';
sExpectedButWasAndMessageFmt = '%s' + LineEnding + sExpectedButWasFmt;
sMsgActualEqualsExpFmt = '%s' + LineEnding + 'Expected ' + LineEnding + '< %s > ' + LineEnding + 'equals actual ' + LineEnding + '< %s >';
sActualEqualsExpFmt = 'Expected ' + LineEnding + '< %s > ' + LineEnding + 'equals actual ' + LineEnding + '< %s >';
{ This lets us use a single include file for both the Interface and
Implementation sections. }
{$undef read_interface}
{$define read_implementation}
type
TTestWarning = class(TTestCase)
private
FMessage: String;
protected
procedure RunTest; override;
end;
procedure TTestWarning.RunTest;
begin
Fail(FMessage);
end;
function ComparisonMsg(const aExpected: string; const aActual: string; const aCheckEqual: boolean=true): string;
// aCheckEqual=false gives the error message if the test does *not* expect the results to be the same.
begin
if aCheckEqual then
Result := format(SCompare, [aExpected, aActual])
else {check unequal requires opposite error message}
Result := format(SCompareNotEqual, [aExpected, aActual]);
end;
constructor EAssertionFailedError.Create;
begin
inherited Create('');
end;
constructor EAssertionFailedError.Create(const msg: string);
begin
inherited Create(msg);
end;
constructor TTestFailure.CreateFailure(ATest: TTest; E: Exception; LastStep: TTestStep);
begin
inherited Create;
FTestName := ATest.GetTestName;
FTestSuiteName := ATest.GetTestSuiteName;
FRaisedExceptionClass := E.ClassType;
FRaisedExceptionMessage := E.Message;
FTestLastStep := LastStep;
end;
function TTestFailure.GetAsString: string;
var
s: string;
begin
if FTestSuiteName <> '' then
s := FTestSuiteName + '.'
else
s := '';
Result := s + FTestName + ': ' + FRaisedExceptionMessage;
end;
function TTestFailure.GetExceptionClassName: string;
begin
if Assigned(FRaisedExceptionClass) then
Result := FRaisedExceptionClass.ClassName
else
Result := '<NIL>'
end;
function TTestFailure.GetExceptionMessage: string;
begin
Result := FRaisedExceptionMessage;
if TestLastStep = stSetUp then
Result := '[SETUP] ' + Result
else if TestLastStep = stTearDown then
Result := '[TEARDOWN] ' + Result;
end;
function TTestFailure.GetIsFailure: boolean;
begin
Result := FRaisedExceptionClass.InheritsFrom(EAssertionFailedError);
end;
function TTestFailure.GetIsIgnoredTest: boolean;
begin
Result := FRaisedExceptionClass.InheritsFrom(EIgnoredTest);
end;
procedure TTestFailure.SetTestLastStep(const Value: TTestStep);
begin
FTestLastStep := Value;
end;
{ TTest}
function TTest.GetTestName: string;
begin
Result := 'TTest';
end;
function TTest.GetTestSuiteName: string;
begin
Result := 'TTest';
end;
function TTest.CountTestCases: integer;
begin
Result := 0;
end;
function TTest.GetEnableIgnores: boolean;
begin
Result := True;
end;
procedure TTest.Run(AResult: TTestResult);
begin
{ do nothing }
end;
procedure TTest.Ignore(const AMessage: String);
begin
if EnableIgnores then raise EIgnoredTest.Create(AMessage);
end;
{ TAssert }
class procedure TAssert.Fail(const AMessage: String);
begin
raise EAssertionFailedError.Create(AMessage);
end;
class procedure TAssert.AssertTrue(const AMessage: String; ACondition: Boolean);
begin
if (not ACondition) then
Fail(AMessage);
end;
class procedure TAssert.AssertTrue(ACondition: Boolean);
begin
AssertTrue('', ACondition);
end;
class procedure TAssert.AssertFalse(const AMessage: String; ACondition: Boolean);
begin
AssertTrue(AMessage, not ACondition);
end;
class procedure TAssert.AssertFalse(ACondition: Boolean);
begin
AssertFalse('', ACondition);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: string);
begin
AssertTrue(AMessage + ComparisonMsg(Expected, Actual), AnsiCompareStr(Expected, Actual) = 0);
end;
class procedure TAssert.AssertEquals(Expected, Actual: string);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertNotNull(const AString: string);
begin
AssertNotNull('', AString);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: integer);
begin
AssertTrue(AMessage + ComparisonMsg(IntToStr(Expected), IntToStr(Actual)), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: integer);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: int64);
begin
AssertTrue(AMessage + ComparisonMsg(IntToStr(Expected), IntToStr(Actual)), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: int64);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: currency);
begin
AssertTrue(AMessage + ComparisonMsg(FloatToStr(Expected), FloatToStr(Actual)), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: currency);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual, Delta: double);
begin
AssertTrue(AMessage + ComparisonMsg(FloatToStr(Expected),FloatToStr(Actual)),
(Abs(Expected - Actual) <= Delta));
end;
class procedure TAssert.AssertEquals(Expected, Actual, Delta: double);
begin
AssertEquals('', Expected, Actual, Delta);
end;
class procedure TAssert.AssertNotNull(const AMessage, AString: string);
begin
AssertTrue(AMessage, AString <> '');
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: boolean);
begin
AssertTrue(AMessage + ComparisonMsg(BoolToStr(Expected, true), BoolToStr(Actual, true)), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: boolean);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: char);
begin
AssertTrue(AMessage + ComparisonMsg(Expected, Actual), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: char);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertEquals(const AMessage: string; Expected, Actual: TClass);
Function GetN(C : TClass) : string;
begin
if C=Nil then
Result:='<NIL>'
else
Result:=C.ClassName;
end;
begin
AssertTrue(AMessage + ComparisonMsg(GetN(Expected), GetN(Actual)), Expected = Actual);
end;
class procedure TAssert.AssertEquals(Expected, Actual: TClass);
begin
AssertEquals('', Expected, Actual);
end;
class procedure TAssert.AssertSame(const AMessage: string; Expected, Actual: TObject);
begin
AssertTrue(AMessage + ComparisonMsg(IntToStr(PtrInt(Expected)), IntToStr(PtrInt(Actual))),
Expected = Actual);
end;
class procedure TAssert.AssertSame(Expected, Actual: TObject);
begin
AssertSame('', Expected, Actual);
end;
class procedure TAssert.AssertSame(const AMessage: string; Expected, Actual: Pointer);
begin
AssertTrue(AMessage + ComparisonMsg(IntToStr(PtrInt(Expected)), IntToStr(PtrInt(Actual))),
Expected = Actual);
end;
class procedure TAssert.AssertSame(Expected, Actual: Pointer);
begin
AssertSame('', Expected, Actual);
end;
class procedure TAssert.AssertNotSame(const AMessage: string; Expected, Actual: TObject);
begin
AssertFalse(SExpectedNotSame, Expected = Actual);
end;
class procedure TAssert.AssertNotSame(Expected, Actual: TObject);
begin
AssertNotSame('', Expected, Actual);
end;
class procedure TAssert.AssertNotSame(const AMessage: string; Expected, Actual: Pointer);
begin
AssertFalse(SExpectedNotSame, Expected = Actual);
end;
class procedure TAssert.AssertNotSame(Expected, Actual: Pointer);
begin
AssertNotSame('', Expected, Actual);
end;
class procedure TAssert.AssertNotNull(const AMessage: string; AObject: TObject);
begin
AssertTrue(AMessage, (AObject <> nil));
end;
class procedure TAssert.AssertNotNull(AObject: TObject);
begin
AssertNotNull('', AObject);
end;
class procedure TAssert.AssertNotNullIntf(const AMessage: string; AInterface: IInterface);
begin
AssertTrue(AMessage, (AInterface <> nil));
end;
class procedure TAssert.AssertNotNullIntf(AInterface: IInterface);
begin
AssertNotNull('', AInterface);
end;
class procedure TAssert.AssertNotNull(const AMessage: string; APointer: Pointer);
begin
AssertTrue(AMessage, (APointer <> nil));
end;
class procedure TAssert.AssertNotNull(APointer: Pointer);
begin
AssertNotNull('', APointer);
end;
class procedure TAssert.AssertNull(const AMessage: string; AObject: TObject);
begin
AssertTrue(AMessage, (AObject = nil));
end;
class procedure TAssert.AssertNull(AObject: TObject);
begin
AssertNull('', AObject);
end;
class procedure TAssert.AssertNullIntf(const AMessage: string; AInterface: IInterface);
begin
AssertTrue(AMessage, (AInterface = nil));
end;
class procedure TAssert.AssertNullINtf(AInterface: IInterface);
begin
AssertNull('', AInterface);
end;
class procedure TAssert.AssertNull(const AMessage: string; APointer: Pointer);
begin
AssertTrue(AMessage, (APointer = nil));
end;
class procedure TAssert.AssertNull(APointer: Pointer);
begin
AssertNull('', APointer);
end;
class procedure TAssert.AssertException(const AMessage: string; AExceptionClass: ExceptClass;
AMethod: TRunMethod);
var
Passed : Boolean;
ExceptionName: string;
begin
Passed := False;
try
AMethod;
ExceptionName:=SNoException;
except
on E: Exception do
begin
ExceptionName := E.ClassName;
if E.ClassType.InheritsFrom(AExceptionClass) then
begin
Passed := AExceptionClass.ClassName = E.ClassName;
end;
end;
end;
AssertTrue(Format(SExceptionCompare, [AExceptionClass.ClassName, ExceptionName])+ ': ' + AMessage, Passed);
end;
class procedure TAssert.AssertException(AExceptionClass: ExceptClass;
AMethod: TRunMethod);
begin
AssertException('', AExceptionClass, AMethod);
end;
{ DUnit compatibility interface }
{$IFDEF DUnit}
{$I DUnitCompatibleInterface.inc}
{$ENDIF DUnit}
constructor TTestCase.Create;
begin
inherited Create;
FEnableIgnores := True;
end;
constructor TTestCase.CreateWithName(const AName: string);
begin
Create;
FName := AName;
end;
constructor TTestCase.CreateWith(const ATestName: string; const ATestSuiteName: string);
begin
Create;
FName := ATestName;
FTestSuiteName := ATestSuiteName;
end;
function TTestCase.AsString: string;
begin
Result := TestName + '(' + ClassName + ')';
end;
function TTestCase.CountTestCases: integer;
begin
Result := 1;
end;
function TTestCase.CreateResult: TTestResult;
begin
Result := TTestResult.Create;
end;
function TTestCase.GetTestName: string;
begin
Result := FName;
end;
function TTestCase.GetEnableIgnores: boolean;
begin
Result := FEnableIgnores;
end;
function TTestCase.GetTestSuiteName: string;
begin
Result := FTestSuiteName;
end;
procedure TTestCase.SetTestSuiteName(const aName: string);
begin
if FTestSuiteName <> aName then
FTestSuiteName := aName;
end;
procedure TTestCase.SetTestName(const Value: string);
begin
FName := Value;
end;
procedure TTestCase.SetEnableIgnores(Value: boolean);
begin
FEnableIgnores := Value;
end;
function TTestCase.CreateResultAndRun: TTestResult;
begin
Result := CreateResult;
Run(Result);
end;
procedure TTestCase.Run(AResult: TTestResult);
begin
(AResult).Run(Self);
end;
procedure TTestCase.RunBare;
begin
FLastStep := stSetUp;
SetUp;
try
FLastStep := stRunTest;
RunTest;
FLastStep := stTearDown;
finally
TearDown;
end;
FLastStep := stNothing;
end;
procedure TTestCase.RunTest;
var
m: TMethod;
RunMethod: TRunMethod;
pMethod : Pointer;
begin
AssertNotNull('name of the test not assigned', FName);
pMethod := Self.MethodAddress(FName);
if (Assigned(pMethod)) then
begin
m.Code := pMethod;
m.Data := self;
RunMethod := TRunMethod(m);
RunMethod;
end
else
begin
Fail(format(SMethodNotFound, [FName]));
end;
end;
procedure TTestCase.SetUp;
begin
{ do nothing }
end;
procedure TTestCase.TearDown;
begin
{ do nothing }
end;
constructor TTestSuite.Create(AClass: TClass; AName: string);
begin
Create(AClass);
FName := AName;
end;
constructor TTestSuite.Create(AClass: TClass);
var
ml: TStringList;
i: integer;
tc: TTestCaseClass;
begin
TAssert.AssertNotNull(AClass);
Create(AClass.ClassName);
if AClass.InheritsFrom(TTestCase) then
begin
tc := TTestCaseClass(AClass);
ml := TStringList.Create;
try
GetMethodList(AClass, ml);
for i := 0 to ml.Count -1 do
begin
AddTest(tc.CreateWith(ml.Strings[i], tc.ClassName));
end;
finally
ml.Free;
end;
end
else
AddTest(Warning(AClass.ClassName + SNoValidInheritance));
if FTests.Count = 0 then
AddTest(Warning(SNoValidTests + AClass.ClassName));
end;
constructor TTestSuite.Create(AClassArray: Array of TClass);
var
i: integer;
begin
Create;
for i := Low(AClassArray) to High(AClassArray) do
if Assigned(AClassArray[i]) then
AddTest(TTestSuite.Create(AClassArray[i]));
end;
constructor TTestSuite.Create(AName: string);
begin
Create();
FName := AName;
end;
constructor TTestSuite.Create;
begin
inherited Create;
FTests := TFPList.Create;
FEnableIgnores := True;
end;
destructor TTestSuite.Destroy;
begin
FreeObjects(FTests);
FTests.Free;
inherited Destroy;
end;
function TTestSuite.GetTest(Index: integer): TTest;
begin
Result := TTest(FTests[Index]);
end;
function TTestSuite.GetTestName: string;
begin
Result := FName;
end;
function TTestSuite.GetTestSuiteName: string;
begin
Result := FTestSuiteName;
end;
function TTestSuite.GetEnableIgnores: boolean;
begin
Result := FEnableIgnores;
end;
procedure TTestSuite.SetTestName(const Value: string);
begin
FName := Value;
end;
procedure TTestSuite.SetTestSuiteName(const aName: string);
begin
if FTestSuiteName <> aName then
FTestSuiteName := aName;
end;
procedure TTestSuite.SetEnableIgnores(Value: boolean);
var
i: integer;
begin
if FEnableIgnores <> Value then
begin
FEnableIgnores := Value;
for i := 0 to FTests.Count - 1 do
TTest(FTests[i]).EnableIgnores := Value;
end
end;
function TTestSuite.CountTestCases: integer;
var
i: integer;
begin
Result := 0;
for i := 0 to FTests.Count - 1 do
begin
Result := Result + TTest(FTests[i]).CountTestCases;
end;
end;
procedure TTestSuite.Run(AResult: TTestResult);
var
i: integer;
begin
if FTests.Count > 0 then
AResult.StartTestSuite(self);
for i := 0 to FTests.Count - 1 do
RunTest(TTest(FTests[i]), AResult);
if FTests.Count > 0 then
AResult.EndTestSuite(self);
end;
procedure TTestSuite.RunTest(ATest: TTest; AResult: TTestResult);
begin
ATest.Run(AResult);
end;
procedure TTestSuite.AddTest(ATest: TTest);
begin
FTests.Add(ATest);
if ATest.TestSuiteName = '' then
ATest.TestSuiteName := Self.TestName;
ATest.EnableIgnores := Self.EnableIgnores;
end;
procedure TTestSuite.AddTestSuiteFromClass(ATestClass: TClass);
begin
AddTest(TTestSuite.Create(ATestClass));
end;
class function TTestSuite.Warning(const aMessage: string): TTestCase;
var
w: TTestWarning;
begin
w := TTestWarning.Create;
w.FMessage := aMessage;
Result := w;
end;
constructor TTestResult.Create;
begin
inherited Create;
FFailures := TFPList.Create;
FIgnoredTests := TFPList.Create;
FErrors := TFPList.Create;
FListeners := TFPList.Create;
FSkippedTests := TFPList.Create;
FStartingTime := Now;
end;
destructor TTestResult.Destroy;
begin
FreeObjects(FFailures);
FFailures.Free;
FreeObjects(FIgnoredTests);
FIgnoredTests.Free;
FreeObjects(FErrors);
FErrors.Free;
FListeners.Free;
FSkippedTests.Free;
end;
procedure TTestResult.ClearErrorLists;
begin
FreeObjects(FFailures);
FFailures.Clear;
FreeObjects(FIgnoredTests);
FIgnoredTests.Clear;
FreeObjects(FErrors);
FErrors.Clear;
end;
function TTestResult.GetNumErrors: integer;
begin
Result := FErrors.Count;
end;
function TTestResult.GetNumFailures: integer;
begin
Result := FFailures.Count;
end;
function TTestResult.GetNumIgnoredTests: integer;
begin
Result := FIgnoredTests.Count;
end;
function TTestResult.GetNumSkipped: integer;
begin
Result := FSkippedTests.Count;
end;
procedure TTestResult.AddListener(AListener: ITestListener);
begin
FListeners.Add(pointer(AListener));
end;
procedure TTestResult.RemoveListener(AListener: ITestListener);
begin
FListeners.Remove(pointer(AListener));
end;
procedure TTestResult.AddFailure(ATest: TTest; E: EAssertionFailedError; aFailureList: TFPList);
var
i: integer;
f: TTestFailure;
begin
//lock mutex
f := TTestFailure.CreateFailure(ATest, E, ATest.LastStep);
aFailureList.Add(f);
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).AddFailure(ATest, f);
//unlock mutex
end;
procedure TTestResult.AddError(ATest: TTest; E: Exception;
AUnitName: string; AFailedMethodName: string; ALineNumber: longint);
var
i: integer;
f: TTestFailure;
begin
//lock mutex
f := TTestFailure.CreateFailure(ATest, E, ATest.LastStep);
f.SourceUnitName := AUnitName;
f.FailedMethodName := AFailedMethodName;
f.LineNumber := ALineNumber;
FErrors.Add(f);
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).AddError(ATest, f);
//unlock mutex
end;
procedure TTestResult.EndTest(ATest: TTest);
var
i: integer;
begin
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).EndTest(ATest);
end;
procedure ProtectTest(aTest: TTest; aResult: TTestResult);
begin
TTestCase(aTest).RunBare;
end;
procedure TTestResult.Run(ATestCase: TTestCase);
begin
if not SkipTest(ATestCase) then
begin
StartTest(ATestCase);
RunProtected(ATestCase, @ProtectTest);
EndTest(ATestCase);
end;
end;
procedure TTestResult.RunProtected(ATestCase: TTest; protect: TProtect);
var
func, source: shortstring;
line: longint;
begin
func := '';
source := '';
line := 0;
try
protect(ATestCase, Self);
except
on E: EIgnoredTest do
AddFailure(ATestCase, E, FIgnoredTests);
on E: EAssertionFailedError do
AddFailure(ATestCase, E, FFailures);
on E: Exception do
begin
{$ifdef SHOWLINEINFO}
GetLineInfo(LongWord(ExceptAddr), func, source, line);
{$endif}
AddError(ATestCase, E, source, func, line);
end;
end;
end;
procedure TTestResult.StartTest(ATest: TTest);
var
count: integer;
i: integer;
begin
count := ATest.CountTestCases;
//lock mutex
FRunTests := FRunTests + count;
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).StartTest(ATest);
//unlock mutex
end;
function TTestResult.WasSuccessful: boolean;
begin
//lock mutex
Result := (FErrors.Count = 0) and (FFailures.Count = 0);
//unlock mutex
end;
function TTestResult.SkipTest(ATestCase: TTestCase): Boolean;
var
i: integer;
begin
Result := false;
if FSkippedTests.Count = 0 then
begin
result := false;
Exit;
end
else
for i := 0 to FSkippedTests.Count - 1 do
begin
if PtrInt(FSkippedTests[i]) = PtrInt(ATestCase) then
begin
Result := true;
Exit;
end;
end;
end;
procedure TTestResult.AddToSkipList(ATestCase: TTestCase);
begin
FSkippedTests.Add(ATestCase);
end;
procedure TTestResult.RemoveFromSkipList(ATestCase: TTestCase);
begin
FSkippedTests.Remove(ATestCase);
end;
procedure TTestResult.StartTestSuite(ATestSuite: TTestSuite);
var
i: integer;
begin
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).StartTestSuite(ATestSuite);
end;
procedure TTestResult.EndTestSuite(ATestSuite: TTestSuite);
var
i: integer;
begin
for i := 0 to FListeners.Count - 1 do
ITestListener(FListeners[i]).EndTestSuite(ATestSuite);
end;
end.
|