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
|
{ -*- compile-command: "./compile_console.sh" -*- }
{
Copyright 2004-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" 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 TestCastleStringUtils;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, fpcunit, testutils, testregistry;
type
TTestCastleStringUtils= class(TTestCase)
published
procedure TestIntToStrBase;
procedure TestDeFormat;
procedure TestSReplacePercent;
procedure TestIntToStr2;
procedure TestCompressWhiteSpace;
procedure TestFormatNameCounter;
procedure TestIntToStr64;
procedure TestCastleStringList;
procedure TestCastleStringListNewlinesInside;
end;
implementation
uses CastleUtils, CastleStringUtils;
procedure TTestCastleStringUtils.TestIntToStrBase;
var i: Integer;
l: Integer;
s1, s2: string;
begin
for i := 1 to 100 do
begin
{ przetestowalbym tez na ujemnych ale Format('%x', [l]) z FPC nie dziala
na nich tak jak trzeba. Ech. No to dobrze ze zrobilem wlasne IntToStr16. }
l := Random(High(Integer)){ - High(Integer) div 2};
s1 := IntToStr16(l);
s2 := Format('%x', [l]);
AssertTrue(s1 = s2);
end;
AssertTrue(IntToStr16(-17) = '-11');
end;
procedure TTestCastleStringUtils.TestDeFormat;
var
s, S2: string;
i: integer;
f: float;
begin
DeFormat('123FOO98.2e1 '#9'123ioioio-x /'+nl, '%dfoo%f %s /',
[@i, @f, @s], true);
AssertTrue(i = 123);
AssertTrue(f = 98.2e1);
AssertTrue(s = '123ioioio-x');
{ %% test }
DeFormat('%d%%456foobar %', '%%d%%%%%d%s %%',
[@i, @s], true);
AssertTrue(i = 456);
AssertTrue(s = 'foobar');
{ Test RelatedWhitespaceChecking }
try
DeFormat('123 foo', '%d %s %s', [@i, @S, @S2], true, true);
raise Exception.Create('"DeFormat(123 foo)" with relaxed should fail');
except
on EDeformatError do ;
end;
DeFormat('123 foo', '%d %s %s', [@i, @S, @S2], true, false);
AssertTrue(I = 123);
AssertTrue(S = '');
AssertTrue(S2 = 'foo');
{ Test %s at the end of data can be '' }
DeFormat('123 ', '%d %s', [@i, @s], true, true);
AssertTrue(I = 123);
AssertTrue(S = '');
{ Similar as above, but last 2 args different.
Result should be the same. }
DeFormat('123 ', '%d %s', [@i, @s], false, false);
AssertTrue(I = 123);
AssertTrue(S = '');
end;
procedure TTestCastleStringUtils.TestSReplacePercent;
const
Replaces: array[0..1]of TPercentReplace =
((c:'k'; s:'kot'), (c:'p'; s:'pies'));
begin
AssertTrue( SPercentReplace('bla%kkk%jk%pies', Replaces, false, '%', false)
= 'blakotkk%jkpiesies');
try
SPercentReplace('bla%kkk%jk%pies', Replaces, true, '%', false);
raise Exception.Create('Last SPercentReplace SHOULD raise exception');
except on E: EUnknownPercentFormat do AssertTrue(e.Message = 'Unknown format pattern in format "bla%kkk%jk%pies", wrong sequence is : "%j"'); end;
AssertEquals('blakotkkkotkpiesies', SPercentReplace('bla%kkk%Kk%pies', Replaces, true, '%', true));
try
SPercentReplace('bla%kkk%Kk%pies', Replaces, true, '%', false);
raise Exception.Create('Last SPercentReplace SHOULD raise exception');
except on E: EUnknownPercentFormat do AssertTrue(e.Message = 'Unknown format pattern in format "bla%kkk%Kk%pies", wrong sequence is : "%K"'); end;
AssertTrue( SPercentReplace('bla%k%%', Replaces, false, '%', false) = 'blakot%');
AssertTrue( SPercentReplace('bla%k%%', Replaces, true, '%', false) = 'blakot%');
AssertTrue( SPercentReplace('foo%', Replaces, false, '%', false) = 'foo%');
try
AssertTrue( SPercentReplace('foo%', Replaces, true, '%', false) = 'foo%');
raise Exception.Create('Last SPercentReplace SHOULD raise exception');
except on E: EUnknownPercentFormat do AssertTrue(e.Message = 'Unknown format pattern in format "foo%", wrong sequence is : % at the end of the format string'); end;
end;
procedure TTestCastleStringUtils.TestIntToStr2;
var i, Value, MinLength: Integer;
begin
AssertTrue(IntToStr2(2) = '10');
AssertTrue(IntToStr2(0) = '0');
AssertTrue(IntToStr2(2, 4) = '0010');
AssertTrue(IntToStr2(-2, 4) = '-0010');
AssertTrue(IntToStr2(0, 4) = '0000');
AssertTrue(IntToStr2(2, 4, '_', 'M', '+') = '__M_');
AssertTrue(IntToStr2(-2, 4, '_', 'M', '+') = '+__M_');
AssertTrue(IntToStr2(0, 4, '_', 'M', '+') = '____');
for i := 1 to 100 do
begin
Value := Integer(Random(10000)) - 10000 div 2;
MinLength := Random(5);
AssertTrue(IntToStrBase(Value, 2, MinLength) = IntToStr2(Value, MinLength));
end;
end;
procedure TTestCastleStringUtils.TestCompressWhiteSpace;
begin
AssertTrue(SCompressWhiteSpace('') = '');
AssertTrue(SCompressWhiteSpace('a') = 'a');
AssertTrue(SCompressWhiteSpace(' ') = ' ');
AssertTrue(SCompressWhiteSpace(' ') = ' ');
AssertTrue(SCompressWhiteSpace(' blah blah ') = ' blah blah ');
AssertTrue(SCompressWhiteSpace(' blah ' + CharTab + 'blah ' + NL) = ' blah blah ');
end;
procedure TTestCastleStringUtils.TestFormatNameCounter;
var
ReplacementsDone: Cardinal;
AllowOldPercentSyntax: boolean;
begin
AssertTrue(FormatNameCounter('', 0, true, ReplacementsDone) = '');
AssertTrue(FormatNameCounter('a', 0, true, ReplacementsDone) = 'a');
AssertTrue(FormatNameCounter('a%', 0, true, ReplacementsDone) = 'a%');
AssertTrue(FormatNameCounter('%a%', 66, true, ReplacementsDone) = '%a%');
AssertTrue(FormatNameCounter('%d%', 66, true, ReplacementsDone) = '66%');
AssertTrue(FormatNameCounter('%%%', 66, true, ReplacementsDone) = '%%');
AssertTrue(FormatNameCounter('%%number%d%d.again%d', 66, true, ReplacementsDone) = '%number6666.again66');
AssertTrue(FormatNameCounter('%%number%0d%2d.again%4d', 66, true, ReplacementsDone) = '%number6666.again0066');
AssertTrue(FormatNameCounter('', 0, false, ReplacementsDone) = '');
AssertTrue(FormatNameCounter('a', 0, false, ReplacementsDone) = 'a');
AssertTrue(FormatNameCounter('a%', 0, false, ReplacementsDone) = 'a%');
AssertTrue(FormatNameCounter('%a%', 66, false, ReplacementsDone) = '%a%');
AssertTrue(FormatNameCounter('%d%', 66, false, ReplacementsDone) = '%d%');
AssertTrue(FormatNameCounter('%%%', 66, false, ReplacementsDone) = '%%%');
AssertTrue(FormatNameCounter('%%number%d%d.again%d', 66, false, ReplacementsDone) = '%%number%d%d.again%d');
AssertTrue(FormatNameCounter('%%number%0d%2d.again%4d', 66, false, ReplacementsDone) = '%%number%0d%2d.again%4d');
{ assertions below should work for both AllowOldPercentSyntax values }
for AllowOldPercentSyntax := false to true do
begin
AssertTrue(FormatNameCounter('', 0, AllowOldPercentSyntax, ReplacementsDone) = '');
AssertTrue(FormatNameCounter('a', 0, AllowOldPercentSyntax, ReplacementsDone) = 'a');
AssertTrue(FormatNameCounter('%again@counter(1)', 66, AllowOldPercentSyntax, ReplacementsDone) = '%again66');
AssertTrue(FormatNameCounter('%%again@counter(1)', 66, AllowOldPercentSyntax, ReplacementsDone) = '%%again66');
AssertTrue(FormatNameCounter('%%again@counter(4)', 66, AllowOldPercentSyntax, ReplacementsDone) = '%%again0066');
end;
end;
procedure TTestCastleStringUtils.TestIntToStr64;
const
A1: QWord = $ABCDEF123;
A2: Int64 = $ABCDEF123;
A3: Int64 = -$ABCDEF123;
A4: QWord = $0123456789ABCDEF;
var
A5, A6: QWord;
begin
AssertTrue(IntToStr16(A1) = 'ABCDEF123');
AssertTrue(IntToStr16(A2) = 'ABCDEF123');
AssertTrue(IntToStr16(A3) = '-ABCDEF123');
AssertTrue(IntToStr16(A4) = '123456789ABCDEF');
A5 := QWord($EFCDAB8967452301);
AssertTrue(IntToStr16(A5) = 'EFCDAB8967452301');
A6 := QWord($FFEE000000000000);
AssertTrue(IntToStr16(A6) = 'FFEE000000000000');
end;
procedure TTestCastleStringUtils.TestCastleStringList;
{ Useful to debug state in the middle:
procedure WritelnList(const S: TCastleStringList);
var
I: Integer;
begin
Writeln(S.Count);
for I := 0 to S.Count - 1 do
Writeln(Format('%4d: %s', [I, S[I]]));
end;
}
var sarr, sarr2: TCastleStringList;
i, j: integer;
const twoStrings: array[0..1]of string = ('raz','dwa');
begin
for i := 1 to 100 do
begin
sarr := TCastleStringList.Create;
try
sarr.Count := 4;
AssertTrue(sarr.Count = 4);
sarr[0] := 'FOO';
sarr[1] := 'foo bar xyz';
sarr.Delete(0);
sarr.AddArray(twoStrings);
sarr.Add('trzy?');
AssertTrue(not sarr.Equal(['foo bar xyz', '', '']));
AssertTrue(sarr.Equal(['foo bar xyz', '', '', 'raz', 'dwa', 'trzy?']));
sarr.Reverse;
AssertTrue(sarr.Equal(['trzy?', 'dwa', 'raz', '', '', 'foo bar xyz']));
sarr2 := TCastleStringList.Create;
try
sarr2.Add('blah');
AssertTrue(sarr2.Equal(['blah']));
sarr2.Assign(sarr);
AssertTrue(sarr2.Equal(['trzy?', 'dwa', 'raz', '', '', 'foo bar xyz']));
{sortuj ustalone 6 stringow}
sarr.Sort;
AssertTrue(sarr.Equal(['', '', 'dwa', 'foo bar xyz', 'raz', 'trzy?']));
{ sprawdz ze kolejnosc na sarr2 pozostala niezmieniona }
AssertTrue(sarr2.Equal(['trzy?', 'dwa', 'raz', '', '', 'foo bar xyz']));
finally sarr2.Free end;
{dodaj losowe stringi, sortuj, sprawdz}
for j := 0 to 20 do
sarr.Add( Chr(Random(256)) + Chr(Random(256)) + Chr(Random(256)) );
sarr.Sort;
for j := 0 to sarr.Count-2 do AssertTrue(
{ sarr[j] <= sarr[j+1] }
{ Sort may use AnsiCompareStr that takes into account locale }
AnsiCompareStr(sarr[j], sarr[j+1]) <= 0);
finally sarr.Free end;
end;
sarr := TCastleStringList.Create;
try
{ na tablicy o 0 liczbie elementow tez wszystko powinno isc ok }
AssertTrue(sarr.Count = 0);
sarr.Reverse;
AssertTrue(sarr.Count = 0);
finally sarr.Free end;
end;
procedure TTestCastleStringUtils.TestCastleStringListNewlinesInside;
var
SL: TCastleStringList;
begin
SL := TCastleStringList.Create;
try
SL.Add('');
SL.Add(NL + 'foo' + NL + 'bar' + NL);
SL.Add('');
SL.Add('');
AssertTrue(SL.Count = 4);
AssertTrue(SL.IndexOf('') = 0);
SL.Delete(0);
AssertTrue(SL.Count = 3);
AssertTrue(SL[0] = NL + 'foo' + NL + 'bar' + NL);
AssertTrue(SL[1] = '');
AssertTrue(SL[2] = '');
AssertTrue(SL.IndexOf('') = 1);
SL.Delete(1);
SL.Delete(1);
AssertTrue(SL.Count = 1);
AssertTrue(SL[0] = NL + 'foo' + NL + 'bar' + NL);
AssertTrue(SL.IndexOf(NL + 'foo' + NL + 'bar' + NL) = 0);
finally FreeAndNil(SL) end;
end;
initialization
RegisterTest(TTestCastleStringUtils);
end.
|