File: testcastleutils.pas

package info (click to toggle)
castle-game-engine 7.0~alpha.3%2Bdfsg2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 969,476 kB
  • sloc: pascal: 911,523; javascript: 28,186; cpp: 14,157; xml: 9,939; ansic: 9,229; java: 3,653; objc: 2,737; sh: 1,214; makefile: 657; php: 65; lisp: 21; ruby: 8
file content (728 lines) | stat: -rw-r--r-- 22,063 bytes parent folder | download | duplicates (2)
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
// -*- compile-command: "./test_single_testcase.sh TTestCastleUtils" -*-
{
  Copyright 2004-2023 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.

  ----------------------------------------------------------------------------
}

{ Test CastleUtils unit. }
unit TestCastleUtils;

{ Needed for UNIX symbol in Delphi. }
{$I ../../../src/common_includes/castleconf.inc}

{ $define CASTLEUTILS_SPEED_TESTS}

interface

uses
  Classes, SysUtils, CastleTester;

type
  TTestCastleUtils = class(TCastleTestCase)
  published
    procedure TestMilisecTime;
    procedure TestIndexMinMax_RestOf3DCoords;
    procedure TestCheckIsMemCharFilled;
    procedure TestSmallest2Exp;
    procedure TestPathDelim;
    procedure TestOSError;
    procedure TestStrings;
    procedure TestOthers;
    procedure TestIntSqrt;
    procedure TestDivMod;
    procedure TestClamp;
    procedure TestSimpleMath;
    procedure TestMinMax;
    procedure TestFileExt;
    procedure TestFloatModulo;
    procedure TestRandomIntRange;
    procedure TestRandomIntRangeInclusive;
    procedure TestStrToFloatDot;
    procedure TestIsPathAbsolute;
    procedure TestIsPathAbsoluteOnDrive;
    procedure TestRestOf3DCoords;
    procedure TestRestOf3DCoordsCycle;
    procedure TestDecimalSeparator;
    procedure TestFloatToStrDisplay;
    procedure TestDeg;
  end;

implementation

uses
  {$ifdef MSWINDOWS} Windows, {$endif}
  {$if defined(UNIX) and defined(FPC)} Unix, BaseUnix, {$endif}
  Math, CastleUtils, CastleTimeUtils, CastleVectors, CastleLog,
  CastleTestUtils;

{$warnings off} // knowingly using deprecated, to check they are working

procedure TTestCastleUtils.TestMilisecTime;
const t1: TMilisecTime = High(TMilisecTime) - 10;
      t2: TMilisecTime = 11;
begin
 {Writeln(MilisecTimesSubtract(t2, t1));}
 { 22 - bo jak dodam 10 do t1 to bede na High, +1 bede na 0, +11 bede na 11;
   Razem 11+1+10 = 22; }
 AssertTrue(MilisecTimesSubtract(t2, t1) = 22);
end;

{$warnings on}

procedure TTestCastleUtils.TestIndexMinMax_RestOf3DCoords;
var
  a: array[0..2]of Double;
  i: Integer;
  C1, C2, CM: T3DAxis;
begin
  for i := 1 to 100 do
  begin
    a[0] := Random;
    a[1] := Random;
    a[2] := Random;

    cm := IndexMin(a[0], a[1], a[2]);
    RestOf3DCoords(cm, c1, c2);
    AssertTrue( (a[cm] <= a[c1]) and (a[cm] <= a[c2]) );

    cm := IndexMax(a[0], a[1], a[2]);
    RestOf3DCoords(cm, c1, c2);
    AssertTrue( (a[cm] >= a[c1]) and (a[cm] >= a[c2]) );
  end;
end;

procedure WritelnMem(const Data; Size: Integer);
var p: PChar;
begin
 p := @Data;
 while Size > 0 do
 begin
  if Ord(p^) < Ord(' ') then Write('(',Ord(p^), ')') else Write(p^);
  Inc(p);
  Dec(Size);
 end;
 Writeln;
end;

function NaiveIsMemCharFilled(const Data; Size: Integer; AChar: AnsiChar): boolean;
begin
 result := CheckIsMemCharFilled(Data, Size, AChar) = -1;
end;

procedure TTestCastleUtils.TestCheckIsMemCharFilled;

  procedure TimeTestIsMemCharFilled(SizeOfA: Integer);
  var
    SpeedTest_i: Cardinal;
    SpeedTest_Time0, SpeedTest_Time1, SpeedTest_Time2: Double;
    StartTime: TProcessTimerResult;
    SpeedTest_Cycles: Integer;
    SpeedTest_SlowerName, SpeedTest_FasterName: String;
    pa: pointer;
  begin
    { testowanie na danych ktore nie sa CharFilled jest problematyczne.
      Czas wtedy bedzie zalezal liniowo od pozycji na ktorej jest przeklamanie.
      Zreszta dla danych losowych mamy prawie pewnosc ze przeklamanie bedzie
      juz na 1 pozycji, wiec jaki sens tu testowac szybkosc ?
      sChcemy sprawdzic szybkosc dla przypadku pesymistycznego. }
    pa := GetMem(SizeOfA);
    try
      FillChar(pa^, SizeOfA, 'x');

      SpeedTest_Cycles := 100000;
      SpeedTest_SlowerName := 'NaiveIsMemCharFilled';
      SpeedTest_FasterName := 'IsMemCharFilled';
      WritelnLog('SPEED TEST IsMemCharFilled on SizeOfA = '+ IntToStr(SizeOfA));

      StartTime := ProcessTimer;
      for SpeedTest_i := 1 to SpeedTest_Cycles do ;
      SpeedTest_Time0 := ProcessTimerSeconds(ProcessTimer, StartTime);
      WritelnLog(Format('Empty loop = %f',[SpeedTest_Time0]));

      StartTime := ProcessTimer;
      for SpeedTest_i := 1 to SpeedTest_Cycles do
        IsMemCharFilled(pa^, SizeOfA, 'x');
      SpeedTest_Time1 := ProcessTimerSeconds(ProcessTimer, StartTime);
      WritelnLog(SpeedTest_FasterName, Format(' = %f',[SpeedTest_Time1]));

      StartTime := ProcessTimer;
      // measure slower function
      for SpeedTest_i := 1 to SpeedTest_Cycles do
        NaiveIsMemCharFilled(pa^, SizeOfA, 'x');
      SpeedTest_Time2 := ProcessTimerSeconds(ProcessTimer, StartTime);
      WritelnLog(SpeedTest_SlowerName, Format(' = %f',[SpeedTest_Time2]));

      WritelnLog(
        SpeedTest_FasterName + ' is faster than ' +
        SpeedTest_SlowerName + ' by ' +
        Format('%f', [(SpeedTest_Time2-SpeedTest_Time0)/
                      (SpeedTest_Time1-SpeedTest_Time0)]));

    finally FreeMem(pa) end;
  end;

var
  a: array[0..100]of AnsiChar;
  SizeOfA: Integer;
  i, YPos: Integer;
begin
  for i := 1 to 1000 do
  begin
    { losuje SizeOfA bo chce zeby sprawdzil czy funkcje
      [Check]IsMemCharFilled dzialaja dla roznych Size.
      Zawsze niech SizeOfA >= 2, przypadki SizeOfA < 2 sprawdzimy pozniej osobno. }
    if Random(2) = 0 then SizeOfA := Random(4) else SizeOfA := Random(100);
    SizeOfA := SizeOfA + 2;

    FillChar(a, SizeOfA, 'x');
    if Random(2) = 0 then
    begin
    AssertTrue(CheckIsMemCharFilled(a, SizeOfA, 'x') = -1);
    AssertTrue(IsMemCharFilled(a, SizeOfA, 'x'));
    if not (CheckIsMemCharFilled(a, SizeOfA, 'y') = 0) then
    begin
      WritelnMem(a, SizeOfA);
      raise Exception.Create('failed');
    end;
    AssertTrue(not IsMemCharFilled(a, SizeOfA, 'y'));
    end else
    begin
    YPos := Random(SizeOfA);
    a[YPos] := 'y';
    AssertTrue(CheckIsMemCharFilled(a, SizeOfA, 'x') = YPos);
    AssertTrue(not IsMemCharFilled(a, SizeOfA, 'x'));
    if YPos = 0 then
      AssertTrue(CheckIsMemCharFilled(a, SizeOfA, 'y') = 1) else
      AssertTrue(CheckIsMemCharFilled(a, SizeOfA, 'y') = 0);
    AssertTrue(not IsMemCharFilled(a, SizeOfA, 'y'));
    end;
  end;

  { sprawdz dla SizeOfA = 1 }
  a[0] := 'k';
  AssertTrue(CheckIsMemCharFilled(a, 1, 'k') = -1);
  AssertTrue(IsMemCharFilled(a, 1, 'k'));
  AssertTrue(CheckIsMemCharFilled(a, 1, 'g') = 0);
  AssertTrue(not IsMemCharFilled(a, 1, 'g'));

  { sprawdz dla SizeOfA = 0 (zawsze odpowiedz bedzie brzmiala -1 / true,
    tak jak kwantyfikator ForAll jest zawsze true dla pustego zbioru...) }
  AssertTrue(CheckIsMemCharFilled(a, 0, 'd') = -1);
  AssertTrue(IsMemCharFilled(a, 0, 'd'));

  {$ifdef CASTLEUTILS_SPEED_TESTS}
  TimeTestIsMemCharFilled(100);
  TimeTestIsMemCharFilled(1000);
  TimeTestIsMemCharFilled(10000);
  {$endif}
end;

procedure TTestCastleUtils.TestSmallest2Exp;
var i: Cardinal;
begin
 AssertTrue(Smallest2Exponent(0) = -1);
 AssertTrue(Smallest2Power(0) = 0);
 AssertTrue(Smallest2Exponent(1) = 0);
 AssertTrue(Smallest2Power(1) = 1);
 AssertTrue(Smallest2Exponent(2) = 1);
 AssertTrue(Smallest2Power(2) = 2);
 for i := 3 to 4 do
 begin
  AssertTrue(Smallest2Exponent(i) = 2);
  AssertTrue(Smallest2Power(i) = 4);
 end;
 for i := 5 to 8 do
 begin
  AssertTrue(Smallest2Exponent(i) = 3);
  AssertTrue(Smallest2Power(i) = 8);
 end;
end;

procedure TTestCastleUtils.TestPathDelim;
{$ifdef UNIX}
begin
 AssertTrue(InclPathDelim('/c/blah/') = '/c/blah/');
 AssertTrue(InclPathDelim('/c/blah' ) = '/c/blah/');
 AssertTrue(ExclPathDelim('/c/blah/') = '/c/blah' );
 AssertTrue(ExclPathDelim('/c/blah' ) = '/c/blah' );
{$endif}
{$ifdef MSWINDOWS}
begin
 AssertTrue(InclPathDelim('c:\blah\') = 'c:\blah\');
 AssertTrue(InclPathDelim('c:\blah' ) = 'c:\blah\');
 AssertTrue(ExclPathDelim('c:\blah\') = 'c:\blah' );
 AssertTrue(ExclPathDelim('c:\blah' ) = 'c:\blah' );

 AssertTrue(InclPathDelim('c:\blah/') = 'c:\blah/');
 AssertTrue(ExclPathDelim('c:\blah/') = 'c:\blah' );
{$endif}
end;

procedure TTestCastleUtils.TestOSError;
begin
  // TODO: add some test for Delphi + Linux
  {$if defined(MSWINDOWS) or defined(FPC)}
  try
    OSCheck(
      {$ifdef MSWINDOWS} Windows.MoveFile('some_not_existing_file_name', 'foo') {$endif}
      {$if defined(UNIX) and defined(FPC)} FpRename('some_not_existing_file_name', 'foo') <> -1 {$endif}
    );
    raise Exception.Create('uups ! OSCheck failed !');
  except
    on EOSError do ;
  end;
  {$endif}
end;

procedure TTestCastleUtils.TestStrings;
begin
  // Uppercase Polish chars. We use UTF-8 now and it should work? Doesn't work yet.
  // AssertTrue(AnsiSameText('b�cwa�', 'B�CWA�'));
  // AssertTrue(not AnsiSameStr('b�cwa�', 'B�CWA�'));

  AssertTrue(SameText('becwal', 'BECWAL'));
  AssertTrue(not SameText('becwal', 'becwal '));
end;

procedure TTestCastleUtils.TestOthers;
begin
 AssertTrue(StringOfChar('x', 0) = '');
 AssertTrue(StringOfChar('x', 1) = 'x');
 AssertTrue(StringOfChar('s', 3) = 'sss');
 { We require Math.Power to work even with base <= 0 (but integer).
   We even used to have our own GeneralPower implemented for this purpose,
   but it's not needed since FPC 1.9.5 (bug 3005 is fixed). }
 AssertTrue(Power( 2.0, 2.0) = 4.0);
 AssertTrue(Power(-2.0, 2.0) = 4.0);
end;

procedure TTestCastleUtils.TestIntSqrt;

  procedure Test(const Value: Cardinal);
  var
    S: Cardinal;
  begin
    S := IntSqrt(Value);
    AssertTrue(Sqr(S) <= Value);
    AssertTrue(Sqr(S+1) > Value);
  end;

var
  I: Cardinal;
begin
  for I := 0       to 100 do Test(I);
  for I := 1000    to 1100 do Test(I);
  for I := 10000   to 10100 do Test(I);
  for I := 100000  to 100100 do Test(I);
  for I := 1000000 to 1000100 do Test(I);
end;

procedure TTestCastleUtils.TestDivMod;

  procedure OneTest(const Divident: Integer; const Divisor: Word;
    const CorrectDivResult, CorrectModResult: SmallInt);
  var
    DivResult: SmallInt;
    ModResult: SmallInt;
  begin
    CastleDivMod(Divident, Divisor, DivResult, ModResult);
    AssertTrue(DivResult = CorrectDivResult);
    AssertTrue(ModResult = CorrectModResult);

    DivResult := Divident div Divisor;
    ModResult := Divident mod Divisor;
    AssertTrue(DivResult = CorrectDivResult);
    AssertTrue(ModResult = CorrectModResult);
  end;

begin
  OneTest(-39, 20, -1, -19);
  OneTest(-9, 5, -1, -4);
  OneTest(10, 3, 3, 1);
end;

procedure TTestCastleUtils.TestClamp;
var
  A: Integer;
begin
  A := 123;
  ClampVar(A, 100, 200);
  AssertTrue(A = 123);
  ClampVar(A, 50, 100);
  AssertTrue(A = 100);
  ClampVar(A, 200, 300);
  AssertTrue(A = 200);

  AssertTrue(Clamped(123, 100, 200) = 123);
  AssertTrue(Clamped(123, 50, 100) = 100);
  AssertTrue(Clamped(123, 200, 300) = 200);
end;

procedure TTestCastleUtils.TestSimpleMath;
var
  A, B: Integer;
begin
  A := 123;
  B := 456;
  SwapValues(A, B);
  AssertTrue(A = 456);
  AssertTrue(B = 123);

  OrderUp(A, B);
  AssertTrue(A = 123);
  AssertTrue(B = 456);

  OrderUp(789, 1024, A, B);
  AssertTrue(A = 789);
  AssertTrue(B = 1024);

  AssertTrue(Between(3, -100, 100));
  AssertTrue(not Between(-300, -100, 100));

  AssertSameValue( 0.5, MapRange(2  , 1  , 3  , 0  , 1  ), 0.01);
  AssertSameValue( 0.5, MapRange(2.0, 1.0, 3.0, 0.0, 1.0), 0.01);

  AssertSameValue(0.75, MapRange(1.5, 3  , 1  , 0  , 1  ), 0.01);
  AssertSameValue(0.75, MapRange(1.5, 3.0, 1.0, 0.0, 1.0), 0.01);

  AssertSameValue(0.25, MapRange(1.5, 1  , 3  , 0  , 1  ), 0.01);
  AssertSameValue(0.25, MapRange(1.5, 1.0, 3.0, 0.0, 1.0), 0.01);

  AssertTrue(DivRoundUp(40, 4) = 10);
  AssertTrue(DivRoundUp(42, 4) = 11);
end;

procedure TTestCastleUtils.TestMinMax;
begin
  AssertTrue(Min(345, 789) = 345);
  AssertTrue(Max(345, 789) = 789);
  AssertTrue(MinIntValue([345, 123, 789]) = 123);
  AssertTrue(MaxIntValue([345, 123, 789]) = 789);
end;

procedure TTestCastleUtils.TestFileExt;
begin
  AssertEquals('.wrl', ExtractFileExt('blah.blah.blah' + PathDelim + 'foo.wrl'));
  AssertEquals('.wrl', ExtractFileExt('blah.blah.blah' + PathDelim + 'foo.bar.wrl'));
  AssertEquals('.wrl', ExtractFileDoubleExt('blah.blah.blah' + PathDelim + 'foo.wrl'));
  AssertEquals('.bar.wrl', ExtractFileDoubleExt('blah.blah.blah' + PathDelim + 'foo.bar.wrl'));
  AssertEquals('blah.blah.blah' + PathDelim + 'foo', DeleteFileExt('blah.blah.blah' + PathDelim + 'foo.wrl'));
  AssertEquals('blah.blah.blah' + PathDelim + 'foo.bar', DeleteFileExt('blah.blah.blah' + PathDelim + 'foo.bar.wrl'));
end;

procedure TTestCastleUtils.TestFloatModulo;
begin
  AssertSameValue(0.5, FloatModulo( 0.5, 2));
  AssertSameValue(0.5, FloatModulo( 2.5, 2));
  AssertSameValue(1.5, FloatModulo( 3.5, 2));
  AssertSameValue(1.5, FloatModulo(-0.5, 2));
  AssertSameValue(1.5, FloatModulo(-2.5, 2));
  AssertSameValue(0.5, FloatModulo(-3.5, 2));
end;

procedure TTestCastleUtils.TestRandomIntRange;

  procedure TestRange(const R1, R2: Integer);
  var
    I: Integer;
    MinRes, MaxRes, V: Integer;
  begin
    AssertTrue(R1 < R2);
    MinRes := High(Integer);
    MaxRes := Low(Integer);
    for I := 1 to 1000 do
    begin
      V := RandomIntRange(R1, R2);
      MinVar(MinRes, V);
      MaxVar(MaxRes, V);
    end;
    AssertTrue(MinRes <= MaxRes);
    AssertTrue(MinRes >= R1);
    AssertTrue(MaxRes < R2);
    // Writeln('For range [', R1, ',', R2 - 1, '], the random numbers were within [', MinRes, ',', MaxRes, ']. Should be usually equal, for large test count');
  end;

begin
  TestRange(10, 100);
  TestRange(-100, -13);
  TestRange(-5, 5);
end;

procedure TTestCastleUtils.TestRandomIntRangeInclusive;

  procedure TestRange(const R1, R2: Integer);
  var
    I: Integer;
    MinRes, MaxRes, V: Integer;
  begin
    AssertTrue(R1 < R2);
    MinRes := High(Integer);
    MaxRes := Low(Integer);
    for I := 1 to 1000 do
    begin
      V := RandomIntRangeInclusive(R1, R2);
      MinVar(MinRes, V);
      MaxVar(MaxRes, V);
    end;
    AssertTrue(MinRes <= MaxRes);
    AssertTrue(MinRes >= R1);
    AssertTrue(MaxRes <= R2);
    // Writeln('For range [', R1, ',', R2, '], the random numbers were within [', MinRes, ',', MaxRes, ']. Should be usually equal, for large test count');
  end;

begin
  TestRange(10, 100);
  TestRange(-100, -13);
  TestRange(-5, 5);
end;

procedure TTestCastleUtils.TestStrToFloatDot;
var
  S: Single;
  D: Double;
  E: Extended;
  SavedLocale: TSavedLocale;
begin
  SavedLocale := FakeLocaleDecimalSeparatorComma;

  AssertSameValue(0.2, StrToFloatDot('0.2'));

  AssertSameValue(0.2, StrToFloatDefDot('0.2', 0.3));
  AssertSameValue(0.3, StrToFloatDefDot('0,2', 0.3));

  AssertTrue(TryStrToFloatDot('0.2', S));
  AssertSameValue(0.2, S, 0.001);

  AssertTrue(TryStrToFloatDot('0.2', D));
  AssertSameValue(0.2, D, 0.001);

  AssertTrue(TryStrToFloatDot('0.2', E));
  AssertSameValue(0.2, E, 0.001);

  AssertFalse(TryStrToFloatDot('0,2', S));
  AssertFalse(TryStrToFloatDot('0,2', D));
  AssertFalse(TryStrToFloatDot('0,2', E));

  AssertEquals('0.10', FormatDot('%f', [0.1]));
  AssertEquals('0.1', FloatToStrDot(0.1));

  RestoreLocaleDecimalSeparatorComma(SavedLocale);
end;

procedure TTestCastleUtils.TestIsPathAbsolute;
begin
  {$ifdef UNIX}
  AssertTrue(IsPathAbsolute('/bla'));
  AssertTrue(IsPathAbsolute('/bla/asdasd'));
  AssertTrue(IsPathAbsolute('/bla/'));
  AssertTrue(IsPathAbsolute('/bla/asdasd/'));

  AssertFalse(IsPathAbsolute('\bla'));
  AssertFalse(IsPathAbsolute('\bla\asdasd'));
  AssertFalse(IsPathAbsolute('\bla\'));
  AssertFalse(IsPathAbsolute('\bla\asdasd\'));

  AssertFalse(IsPathAbsolute('c:/bla'));
  AssertFalse(IsPathAbsolute('c:/bla/asdasd'));
  AssertFalse(IsPathAbsolute('c:/bla/'));
  AssertFalse(IsPathAbsolute('c:/bla/asdasd/'));

  AssertFalse(IsPathAbsolute('c:\bla'));
  AssertFalse(IsPathAbsolute('c:\bla\asdasd'));
  AssertFalse(IsPathAbsolute('c:\bla\'));
  AssertFalse(IsPathAbsolute('c:\bla\asdasd\'));

  AssertFalse(IsPathAbsolute('bla'));
  AssertFalse(IsPathAbsolute('bla/asdasd'));
  AssertFalse(IsPathAbsolute('bla/'));
  AssertFalse(IsPathAbsolute('bla/asdasd/'));

  AssertFalse(IsPathAbsolute('bla'));
  AssertFalse(IsPathAbsolute('bla\asdasd'));
  AssertFalse(IsPathAbsolute('bla\'));
  AssertFalse(IsPathAbsolute('bla\asdasd\'));
  {$endif}

  {$ifdef MSWINDOWS}
  AssertFalse(IsPathAbsolute('/bla'));
  AssertFalse(IsPathAbsolute('/bla/asdasd'));
  AssertFalse(IsPathAbsolute('/bla/'));
  AssertFalse(IsPathAbsolute('/bla/asdasd/'));

  AssertFalse(IsPathAbsolute('\bla'));
  AssertFalse(IsPathAbsolute('\bla\asdasd'));
  AssertFalse(IsPathAbsolute('\bla\'));
  AssertFalse(IsPathAbsolute('\bla\asdasd\'));

  AssertTrue(IsPathAbsolute('c:/bla'));
  AssertTrue(IsPathAbsolute('c:/bla/asdasd'));
  AssertTrue(IsPathAbsolute('c:/bla/'));
  AssertTrue(IsPathAbsolute('c:/bla/asdasd/'));

  AssertTrue(IsPathAbsolute('c:\bla'));
  AssertTrue(IsPathAbsolute('c:\bla\asdasd'));
  AssertTrue(IsPathAbsolute('c:\bla\'));
  AssertTrue(IsPathAbsolute('c:\bla\asdasd\'));

  AssertFalse(IsPathAbsolute('bla'));
  AssertFalse(IsPathAbsolute('bla/asdasd'));
  AssertFalse(IsPathAbsolute('bla/'));
  AssertFalse(IsPathAbsolute('bla/asdasd/'));

  AssertFalse(IsPathAbsolute('bla'));
  AssertFalse(IsPathAbsolute('bla\asdasd'));
  AssertFalse(IsPathAbsolute('bla\'));
  AssertFalse(IsPathAbsolute('bla\asdasd\'));
  {$endif}
end;

procedure TTestCastleUtils.TestIsPathAbsoluteOnDrive;
begin
  {$ifdef UNIX}
  AssertTrue(IsPathAbsoluteOnDrive('/bla'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/asdasd'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/asdasd/'));

  AssertFalse(IsPathAbsoluteOnDrive('\bla'));
  AssertFalse(IsPathAbsoluteOnDrive('\bla\asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('\bla\'));
  AssertFalse(IsPathAbsoluteOnDrive('\bla\asdasd\'));

  AssertFalse(IsPathAbsoluteOnDrive('c:/bla'));
  AssertFalse(IsPathAbsoluteOnDrive('c:/bla/asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('c:/bla/'));
  AssertFalse(IsPathAbsoluteOnDrive('c:/bla/asdasd/'));

  AssertFalse(IsPathAbsoluteOnDrive('c:\bla'));
  AssertFalse(IsPathAbsoluteOnDrive('c:\bla\asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('c:\bla\'));
  AssertFalse(IsPathAbsoluteOnDrive('c:\bla\asdasd\'));

  AssertFalse(IsPathAbsoluteOnDrive('bla'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/asdasd/'));

  AssertFalse(IsPathAbsoluteOnDrive('bla'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\asdasd\'));
  {$endif}

  {$ifdef MSWINDOWS}
  AssertTrue(IsPathAbsoluteOnDrive('/bla'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/asdasd'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/'));
  AssertTrue(IsPathAbsoluteOnDrive('/bla/asdasd/'));

  AssertTrue(IsPathAbsoluteOnDrive('\bla'));
  AssertTrue(IsPathAbsoluteOnDrive('\bla\asdasd'));
  AssertTrue(IsPathAbsoluteOnDrive('\bla\'));
  AssertTrue(IsPathAbsoluteOnDrive('\bla\asdasd\'));

  AssertTrue(IsPathAbsoluteOnDrive('c:/bla'));
  AssertTrue(IsPathAbsoluteOnDrive('c:/bla/asdasd'));
  AssertTrue(IsPathAbsoluteOnDrive('c:/bla/'));
  AssertTrue(IsPathAbsoluteOnDrive('c:/bla/asdasd/'));

  AssertTrue(IsPathAbsoluteOnDrive('c:\bla'));
  AssertTrue(IsPathAbsoluteOnDrive('c:\bla\asdasd'));
  AssertTrue(IsPathAbsoluteOnDrive('c:\bla\'));
  AssertTrue(IsPathAbsoluteOnDrive('c:\bla\asdasd\'));

  AssertFalse(IsPathAbsoluteOnDrive('bla'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/'));
  AssertFalse(IsPathAbsoluteOnDrive('bla/asdasd/'));

  AssertFalse(IsPathAbsoluteOnDrive('bla'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\asdasd'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\'));
  AssertFalse(IsPathAbsoluteOnDrive('bla\asdasd\'));
  {$endif}
end;

procedure TTestCastleUtils.TestRestOf3DCoords;
var
  A, B: T3DAxis;
begin
  RestOf3DCoords(0, A, B);
  AssertEquals(1, A);
  AssertEquals(2, B);

  RestOf3DCoords(1, A, B);
  AssertEquals(0, A);
  AssertEquals(2, B);

  RestOf3DCoords(2, A, B);
  AssertEquals(0, A);
  AssertEquals(1, B);
end;

procedure TTestCastleUtils.TestRestOf3DCoordsCycle;
var
  A, B: T3DAxis;
begin
  RestOf3DCoordsCycle(0, A, B);
  AssertEquals(1, A);
  AssertEquals(2, B);

  RestOf3DCoordsCycle(1, A, B);
  AssertEquals(2, A);
  AssertEquals(0, B);

  RestOf3DCoordsCycle(2, A, B);
  AssertEquals(0, A);
  AssertEquals(1, B);
end;

procedure TTestCastleUtils.TestDecimalSeparator;
begin
  {$ifdef CASTLE_TEST_DECIMAL_SEPARATOR_COMMA}
  AssertEquals('123,45', Format('%f', [123.45]));
  AssertEquals('123,45', FloatToStr(123.45));
  AssertSameValue(123.45, StrToFloat('123,45'));
  {$else}
  AssertEquals('123' + {$ifdef FPC}DefaultFormatSettings{$else}FormatSettings{$endif}.DecimalSeparator + '45', Format('%f', [123.45]));
  AssertEquals('123' + {$ifdef FPC}DefaultFormatSettings{$else}FormatSettings{$endif}.DecimalSeparator + '45', FloatToStr(123.45));
  AssertSameValue(123.45, StrToFloat('123' + {$ifdef FPC}DefaultFormatSettings{$else}FormatSettings{$endif}.DecimalSeparator + '45'));
  {$endif}
end;

procedure TTestCastleUtils.TestFloatToStrDisplay;
begin
  AssertEquals('123', FloatToStrDisplay(123.000));
  AssertEquals('123.4', FloatToStrDisplay(123.400));
  AssertEquals('123.45', FloatToStrDisplay(123.450));
  AssertEquals('123.46', FloatToStrDisplay(123.456));

  AssertEquals('0', FloatToStrDisplay(0.000));
  AssertEquals('0.4', FloatToStrDisplay(0.400));
  AssertEquals('0.45', FloatToStrDisplay(0.450));
  AssertEquals('0.46', FloatToStrDisplay(0.456));

  AssertEquals('99.99', FloatToStrDisplay(99.99));
  AssertEquals('100', FloatToStrDisplay(99.999));
end;

procedure TTestCastleUtils.TestDeg;
begin
  AssertSameValue(0, Deg(0));
  AssertSameValue(pi/2, Deg(90));
  AssertSameValue(-pi/2, Deg(-90));
end;

initialization
  RegisterTest(TTestCastleUtils);
end.