forked from synopse/mORMot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mormot2tests.dpr
189 lines (173 loc) · 5.96 KB
/
mormot2tests.dpr
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
/// framework unitary, performance and regression tests for continuous integration
// - this program is a part of the Open Source Synopse mORMot framework 2,
// licensed under a MPL/GPL/LGPL three license - see LICENSE.md
program mormot2tests;
// ---------------------------------------------------------------------
// NOTE: on FPC, please first install src/packages/lazarus/mormot2.lpk
// ---------------------------------------------------------------------
{$I ..\src\mormot.defines.inc}
{$ifdef OSWINDOWS}
{$apptype console}
{$R ..\src\mormot.win.default.manifest.res}
{$endif OSWINDOWS}
uses
{$I ..\src\mormot.uses.inc} // follow FPC_X64MM or FPC_LIBCMM conditionals
{$ifdef UNIX}
cwstring, // needed as fallback if ICU is not available
{$endif UNIX}
classes,
sysutils,
mormot.core.base,
mormot.core.os,
mormot.core.os.mac,
mormot.core.unicode,
mormot.core.text,
mormot.core.datetime,
mormot.core.log,
mormot.core.test,
mormot.db.raw.sqlite3, // for the SQLite3 version below
{$ifdef USEZEOS}
mormot.db.sql.zeos,
{$endif USEZEOS}
{$ifdef FPC}
//jsontools in '.\3party\jsontools.pas',
//superobject in '.\3party\superobject.pas',
//supertypes in '.\3party\supertypes.pas',
//superdate in '.\3party\superdate.pas',
{$else}
//mormot.db.rad,
//mormot.db.rad.bde,
//mormot.db.rad.firedac,
//mormot.db.rad.unidac,
//mormot.db.rad.nexusdb,
{$endif FPC}
mormot.lib.openssl11,
mormot.lib.gssapi,
mormot.crypt.x509,
mormot.crypt.openssl,
mormot.tools.ecc in '..\src\tools\ecc\mormot.tools.ecc.pas',
test.core.base in '.\test.core.base.pas',
test.core.data in '.\test.core.data.pas',
test.core.crypt in '.\test.core.crypt.pas',
test.core.ecc in '.\test.core.ecc.pas',
test.core.collections in '.\test.core.collections.pas',
{$ifdef LIBQUICKJSSTATIC}
test.core.script in '.\test.core.script.pas',
{$endif LIBQUICKJSSTATIC}
test.net.proto in '.\test.net.proto.pas',
test.orm.core in '.\test.orm.core.pas',
test.orm.sqlite3 in '.\test.orm.sqlite3.pas',
test.orm.extdb in '.\test.orm.extdb.pas',
test.orm.threads in '.\test.orm.threads.pas',
test.orm.network in '.\test.orm.network.pas',
test.soa.core in '.\test.soa.core.pas',
test.soa.network in '.\test.soa.network.pas';
{ TIntegrationTests }
type
TIntegrationTests = class(TSynTestsLogged)
protected
class procedure DescribeCommandLine; override;
public
function Run: boolean; override;
published
procedure CoreUnits;
procedure ORM;
procedure SOA;
end;
class procedure TIntegrationTests.DescribeCommandLine;
begin
with Executable.Command do
begin
ExeDescription := 'mORMot '+ SYNOPSE_FRAMEWORK_VERSION + ' Regression Tests';
Param('dns', 'a DNS #server name/IP for LDAP tests via Kerberos ' +
{$ifdef OSWINDOWS}
'with current logged user or --ldapusr/--ldappwd');
{$else}
'after kinit user or --ldapusr/--ldappwd');
{$endif OSWINDOWS}
Param('ldapusr', 'the LDAP #user for --dns, e.g. [email protected]');
Param('ldappwd', 'the LDAP #password for --dns');
Option('ldaps', 'force LDAPS connection + plain auth instead of Kerberos');
Param('ntp', 'a NTP/SNTP #server name/IP to use instead of time.google.com');
Option('nontp', 'disable the NTP/SNTP server tests');
{$ifdef USE_OPENSSL}
// refine the OpenSSL library path - RegisterOpenSsl is done in Run method
OpenSslDefaultCrypto := ParamS(['libcrypto'], 'the OpenSSL libcrypto #filename');
OpenSslDefaultSsl := ParamS(['libssl'], 'the OpenSSL libssl #filename');
{$endif USE_OPENSSL}
{$ifdef OSPOSIX}
GssLib_Custom := ParamS(['libkrb5'], 'the Kerberos libgssapi #filename');
{$endif OSPOSIX}
end;
end;
function TIntegrationTests.Run: boolean;
var
ssl: shortstring;
begin
ssl[0] := #0;
{$ifdef USE_OPENSSL}
// warning: OpenSSL on Windows requires to download the right libraries
RegisterOpenSsl;
RegisterX509; // enable the additional CryptPublicKey[] algorithms for X.509
if OpenSslIsAvailable then
FormatShort(' and %', [OpenSslVersionText], ssl);
{$endif USE_OPENSSL}
CustomVersions := Format(CRLF + CRLF + '%s [%s %s %x]'+ CRLF +
' %s' + CRLF + ' on %s'+ CRLF + 'Using mORMot %s %s%s'+ CRLF + ' %s',
[OSVersionText, CodePageToText(Unicode_CodePage), KBNoSpace(SystemMemorySize),
OSVersionInt32, CpuInfoText, BiosInfoText, SYNOPSE_FRAMEWORK_FULLVERSION,
UnixTimeToTextDateShort(FileAgeToUnixTimeUtc(Executable.ProgramFileName)),
ssl, sqlite3.Version]);
result := inherited Run;
end;
procedure TIntegrationTests.CoreUnits;
begin
//exit;
AddCase([
TTestCoreBase,
TTestCoreProcess,
{$ifdef HASGENERICS} // do-nothing on oldest compilers (e.g. <= Delphi XE7)
TTestCoreCollections,
{$endif HASGENERICS}
TTestCoreCrypto,
TTestCoreEcc,
TTestCoreCompression,
TNetworkProtocols
]);
end;
procedure TIntegrationTests.ORM;
begin
//exit;
AddCase([
TTestOrmCore,
TTestSqliteFile,
TTestSqliteFileWAL,
TTestSqliteFileMemoryMap,
TTestSqliteMemory,
TTestExternalDatabase,
TTestClientServerAccess,
TTestMultiThreadProcess
]);
end;
procedure TIntegrationTests.SOA;
begin
//exit;
{$ifdef LIBQUICKJSSTATIC}
AddCase(TTestCoreScript);
{$endif LIBQUICKJSSTATIC}
//exit;
AddCase([
TTestServiceOrientedArchitecture,
TTestBidirectionalRemoteConnection
]);
end;
begin
SetExecutableVersion(SYNOPSE_FRAMEWORK_VERSION);
TIntegrationTests.RunAsConsole('mORMot2 Regression Tests',
//LOG_VERBOSE +
LOG_FILTER[lfExceptions] // + [sllErrors, sllWarning]
,[], Executable.ProgramFilePath + 'data');
{$ifdef FPC_X64MM}
WriteHeapStatus(' ', 16, 8, {compileflags=}true);
{$endif FPC_X64MM}
end.