-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
mormot.core.test.pas
1635 lines (1520 loc) · 56 KB
/
mormot.core.test.pas
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
/// Framework Core Unit and Regression Testing
// - this unit is a part of the Open Source Synopse mORMot framework 2,
// licensed under a MPL/GPL/LGPL three license - see LICENSE.md
unit mormot.core.test;
{
*****************************************************************************
Testing functions shared by all framework units
- Unit-Testing classes and functions
*****************************************************************************
}
interface
{$I ..\mormot.defines.inc}
uses
sysutils,
mormot.core.base,
mormot.core.data,
mormot.core.os,
mormot.core.unicode,
mormot.core.text,
mormot.core.buffers,
mormot.core.datetime,
mormot.core.rtti,
mormot.core.perf,
mormot.core.log;
{ ************ Unit-Testing classes and functions }
type
/// the prototype of an individual test
// - to be used with TSynTest descendants
TOnSynTest = procedure of object;
/// allows to tune TSynTest process
// - tcoLogEachCheck will log as sllCustom4 each non void Check() message
// - tcoLogInSubFolder will log within a '[executable]\log\' sub-folder
// - tcoLogVerboseRotate will force the log files to rotate - could be set if
// you expect test logs to be huge, bigger than what LogView supports
// - tcoLogNotHighResolution will log the current time as plain ISO-8601 text
TSynTestOption = (
tcoLogEachCheck,
tcoLogInSubFolder,
tcoLogVerboseRotate,
tcoLogNotHighResolution);
/// set of options to tune TSynTest process
TSynTestOptions = set of TSynTestOption;
TSynTest = class;
/// how published method information is stored within TSynTest
TSynTestMethodInfo = record
/// the uncamelcased method name
TestName: string;
/// ready-to-be-displayed 'Ident - TestName' text, as UTF-8
IdentTestName: RawUtf8;
/// raw method name, as defined in pascal code (not uncamelcased)
MethodName: RawUtf8;
/// direct access to the method execution
Method: TOnSynTest;
/// the test case holding this method
Test: TSynTest;
/// the index of this method in the TSynTestCase
MethodIndex: integer;
end;
/// pointer access to published method information
PSynTestMethodInfo = ^TSynTestMethodInfo;
/// abstract parent class for both tests suit (TSynTests) and cases (TSynTestCase)
// - purpose of this ancestor is to have RTTI for its published methods,
// and to handle a class text identifier, or uncamelcase its class name
// if no identifier was defined
// - sample code about how to use this test framework is available in
// the "Sample\07 - SynTest" folder
TSynTest = class(TSynPersistent)
protected
fTests: array of TSynTestMethodInfo;
fIdent: string;
fInternalTestsCount: integer;
fOptions: TSynTestOptions;
fWorkDir: TFileName;
fRestrict: TRawUtf8DynArray;
function GetCount: integer;
function GetIdent: string;
procedure SetWorkDir(const Folder: TFileName);
public
/// create the test instance
// - if an identifier is not supplied, the class name is used, after
// T[Syn][Test] left trim and un-camel-case
// - this constructor will add all published methods to the internal
// test list, accessible via the Count/TestName/TestMethod properties
constructor Create(const Ident: string = ''); reintroduce; virtual;
/// register a specified test to this class instance
// - Create will register all published methods of this class, but
// your code may initialize its own set of methods on need
procedure Add(const aMethod: TOnSynTest;
const aMethodName: RawUtf8; const aIdent: string);
/// the test name
// - either the Ident parameter supplied to the Create() method, either
// a uncameled text from the class name
property Ident: string
read GetIdent;
/// return the number of tests associated with this class
// - i.e. the number of registered tests by the Register() method PLUS
// the number of published methods defined within this class
property Count: integer
read GetCount;
/// return the number of published methods defined within this class as tests
// - i.e. the number of tests added by the Create() constructor from RTTI
// - any TestName/TestMethod[] index higher or equal to this value has been
// added by a specific call to the Add() method
property InternalTestsCount: integer
read fInternalTestsCount;
/// allows to tune the test case process
property Options: TSynTestOptions
read fOptions write fOptions;
/// folder name which can be used to store the temporary data during testing
// - equals Executable.ProgramFilePath by default
// - when set, will ensure it contains a trailing path delimiter (\ or /)
property WorkDir: TFileName
read fWorkDir write SetWorkDir;
/// list of 'class.method' names to restrict the tests for Run
// - as retrieved from "--test class.method" command line switch
property Restrict: TRawUtf8DynArray
read fRestrict write fRestrict;
published
{ all published methods of the children will be run as individual tests
- these methods must be declared as procedure with no parameter }
end;
/// callback signature as used by TSynTestCase.CheckRaised
// - passed parameters can be converted e.g. using VarRecToUtf8/VarRecToInt64
TOnTestCheck = procedure(const Params: array of const) of object;
TSynTests = class;
/// a class implementing a test case
// - should handle a test unit, i.e. one or more tests
// - individual tests are written in the published methods of this class
TSynTestCase = class(TSynTest)
protected
fOwner: TSynTests;
fAssertions: integer;
fAssertionsFailed: integer;
fAssertionsBeforeRun: integer;
fAssertionsFailedBeforeRun: integer;
/// any number not null assigned to this field will display a "../s" stat
fRunConsoleOccurrenceNumber: cardinal;
/// any number not null assigned to this field will display a "using .. MB" stat
fRunConsoleMemoryUsed: Int64;
/// any text assigned to this field will be displayed on console
fRunConsole: string;
fCheckLogTime: TPrecisionTimer;
fCheckLastMsg: cardinal;
fCheckLastTix: cardinal;
/// called before all published properties are executed
procedure Setup; virtual;
/// called after all published properties are executed
// - WARNING: this method should be re-entrant - so using FreeAndNil() is
// a good idea in this method :)
procedure CleanUp; virtual;
/// called before each published properties execution
procedure MethodSetup; virtual;
/// called after each published properties execution
procedure MethodCleanUp; virtual;
procedure AddLog(condition: boolean; const msg: string);
procedure DoCheckUtf8(condition: boolean; const msg: RawUtf8;
const args: array of const);
public
/// create the test case instance
// - must supply a test suit owner
// - if an identifier is not supplied, the class name is used, after
// T[Syn][Test] left trim and un-camel-case
constructor Create(Owner: TSynTests; const Ident: string = ''); reintroduce; virtual;
/// clean up the instance
// - will call CleanUp, even if already done before
destructor Destroy; override;
/// used by the published methods to run a test assertion
// - condition must equals TRUE to pass the test
procedure Check(condition: boolean; const msg: string = '');
{$ifdef HASSAFEINLINE}inline;{$endif} // Delphi 2007 has trouble inlining this
/// used by the published methods to run a test assertion
// - condition must equals TRUE to pass the test
// - function return TRUE if the condition failed, in order to allow the
// caller to stop testing with such code:
// ! if CheckFailed(A=10) then exit;
function CheckFailed(condition: boolean; const msg: string = ''): boolean;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run a test assertion
// - condition must equals FALSE to pass the test
// - function return TRUE if the condition failed, in order to allow the
// caller to stop testing with such code:
// ! if CheckNot(A<>10) then exit;
function CheckNot(condition: boolean; const msg: string = ''): boolean;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run test assertion against integers
// - if a<>b, will fail and include '#<>#' text before the supplied msg
function CheckEqual(a, b: Int64; const msg: RawUtf8 = ''): boolean; overload;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run test assertion against UTF-8 strings
// - if a<>b, will fail and include '#<>#' text before the supplied msg
function CheckEqual(const a, b: RawUtf8; const msg: RawUtf8 = ''): boolean; overload;
/// used by the published methods to run test assertion against UTF-8 strings
// - if Trim(a)<>Trim(b), will fail and include '#<>#' text before the supplied msg
function CheckEqualTrim(const a, b: RawUtf8; const msg: RawUtf8 = ''): boolean;
/// used by the published methods to run test assertion against pointers/classes
// - if a<>b, will fail and include '#<>#' text before the supplied msg
function CheckEqual(a, b: pointer; const msg: RawUtf8 = ''): boolean; overload;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run test assertion against integers
// - if a=b, will fail and include '#=#' text before the supplied msg
function CheckNotEqual(a, b: Int64; const msg: RawUtf8 = ''): boolean; overload;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run test assertion against UTF-8 strings
// - if a=b, will fail and include '#=#' text before the supplied msg
function CheckNotEqual(const a, b: RawUtf8; const msg: RawUtf8 = ''): boolean; overload;
/// used by the published methods to run test assertion against pointers/classes
// - if a=b, will fail and include '#=#' text before the supplied msg
function CheckNotEqual(a, b: pointer; const msg: RawUtf8 = ''): boolean; overload;
{$ifdef HASSAFEINLINE}inline;{$endif}
/// used by the published methods to run a test assertion about two double values
// - includes some optional precision argument
function CheckSame(const Value1, Value2: double;
const Precision: double = DOUBLE_SAME; const msg: string = ''): boolean;
/// used by the published methods to run a test assertion about two TDateTime values
// - allows an error of up to 1 second between the values
function CheckSameTime(const Value1, Value2: TDateTime; const msg: string = ''): boolean;
/// used by the published methods to perform a string comparison with several values
// - test passes if (Value=Values[0]) or (Value=Value[1]) or (Value=Values[2])...
// and ExpectedResult=true
function CheckMatchAny(const Value: RawUtf8; const Values: array of RawUtf8;
CaseSentitive: boolean = true; ExpectedResult: boolean = true; const msg: string = ''): boolean;
/// used by the published methods to run a test assertion, with an UTF-8 error message
// - condition must equals TRUE to pass the test
procedure CheckUtf8(condition: boolean; const msg: RawUtf8); overload;
{$ifdef HASINLINE}inline;{$endif}
/// used by the published methods to run a test assertion, with a error
// message computed via FormatUtf8()
// - condition must equals TRUE to pass the test
procedure CheckUtf8(condition: boolean; const msg: RawUtf8;
const args: array of const); overload;
/// used by the published methods to execute a Method with the given
// parameters, and ensure a (optionally specific) exception is raised
function CheckRaised(const Method: TOnTestCheck; const Params: array of const;
Raised: ExceptionClass = nil): boolean;
/// used by published methods to start some timing on associated log
// - call this once, before one or several consecutive CheckLogTime()
// - warning: this method is not thread-safe
procedure CheckLogTimeStart;
{$ifdef HASINLINE}inline;{$endif}
/// used by published methods to write some timing on associated log
// - at least one CheckLogTimeStart method call should happen to reset the
// internal timer
// - condition must equals TRUE to pass the test
// - the supplied message would be appended, with its timing
// - warning: this method is not thread-safe
procedure CheckLogTime(condition: boolean; const msg: RawUtf8;
const args: array of const; level: TSynLogLevel = sllTrace);
/// used by the published methods to run test assertion against a Hash32() constant
procedure CheckHash(const data: RawByteString; expectedhash32: cardinal;
const msg: RawUtf8 = '');
/// create a temporary string random content, WinAnsi (code page 1252) content
class function RandomString(CharCount: integer): WinAnsiString;
/// create a temporary UTF-8 string random content, using WinAnsi
// (code page 1252) content
class function RandomUtf8(CharCount: integer): RawUtf8;
/// create a temporary UTF-16 string random content, using WinAnsi
// (code page 1252) content
class function RandomUnicode(CharCount: integer): SynUnicode;
/// create a temporary string random content, using ASCII 7-bit content
class function RandomAnsi7(CharCount: integer): RawByteString;
/// create a temporary string random content, using A..Z,_,0..9 chars only
class function RandomIdentifier(CharCount: integer): RawByteString;
/// create a temporary string random content, using uri-compatible chars only
class function RandomUri(CharCount: integer): RawByteString;
/// create a temporary string, containing some fake text, with paragraphs
class function RandomTextParagraph(WordCount: integer; LastPunctuation: AnsiChar = '.';
const RandomInclude: RawUtf8 = ''): RawUtf8;
/// add containing some "bla bli blo blu" fake text, with paragraphs
class procedure AddRandomTextParagraph(WR: TTextWriter; WordCount: integer;
LastPunctuation: AnsiChar = '.'; const RandomInclude: RawUtf8 = '';
NoLineFeed: boolean = false);
/// this method is triggered internally - e.g. by Check() - when a test failed
procedure TestFailed(const msg: string);
/// will add to the console a message with a speed estimation
// - speed is computed from the method start or supplied local Timer
// - returns the number of microsec of the (may be specified) timer
// - any ItemCount<0 would hide the trailing count and use abs(ItemCount)
// - OnlyLog will compute and append the info to the log, but not on console
// - warning: this method is thread-safe only if a local Timer is specified
function NotifyTestSpeed(const ItemName: string; ItemCount: integer;
SizeInBytes: QWord = 0; Timer: PPrecisionTimer = nil;
OnlyLog: boolean = false): TSynMonitorOneMicroSec; overload;
/// will add to the console a formatted message with a speed estimation
function NotifyTestSpeed(
const ItemNameFmt: RawUtf8; const ItemNameArgs: array of const;
ItemCount: integer; SizeInBytes: QWord = 0; Timer: PPrecisionTimer = nil;
OnlyLog: boolean = false): TSynMonitorOneMicroSec; overload;
/// append some text to the current console
// - OnlyLog will compute and append the info to the log, but not on the console
procedure AddConsole(const msg: string; OnlyLog: boolean = false); overload;
/// append some text to the current console
procedure AddConsole(const Fmt: RawUtf8; const Args: array of const;
OnlyLog: boolean = false); overload;
/// append some text to the current console in real time, on the same line
// - the information is flushed to the console immediately, whereas
// AddConsole() append it into a buffer to be written once
procedure NotifyProgress(const Args: array of const;
Color: TConsoleColor = ccGreen);
/// the test suit which owns this test case
property Owner: TSynTests
read fOwner;
/// the human-readable test name
// - either the Ident parameter supplied to the Create() method, either
// an uncameled text from the class name
property Ident: string
read GetIdent;
/// the number of assertions (i.e. Check() method call) for this test case
property Assertions: integer
read fAssertions;
/// the number of failures (i.e. Check(false) method call) for this test case
property AssertionsFailed: integer
read fAssertionsFailed;
published
{ all published methods of the children will be run as individual tests
- these methods must be declared as procedure with no parameter
- the method name will be used, after "uncamelcasing", for display }
end;
/// class-reference type (metaclass) of a test case
TSynTestCaseClass = class of TSynTestCase;
/// information about a failed test
TSynTestFailed = record
/// the contextual message associated with this failed test
Error: string;
/// the uncamelcased method name
TestName: string;
/// ready-to-be-displayed 'TestCaseIdent - TestName' text, as UTF-8
IdentTestName: RawUtf8;
end;
TSynTestFaileds = array of TSynTestFailed;
/// event signature for TSynTests.CustomOutput callback
TOnSynTestOutput = procedure(const value: RawUtf8) of object;
/// a class used to run a suit of test cases
TSynTests = class(TSynTest)
protected
fTestCaseClass: array of TSynTestCaseClass;
fAssertions: integer;
fAssertionsFailed: integer;
fSafe: TSynLocker;
/// any number not null assigned to this field will display a "../sec" stat
fRunConsoleOccurrenceNumber: cardinal;
fCurrentMethodInfo: PSynTestMethodInfo;
fFailed: TSynTestFaileds;
fFailedCount: integer;
fNotifyProgressLineLen: integer;
fNotifyProgress: RawUtf8;
fSaveToFileBeforeExternal: THandle;
procedure EndSaveToFileExternal;
function GetFailedCount: integer;
function GetFailed(Index: integer): TSynTestFailed;
/// low-level output on the console - use TSynTestCase.AddConsole instead
procedure DoText(const value: RawUtf8); overload; virtual;
/// low-level output on the console - use TSynTestCase.AddConsole instead
procedure DoText(const values: array of const); overload;
/// low-level output on the console - use TSynTestCase.AddConsole instead
procedure DoTextLn(const values: array of const); overload;
/// low-level set the console text color - use TSynTestCase.AddConsole instead
procedure DoColor(aColor: TConsoleColor);
/// low-level output on the console with automatic formatting
// - use TSynTestCase.NotifyProgress() instead
procedure DoNotifyProgress(const value: RawUtf8; cc: TConsoleColor);
/// called when a test case failed: default is to add item to fFailed[]
procedure AddFailed(const msg: string); virtual;
/// this method is called before every run
// - default implementation will just return nil
// - can be overridden to implement a per-test case logging for instance
function BeforeRun: IUnknown; virtual;
/// this method is called during the run, after every testcase
// - this implementation just report some minimal data to the console
// by default, but may be overridden to update a real UI or reporting system
// - method implementation can use fCurrentMethodInfo^ to get run context
procedure AfterOneRun; virtual;
/// could be overriden to add some custom command-line parameters
class procedure DescribeCommandLine; virtual;
public
/// you can put here some text to be displayed at the end of the messages
// - some internal versions, e.g.
// - every line of text must explicitly BEGIN with CRLF
CustomVersions: string;
/// allow redirection to any kind of output
// - will be called in addition to default console write()
CustomOutput: TOnSynTestOutput;
/// contains the run elapsed time
RunTimer, TestTimer, TotalTimer: TPrecisionTimer;
/// create the test suit
// - if an identifier is not supplied, the class name is used, after
// T[Syn][Test] left trim and un-camel-case
// - this constructor will add all published methods to the internal
// test list, accessible via the Count/TestName/TestMethod properties
constructor Create(const Ident: string = ''); override;
/// finalize the class instance
// - release all registered Test case instance
destructor Destroy; override;
/// you can call this class method to perform all the tests on the Console
// - it will create an instance of the corresponding class, with the
// optional identifier to be supplied to its constructor
// - if the executable was launched with a parameter, it will be used as
// file name for the output - otherwise, tests information will be written
// to the console
// - it will optionally enable full logging during the process
// - a typical use will first assign the same log class for the whole
// framework - in such case, before calling RunAsConsole(), the caller
// should execute:
// ! TSynLogTestLog := TSqlLog;
// ! TMyTestsClass.RunAsConsole('My Automated Tests',LOG_VERBOSE);
class procedure RunAsConsole(const CustomIdent: string = '';
withLogs: TSynLogLevels = [sllLastError, sllError, sllException, sllExceptionOS, sllFail];
options: TSynTestOptions = []; const workdir: TFileName = ''); virtual;
/// save the debug messages into an external file
// - if no file name is specified, the current Ident is used
// - will also redirect the main StdOut variable into the specified file
procedure SaveToFile(const DestPath: TFileName; const FileName: TFileName = '');
/// register a specified Test case from its class name
// - an instance of the supplied class will be created during Run
// - the published methods of the children must call this method in order
// to add test cases
// - example of use (code from a TSynTests published method):
// ! AddCase(TOneTestCase);
procedure AddCase(TestCase: TSynTestCaseClass); overload;
/// register a specified Test case from its class name
// - an instance of the supplied classes will be created during Run
// - the published methods of the children must call this method in order
// to add test cases
// - example of use (code from a TSynTests published method):
// ! AddCase([TOneTestCase]);
procedure AddCase(const TestCase: array of TSynTestCaseClass); overload;
/// call of this method will run all associated tests cases
// - function will return TRUE if all test passed
// - all failed test cases will be added to the Failed[] list - which is
// cleared at the beginning of the run
// - Assertions and AssertionsFailed counter properties are reset and
// computed during the run
// - you may override the DescribeCommandLine method to provide additional
// information, e.g.
// ! function TMySynTests.Run: boolean;
// ! begin // need mormot.db.raw.sqlite3 unit in the uses clause
// ! CustomVersions := format(CRLF + CRLF + '%s' + CRLF + ' %s' + CRLF +
// ! 'Using mORMot %s' + CRLF + ' %s %s', [OSVersionText, CpuInfoText,
// ! SYNOPSE_FRAMEWORK_FULLVERSION, sqlite3.ClassName, sqlite3.Version]);
// ! result := inherited Run;
// ! end;
function Run: boolean; virtual;
/// could be overriden to redirect the content to proper TSynLog.Log()
procedure DoLog(Level: TSynLogLevel; const TextFmt: RawUtf8;
const TextArgs: array of const); virtual;
/// number of failed tests after the last call to the Run method
property FailedCount: integer
read GetFailedCount;
/// method information currently running
// - is set by Run and available within TTestCase methods
property CurrentMethodInfo: PSynTestMethodInfo
read fCurrentMethodInfo;
/// retrieve the information associated with a failure
property Failed[Index: integer]: TSynTestFailed
read GetFailed;
published
/// the number of assertions (i.e. Check() method call) in all tests
// - this property is set by the Run method above
property Assertions: integer
read fAssertions;
/// the number of assertions (i.e. Check() method call) which failed in all tests
// - this property is set by the Run method above
property AssertionsFailed: integer
read fAssertionsFailed;
published
{ all published methods of the children will be run as test cases registering
- these methods must be declared as procedure with no parameter
- every method should create a customized TSynTestCase instance,
which will be registered with the AddCase() method, then automaticaly
destroyed during the TSynTests destroy }
end;
/// this overridden class will create a .log file in case of a test case failure
// - inherits from TSynTestsLogged instead of TSynTests in order to add
// logging to your test suite (via a dedicated TSynLogTest instance)
TSynTestsLogged = class(TSynTests)
protected
fLogFile: TSynLog;
fConsoleDup: RawUtf8;
procedure CustomConsoleOutput(const value: RawUtf8);
/// called when a test case failed: log into the file
procedure AddFailed(const msg: string); override;
/// this method is called before every run
// - overridden implementation to implement a per-test case logging
function BeforeRun: IUnknown; override;
public
/// create the test instance and initialize associated LogFile instance
// - this will allow logging of all exceptions to the LogFile
constructor Create(const Ident: string = ''); override;
/// release associated memory
destructor Destroy; override;
/// the .log file generator created if any test case failed
property LogFile: TSynLog
read fLogFile;
/// a replicate of the text written to the console
property ConsoleDup: RawUtf8
read fConsoleDup;
end;
const
EQUAL_MSG = '%<>% %';
NOTEQUAL_MSG = '%=% %';
var
/// the kind of .log file generated by TSynTestsLogged
TSynLogTestLog: TSynLogClass = TSynLog;
implementation
{ ************ Unit-Testing classes and functions }
{ TSynTest }
constructor TSynTest.Create(const Ident: string);
var
id: RawUtf8;
s: string;
methods: TPublishedMethodInfoDynArray;
i: integer;
begin
inherited Create; // may have been overriden
if Ident <> '' then
fIdent := Ident
else
begin
ClassToText(ClassType, id);
if IdemPChar(pointer(id), 'TSYN') then
if IdemPChar(pointer(id), 'TSYNTEST') then
Delete(id, 1, 8)
else
Delete(id, 1, 4)
else if IdemPChar(pointer(id), 'TTEST') then
Delete(id, 1, 5)
else if id[1] = 'T' then
Delete(id, 1, 1);
fIdent := string(UnCamelCase(id));
end;
fWorkDir := Executable.ProgramFilePath;
for i := 0 to GetPublishedMethods(self, methods) - 1 do
with methods[i] do
begin
inc(fInternalTestsCount);
if Name[1] = '_' then
s := Ansi7ToString(copy(Name, 2, 100))
else
s := Ansi7ToString(UnCamelCase(Name));
Add(TOnSynTest(Method), Name, s);
end;
end;
procedure TSynTest.Add(const aMethod: TOnSynTest; const aMethodName: RawUtf8;
const aIdent: string);
var
n: integer;
begin
if self = nil then
exit; // avoid GPF
n := Length(fTests);
SetLength(fTests, n + 1);
with fTests[n] do
begin
TestName := aIdent;
IdentTestName := StringToUtf8(fIdent + ' - ' + TestName);
Method := aMethod;
MethodName := aMethodName;
Test := self;
MethodIndex := n;
end;
end;
function TSynTest.GetCount: integer;
begin
if self = nil then
result := 0
else
result := length(fTests);
end;
function TSynTest.GetIdent: string;
begin
if self = nil then
result := ''
else
result := fIdent;
end;
procedure TSynTest.SetWorkDir(const Folder: TFileName);
begin
if Folder = '' then
fWorkDir := Executable.ProgramFilePath
else
fWorkDir := EnsureDirectoryExists(Folder, ESynException);
end;
{ TSynTestCase }
constructor TSynTestCase.Create(Owner: TSynTests; const Ident: string);
begin
inherited Create(Ident);
fOwner := Owner;
fOptions := Owner.Options;
end;
procedure TSynTestCase.Setup;
begin
// do nothing by default
end;
procedure TSynTestCase.CleanUp;
begin
// do nothing by default
end;
procedure TSynTestCase.MethodSetup;
begin
// do nothing by default
end;
procedure TSynTestCase.MethodCleanUp;
begin
// do nothing by default
end;
destructor TSynTestCase.Destroy;
begin
CleanUp;
inherited;
end;
procedure TSynTestCase.AddLog(condition: boolean; const msg: string);
const
LEV: array[boolean] of TSynLogLevel = (
sllFail, sllCustom4);
var
tix, crc: cardinal; // use a crc since strings are not thread-safe
begin
if condition then
begin
crc := DefaultHasher(0, pointer(msg), length(msg) * SizeOf(msg[1]));
if crc = fCheckLastMsg then
begin
// no need to be too much verbose
tix := GetTickCount64 shr 8; // also avoid to use a lock
if tix = fCheckLastTix then
exit;
fCheckLastTix := tix;
end;
fCheckLastMsg := crc;
end
else
fCheckLastMsg := 0;
if fOwner.fCurrentMethodInfo <> nil then
fOwner.DoLog(LEV[condition], '% % [%]', [ClassType,
fOwner.fCurrentMethodInfo^.TestName, msg]);
end;
procedure TSynTestCase.Check(condition: boolean; const msg: string);
begin
if self = nil then
exit;
inc(fAssertions);
if (msg <> '') and
(tcoLogEachCheck in fOptions) then
AddLog(condition, msg);
if not condition then
TestFailed(msg);
end;
function TSynTestCase.CheckFailed(condition: boolean; const msg: string): boolean;
begin
if self = nil then
begin
result := false;
exit;
end;
inc(fAssertions);
if (msg <> '') and
(tcoLogEachCheck in fOptions) then
AddLog(condition, msg);
if condition then
result := false
else
begin
TestFailed(msg);
result := true;
end;
end;
function TSynTestCase.CheckNot(condition: boolean; const msg: string): boolean;
begin
result := CheckFailed(not condition, msg);
end;
procedure TSynTestCase.DoCheckUtf8(condition: boolean; const msg: RawUtf8;
const args: array of const);
var
str: string;
begin
// inc(fAssertions) has been made by the caller
if msg <> '' then
begin
FormatString(msg, args, str);
if tcoLogEachCheck in fOptions then
AddLog(condition, str);
end;
if not condition then
TestFailed(str{%H-});
end;
procedure TSynTestCase.CheckUtf8(condition: boolean; const msg: RawUtf8;
const args: array of const);
begin
inc(fAssertions);
if not condition or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(condition, msg, args);
end;
procedure TSynTestCase.CheckUtf8(condition: boolean; const msg: RawUtf8);
begin
inc(fAssertions);
if not condition or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(condition, '%', [msg]);
end;
function TSynTestCase.CheckEqual(a, b: Int64; const msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := a = b;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, EQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckEqual(const a, b, msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := SortDynArrayRawByteString(a, b) = 0;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, EQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckEqualTrim(const a, b, msg: RawUtf8): boolean;
begin
result := CheckEqual(TrimU(a), TrimU(b), msg);
end;
function TSynTestCase.CheckEqual(a, b: pointer; const msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := a = b;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, EQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckNotEqual(a, b: Int64; const msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := a <> b;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, NOTEQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckNotEqual(const a, b: RawUtf8; const msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := SortDynArrayRawByteString(a, b) <> 0;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, NOTEQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckNotEqual(a, b: pointer; const msg: RawUtf8): boolean;
begin
inc(fAssertions);
result := a <> b;
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, NOTEQUAL_MSG, [a, b, msg]);
end;
function TSynTestCase.CheckSame(const Value1, Value2, Precision: double;
const msg: string): boolean;
begin
inc(fAssertions);
result := SameValue(Value1, Value2, Precision);
if not result or
(tcoLogEachCheck in fOptions) then
DoCheckUtf8(result, NOTEQUAL_MSG, [Value1, Value2, msg]);
end;
function TSynTestCase.CheckSameTime(const Value1, Value2: TDateTime;
const msg: string): boolean;
begin
result := CheckSame(Value1, Value2, 1 / SecsPerDay);
end;
function TSynTestCase.CheckMatchAny(const Value: RawUtf8; const Values: array of RawUtf8;
CaseSentitive: boolean; ExpectedResult: boolean; const msg: string): boolean;
begin
result := (FindRawUtf8(Values, Value, CaseSentitive) >= 0) = ExpectedResult;
Check(result);
end;
function TSynTestCase.CheckRaised(const Method: TOnTestCheck;
const Params: array of const; Raised: ExceptionClass): boolean;
var
msg: string;
begin
try
Method(Params);
result := false;
if Raised = nil then
Raised := Exception;
FormatString('% missing', [Raised], msg);
except
on E: Exception do
begin
result := (Raised = nil) or
(PClass(E)^ = Raised);
if result then
FormatString('% [%]', [E, E.Message], msg)
else
FormatString('% instead of %', [E, Raised], msg);
end;
end;
Check(result, msg);
end;
procedure TSynTestCase.CheckLogTimeStart;
begin
fCheckLogTime.Start;
end;
procedure TSynTestCase.CheckLogTime(condition: boolean; const msg: RawUtf8;
const args: array of const; level: TSynLogLevel);
var
str: string;
begin
FormatString(msg, args, str);
Check(condition, str);
fOwner.DoLog(level, '% %', [str, fCheckLogTime.Stop]);
fCheckLogTime.Start;
end;
procedure TSynTestCase.CheckHash(const data: RawByteString;
expectedhash32: cardinal; const msg: RawUtf8);
var
crc: cardinal;
begin
crc := Hash32(data);
//if crc <> expectedhash32 then ConsoleWrite(data);
CheckUtf8(crc = expectedhash32, 'Hash32()=$% expected=$% %',
[CardinalToHexShort(crc), CardinalToHexShort(expectedhash32), msg]);
end;
class function TSynTestCase.RandomString(CharCount: integer): WinAnsiString;
var
i: PtrInt;
R: PByteArray;
tmp: TSynTempBuffer;
begin
R := tmp.InitRandom(CharCount);
FastSetStringCP(result, nil, CharCount, CP_WINANSI);
for i := 0 to CharCount - 1 do
PByteArray(result)[i] := 32 + R[i] and 127;
tmp.Done;
end;
class function TSynTestCase.RandomAnsi7(CharCount: integer): RawByteString;
var
i: PtrInt;
R: PByteArray;
tmp: TSynTempBuffer;
begin
R := tmp.InitRandom(CharCount);
FastSetString(RawUtf8(result), CharCount);
for i := 0 to CharCount - 1 do
PByteArray(result)[i] := 32 + R[i] mod 95; // may include tilde #$7e char
tmp.Done;
end;
procedure InitRandom64(chars64: PAnsiChar; count: integer; var result: RawByteString);
var
i: PtrInt;
R: PByteArray;
tmp: TSynTempBuffer;
begin
R := tmp.InitRandom(count);
FastSetString(RawUtf8(result), count);
for i := 0 to count - 1 do
PByteArray(result)[i] := ord(chars64[PtrInt(R[i]) and 63]);
tmp.Done;
end;
class function TSynTestCase.RandomIdentifier(CharCount: integer): RawByteString;
const
IDENT_CHARS: array[0..63] of AnsiChar =
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZ_';
begin
InitRandom64(@IDENT_CHARS, CharCount, result);
end;
class function TSynTestCase.RandomUri(CharCount: integer): RawByteString;
const
URL_CHARS: array[0..63] of AnsiChar =
'abcdefghijklmnopqrstuvwxyz0123456789-ABCDEFGH.JKLMNOP-RSTUVWXYZ.';
begin
InitRandom64(@URL_CHARS, CharCount, result);
end;
class function TSynTestCase.RandomUtf8(CharCount: integer): RawUtf8;
begin
result := WinAnsiToUtf8(RandomString(CharCount));
end;
class function TSynTestCase.RandomUnicode(CharCount: integer): SynUnicode;
begin
result := WinAnsiConvert.AnsiToUnicodeString(RandomString(CharCount));
end;
class function TSynTestCase.RandomTextParagraph(WordCount: integer;
LastPunctuation: AnsiChar; const RandomInclude: RawUtf8): RawUtf8;
var
tmp: TTextWriterStackBuffer;
WR: TTextWriter;
begin
WR := TTextWriter.CreateOwnedStream(tmp);
try
AddRandomTextParagraph(WR, WordCount, LastPunctuation, RandomInclude);
WR.SetText(result);
finally
WR.Free;
end;
end;
class procedure TSynTestCase.AddRandomTextParagraph(WR: TTextWriter;
WordCount: integer; LastPunctuation: AnsiChar; const RandomInclude: RawUtf8;
NoLineFeed: boolean);
type
TKind = (
space, comma, dot, question, paragraph);
const
bla: array[0..7] of string[3] = (
'bla', 'ble', 'bli', 'blo', 'blu', 'bla', 'bli', 'blo');
endKind = [dot, paragraph, question];
var
n: integer;
s: string[3];
last: TKind;
rnd: cardinal;
lec: PLecuyer;
begin
lec := Lecuyer;
last := paragraph;
while WordCount > 0 do
begin
rnd := lec^.Next; // get 32 bits of randomness for up to 4 words per loop
for n := 0 to rnd and 3 do
begin
// consume up to 4*5 = 20 bits from rnd
rnd := rnd shr 2;
s := bla[rnd and 7];
rnd := rnd shr 3;
if last in endKind then
begin
last := space;
s[1] := NormToUpper[s[1]];
end;