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
|
unit tcpassrcutil;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fpcunit, testutils,passrcutil, testregistry;
type
{ TPasSrcUtilTest }
TPasSrcUtilTest= class(TTestCase)
Protected
FAnalyser : TPasSrcAnalysis;
FSrc : TStrings;
FList : TStrings;
FStream: TmemoryStream;
protected
procedure SetUp; override;
procedure TearDown; override;
Procedure AddLine(Const ALine : String);
Procedure AddUses(Const AUsesList : String);
Procedure StartUnit;
Procedure StartImplementation;
Procedure EndSource;
Procedure AssertList(Msg : String; Els : Array of string);
Property Analyser : TPasSrcAnalysis Read FAnalyser;
Property List : TStrings Read FList;
published
procedure TestGetInterfaceUses;
procedure TestGetInterfaceUsesEmpty;
procedure TestGetImplementationUses;
procedure TestGetImplementationUsesEmpty;
procedure TestGetAllUses;
procedure TestGetInterfaceIdentifiers;
procedure TestGetInterfaceVarIdentifiers;
procedure TestGetInterface2VarIdentifiers;
procedure TestGetInterfaceConstIdentifiers;
procedure TestGetInterface2ConstsIdentifiers;
procedure TestGetInterfaceTypeIdentifiers;
procedure TestGetInterface2TypeIdentifiers;
procedure TestGetInterfaceProcIdentifiers;
procedure TestGetInterfaceResourcestringIdentifiers;
procedure TestGetInterfaceEnumTypeIdentifiersNoRecurse;
procedure TestGetInterfaceEnumTypeIdentifiersRecurse;
procedure TestGetInterfaceRecordTypeIdentifiersNoRecurse;
procedure TestGetInterfaceRecordTypeIdentifiersRecurse;
procedure TestGetInterfaceRecordTypeIdentifiersRecurseVariant;
procedure TestGetInterfaceClassTypeIdentifiersNoRecurse;
procedure TestGetInterfaceClassTypeIdentifiersRecurse;
procedure TestGetImplementationVarIdentifiers;
procedure TestInterfaceHasResourceStrings;
procedure TestInterfaceHasResourceStringsFalse;
procedure TestImplementationHasResourceStrings;
procedure TestHasResourceStrings;
procedure TestHasResourceStrings2;
procedure TestHasResourceStrings3;
procedure TestHasResourceStrings4;
end;
implementation
procedure TPasSrcUtilTest.TestGetInterfaceUses;
begin
StartUnit;
AddUses('a,b,c');
StartImplementation;
EndSource;
Analyser.GetInterfaceUnits(List);
AssertList('4 interface units',['System','a','b','c']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceUsesEmpty;
begin
StartUnit;
StartImplementation;
EndSource;
Analyser.GetInterfaceUnits(List);
AssertList('0 interface units',[]);
end;
procedure TPasSrcUtilTest.TestGetImplementationUses;
begin
StartUnit;
StartImplementation;
AddUses('d,a,b,c');
EndSource;
Analyser.GetImplementationUnits(List);
AssertList('4 implementation units',['d','a','b','c']);
end;
procedure TPasSrcUtilTest.TestGetImplementationUsesEmpty;
begin
StartUnit;
StartImplementation;
EndSource;
Analyser.GetImplementationUnits(List);
AssertList('0 implementation units',[]);
end;
procedure TPasSrcUtilTest.TestGetAllUses;
begin
StartUnit;
AddUses('a,b,c');
StartImplementation;
AddUses('d,e');
EndSource;
Analyser.GetUsedUnits(List);
AssertList('6 units',['System','a','b','c','d','e']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceIdentifiers;
begin
StartUnit;
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('0 identifiers',[]);
end;
procedure TPasSrcUtilTest.TestGetInterfaceVarIdentifiers;
begin
StartUnit;
AddLine('Var a : integer;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['a']);
end;
procedure TPasSrcUtilTest.TestGetInterface2VarIdentifiers;
begin
StartUnit;
AddLine('Var a,b : integer;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('2 identifiers',['a','b']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceConstIdentifiers;
begin
StartUnit;
AddLine('Const a = 123;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['a']);
end;
procedure TPasSrcUtilTest.TestGetInterface2ConstsIdentifiers;
begin
StartUnit;
AddLine('Const a = 123;');
AddLine(' b = 123;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('2 identifiers',['a','b']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceTypeIdentifiers;
begin
StartUnit;
AddLine('Type a = Integer;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['a']);
end;
procedure TPasSrcUtilTest.TestGetInterface2TypeIdentifiers;
begin
StartUnit;
AddLine('Type a = Integer;');
AddLine(' b = Word;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('2 identifiers',['a','b']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceProcIdentifiers;
begin
StartUnit;
AddLine('Procedure a (b : Integer);');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['a']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceResourcestringIdentifiers;
begin
StartUnit;
AddLine('Resourcestring astring = ''Something'';');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['astring']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceEnumTypeIdentifiersNoRecurse;
begin
StartUnit;
AddLine('Type aenum = (one,two,three);');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List);
AssertList('1 identifiers',['aenum']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceEnumTypeIdentifiersRecurse;
begin
StartUnit;
AddLine('Type aenum = (one,two,three);');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,True);
AssertList('4 identifiers',['aenum','aenum.one','aenum.two','aenum.three']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceRecordTypeIdentifiersNoRecurse;
begin
StartUnit;
AddLine('Type arec = record one,two,three : integer; end;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,False);
AssertList('1 identifier',['arec']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceRecordTypeIdentifiersRecurse;
begin
StartUnit;
AddLine('Type arec = record one,two,three : integer; end;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,True);
AssertList('4 identifiers',['arec','arec.one','arec.two','arec.three']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceRecordTypeIdentifiersRecurseVariant;
begin
StartUnit;
AddLine('Type arec = record one,two,three : integer; case integer of 1: (x : integer;); end;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,True);
AssertList('4 identifiers',['arec','arec.one','arec.two','arec.three','arec.x']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceClassTypeIdentifiersNoRecurse;
begin
StartUnit;
AddLine('Type TMyClass = Class');
AddLine(' one,two,three : integer;');
AddLine('end;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,False);
AssertList('4 identifiers',['TMyClass']);
end;
procedure TPasSrcUtilTest.TestGetInterfaceClassTypeIdentifiersRecurse;
begin
StartUnit;
AddLine('Type TMyClass = Class');
AddLine(' one,two,three : integer;');
AddLine('end;');
StartImplementation;
EndSource;
Analyser.GetInterfaceIdentifiers(List,True);
AssertList('4 identifiers',['TMyClass','TMyClass.one','TMyClass.two','TMyClass.three']);
end;
procedure TPasSrcUtilTest.TestGetImplementationVarIdentifiers;
begin
StartUnit;
StartImplementation;
AddLine('Var a : integer;');
EndSource;
Analyser.GetImplementationIdentifiers(List);
AssertList('1 identifiers',['a']);
end;
procedure TPasSrcUtilTest.TestInterfaceHasResourceStrings;
begin
StartUnit;
AddLine('Resourcestring astring = ''Something'';');
StartImplementation;
EndSource;
AssertEquals('Have res. strings',True,Analyser.InterfaceHasResourcestrings)
end;
procedure TPasSrcUtilTest.TestInterfaceHasResourceStringsFalse;
begin
StartUnit;
StartImplementation;
AddLine('Resourcestring astring = ''Something'';');
EndSource;
AssertEquals('Have no res. strings',False,Analyser.InterfaceHasResourcestrings)
end;
procedure TPasSrcUtilTest.TestImplementationHasResourceStrings;
begin
StartUnit;
StartImplementation;
AddLine('Resourcestring astring = ''Something'';');
EndSource;
AssertEquals('Have res. strings',True,Analyser.ImplementationHasResourcestrings)
end;
procedure TPasSrcUtilTest.TestHasResourceStrings;
begin
StartUnit;
StartImplementation;
EndSource;
AssertEquals('No res. strings',False,Analyser.ImplementationHasResourcestrings)
end;
procedure TPasSrcUtilTest.TestHasResourceStrings2;
begin
StartUnit;
AddLine('Resourcestring astring = ''Something'';');
StartImplementation;
EndSource;
AssertEquals('Have res. strings',True,Analyser.HasResourcestrings)
end;
procedure TPasSrcUtilTest.TestHasResourceStrings3;
begin
StartUnit;
AddLine('Resourcestring astring = ''Something'';');
StartImplementation;
EndSource;
AssertEquals('Have res. strings',True,Analyser.HasResourcestrings)
end;
procedure TPasSrcUtilTest.TestHasResourceStrings4;
begin
StartUnit;
AddLine('Resourcestring astring = ''Something'';');
StartImplementation;
AddLine('Resourcestring astring2 = ''Something'';');
EndSource;
AssertEquals('Have res. strings',True,Analyser.HasResourcestrings)
end;
procedure TPasSrcUtilTest.SetUp;
begin
FAnalyser:=TPasSrcAnalysis.Create(Nil);
FSrc:=TStringList.Create;
FList:=TStringList.Create;
FStream:=TMemoryStream.Create;
FAnalyser.FileName:='atest.pp';
FAnalyser.Stream:=FStream;
end;
procedure TPasSrcUtilTest.TearDown;
begin
FreeAndNil(FAnalyser);
FreeAndNil(FStream);
FreeAndNil(FSrc);
FreeAndNil(FList);
end;
procedure TPasSrcUtilTest.AddLine(const ALine: String);
begin
FSrc.Add(ALine);
end;
procedure TPasSrcUtilTest.AddUses(const AUsesList: String);
begin
AddLine('uses '+AUseslist+';');
AddLine('');
end;
procedure TPasSrcUtilTest.StartUnit;
begin
AddLine('unit atest;');
AddLine('');
AddLine('Interface');
AddLine('');
end;
procedure TPasSrcUtilTest.StartImplementation;
begin
AddLine('');
AddLine('Implementation');
AddLine('');
end;
procedure TPasSrcUtilTest.EndSource;
begin
AddLine('');
AddLine('end.');
FSrc.SaveToStream(FStream);
FStream.Position:=0;
Writeln('// Test name : ',Self.TestName);
Writeln(FSrc.Text);
end;
procedure TPasSrcUtilTest.AssertList(Msg: String; Els: array of string);
Var
I : Integer;
begin
AssertEquals(Msg+': number of elements',Length(Els),List.Count);
For I:=Low(Els) to High(Els) do
AssertEquals(Msg+': list element '+IntToStr(i)+' matches : ',Els[i],List[i]);
end;
initialization
RegisterTest(TPasSrcUtilTest);
end.
|