-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathTestFastStringBuilder.pas
147 lines (129 loc) · 3.53 KB
/
TestFastStringBuilder.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
unit TestFastStringBuilder;
interface
uses
DUnitX.TestFramework,
FastStringBuilder;
type
[TestFixture]
TTestFastStringBuilder<T> = class
public
[Setup]
procedure Setup;
[Teardown]
procedure TearDown;
[Test]
//[Testcase('RandomIntSort 8','10000000')]
//[Testcase('RandomIntSort 1', '2')]
[Testcase('BuildSame 1', '5')]
[Testcase('BuildSame 1', '30')]
[Testcase('BuildSame 2', '27')]
[Testcase('BuildSame 3', '100')]
[Testcase('BuildSame 4', '1000')]
[Testcase('BuildSame 5', '10000')]
[Testcase('BuildSame 6', '100000')]
[Testcase('BuildSame 7', '1000000')]
procedure TestBuildRepeated(Len: integer);
[Testcase('Sandwich','1')]
procedure SandwichBetweenChars;
[Testcase('Sandwich','1')]
procedure SandwhichBetweenStrings;
[Testcase('Hardcoded sandwich','1')]
procedure HardcodedSandwhich;
private
FData: TStringBuilder;
end;
implementation
{ TTestFastStringBuilder<T> }
procedure TTestFastStringBuilder<T>.HardcodedSandwhich;
var
s: string;
c: char;
norm: string;
begin
s:= 'items:{}';
FData.Append('{');
if TypeInfo(T) = TypeInfo(char) then begin
FData.Append('{');
norm := '{' + '{' + '}';
end else if TypeInfo(T) = TypeInfo(string) then begin
FData.Append(s);
norm := '{' + s + '}';
end;
FData.Append('}');
Assert.IsTrue(FData.ToString = norm,'HardcodedSandwhich failed, expected: '+norm+' got: '+FData.ToString);
end;
procedure TTestFastStringBuilder<T>.SandwhichBetweenStrings;
var
s: string;
c: char;
norm: string;
begin
s:= 'test';
c:= 'a';
FData.Append(s);
if TypeInfo(char) = TypeInfo(T) then begin
FData.Append(c);
norm:= s+c+s;
end else if TypeInfo(T) = TypeInfo(string) then begin
FData.Append(s);
norm:= s+s+s;
end;
FData.Append(s);
Assert.IsTrue(FData.ToString = norm,'SandwhichBetweenStrings failed, expected: '+norm+' got: '+FData.ToString);
end;
procedure TTestFastStringBuilder<T>.SandwichBetweenChars;
var
s: string;
c: char;
norm: string;
begin
s:= 'items:{}';
c:= '{';
FData.Append(c);
if TypeInfo(T) = TypeInfo(char) then begin
FData.Append(c);
norm:= c+c+c;
end else if TypeInfo(T) = TypeInfo(string) then begin
FData.Append(s);
norm:= c+s+c;
end;
FData.Append(c);
Assert.IsTrue(FData.ToString = norm,'SandwhichBetweenStrings failed, expected: '+norm+' got: '+FData.ToString);
end;
procedure TTestFastStringBuilder<T>.Setup;
begin
FData:= TStringBuilder.Create;
end;
procedure TTestFastStringBuilder<T>.TearDown;
begin
FData.Free;
end;
procedure TTestFastStringBuilder<T>.TestBuildRepeated(Len: integer);
const
teststring = 'test';
var
i: integer;
c: char;
s: string;
begin
for i:= 0 to Len-1 do begin
if TypeInfo(T) = TypeInfo(string) then begin
FData.Append(teststring);
end else if TypeInfo(T) = TypeInfo(Char) then begin
c:= 'a';
FData.Append(c);
end else Assert.IsFalse(true, 'Only char and string are allowed in string builder');
end; {for i}
if TypeInfo(T) = TypeInfo(char) then begin
Assert.IsTrue(FData.ToString = StringOfChar(c, Len), 'TestBuildRepeated, expected: '+StringOfChar(c, Len)+ 'got: '+FData.ToString);
end else if TypeInfo(T) = TypeInfo(string) then begin
for i := 0 to Len-1 do begin
s:= s + teststring;
end;
Assert.IsTrue(FData.ToString = s, 'TestBuildRepeated, expected: '+s+ 'got: '+FData.ToString);
end;
end;
initialization
TDUnitX.RegisterTestFixture(TTestFastStringBuilder<char>);
TDUnitX.RegisterTestFixture(TTestFastStringBuilder<string>);
end.