-
-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathNumberServicesTest.pas
791 lines (677 loc) · 21.3 KB
/
NumberServicesTest.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
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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
unit NumberServicesTest;
interface
uses
DUnitX.TestFramework,
PythonEngine;
type
TRandomInteger = class(TObject)
strict private
FValue: Integer;
private
procedure SetValue(const Value: Integer);
public
constructor Create;
property Value: Integer read FValue write SetValue;
end;
PyTRandomInteger = class(TPyObject)
private
FRandomInteger: TRandomInteger;
public
constructor CreateWith(PythonType: TPythonType; args, kwds: PPyObject); override;
// Basic services
function Repr: PPyObject; override;
// Number services
function NbAdd(obj: PPyObject): PPyObject; override; // 0
function NbSubtract(obj: PPyObject): PPyObject; override; // 1
function NbMultiply(obj: PPyObject): PPyObject; override; // 2
function NbRemainder(obj: PPyObject): PPyObject; override; // 4 {3 is for obsolete nsDivide}
function NbDivmod(obj: PPyObject): PPyObject; override; // 5
function NbPower(ob1, ob2: PPyObject): PPyObject; override; // 6
function NbNegative: PPyObject; override; // 7
function NbPositive: PPyObject; override; // 8
function NbAbsolute: PPyObject; override; // 9
function NbInvert: PPyObject; override; // 11 (10 for obsolete nsNonZero)
function NbLShift(obj: PPyObject): PPyObject; override; // 12
function NbRShift(obj: PPyObject): PPyObject; override; // 13
function NbAnd(obj: PPyObject): PPyObject; override; // 14
function NbXor(obj: PPyObject): PPyObject; override; // 15
function NbOr(obj: PPyObject): PPyObject; override; // 16
function NbInt : PPyObject; override; // 18 (17 is for obsolete nsCoerce)
function NbFloat : PPyObject; override; // 20 (19 is for obsolete nsLong)
function NbFloorDivide(obj: PPyObject): PPyObject; override; // 23 (21 is for obsolete nsOct, 22 for nsHex)
function NbTrueDivide(obj: PPyObject): PPyObject; override; // 24
function NbMatrixMultiply(obj: PPyObject): PPyObject; override; // 25
function NbBool: Integer; override; // 26
private
function PerformArithmeticOp(obj: PPyObject; op: string): PPyObject;
public
destructor Destroy; override;
end;
[TestFixture]
TTestNumberServices = class(TObject)
private
PythonType_TRndInt: TPythonType;
FPythonModule : TPythonModule;
PythonEngine : TPythonEngine;
pdvainteger: integer;
pdvbinteger: integer;
pdvc : TPythonDelphiVar;
public
[SetupFixture]
procedure SetupFixture;
[TearDownFixture]
procedure TearDownFixture;
[Test]
procedure TestAdd; // 0
[Test]
procedure TestSubtract; // 1
[Test]
procedure TestMultiply; // 2
[Test]
procedure TestRemainder; // 4
[Test]
procedure TestDivMod; // 5
[Test]
procedure TestPower; // 6
[Test]
procedure TestNegative; // 7
[Test]
procedure TestPositive; // 8
[Test]
procedure TestAbsolute; // 9
[Test]
procedure TestInvert; // 11
[Test]
procedure TestLShift; // 12
[Test]
procedure TestRShift; // 13
[Test]
procedure TestAnd; // 14
[Test]
procedure TestXor; // 15
[Test]
procedure TestOr; // 16
[Test]
procedure TestInt; // 18
[Test]
procedure TestFloat; // 20
[Test]
procedure TestFloorDivide; // 23
[Test]
procedure TestTrueDivide; // 24
[Test]
procedure TestMatrixMultiply; // 25
[Test]
procedure TestBool; // 26
end;
Var PrintResults: Boolean = False;
implementation
uses
System.Variants,
System.SysUtils,
System.Math;
procedure AddPythonType(var PythonType: TPythonType;
Name: string;
TypeName: AnsiString;
Engine: TPythonEngine;
Module: TPythonModule;
PyObjectClass: TPyObjectClass;
Basic: TBasicServices;
Number: TNumberServices);
begin
if not Assigned(PythonType) then
begin
PythonType := TPythonType.Create(Module);
PythonType.Engine := Engine;
PythonType.Module := Module;
PythonType.Name := Name;
PythonType.Services.Basic := Basic;
PythonType.Services.Mapping := [];
PythonType.Services.Sequence := [];
PythonType.Services.Number := Number;
PythonType.TypeName := TypeName;
PythonType.PyObjectClass := PyObjectClass;
PythonType.GenerateCreateFunction := False;
PythonType.Initialize;
end;
end;
function GetVal(AModule : PPyObject; AVarName : AnsiString) : PPyObject;
begin
with GetPythonEngine do
begin
Result := PyObject_GetAttrString(AModule, PAnsiChar(AVarName));
if PyErr_Occurred <> nil then
PyErr_Clear
else
Py_XDecRef(Result); // keep a borrowed reference.
end
end;
procedure TTestNumberServices.SetupFixture;
var
Py : PPyObject;
valpy: TPyObject;
val: PyTRandomInteger;
begin
PythonEngine := TPythonEngine.Create(nil);
PythonEngine.Name := 'PythonEngine';
PythonEngine.AutoLoad := False;
PythonEngine.FatalAbort := True;
PythonEngine.FatalMsgDlg := True;
PythonEngine.UseLastKnownVersion := True;
PythonEngine.AutoFinalize := True;
PythonEngine.PyFlags := [pfInteractive];
PythonEngine.LoadDll;
// python module
FPythonModule := TPythonModule.Create(GetPythonEngine);
FPythonModule.Engine := GetPythonEngine;
FPythonModule.ModuleName := 'testing123';
FPythonModule.Initialize;
PythonType_TRndInt := nil;
AddPythonType(PythonType_TRndInt, 'PythonType_RndInt', 'TRandomInteger',
GetPythonEngine, FPythonModule, PyTRandomInteger,
[ bsGetAttrO, bsSetAttrO, bsRepr ],
[ nsAdd,
nsSubtract,
nsMultiply,
nsTrueDivide,
nsRemainder,
nsDivmod,
nsPower,
nsNegative,
nsPositive,
nsAbsolute,
nsInvert,
nsLShift,
nsRShift,
nsAnd,
nsXor,
nsOr,
nsInt,
nsFloat,
nsFloorDivide,
nsMatrixMultiply,
nsBool ]);
// import our module
GetPythonEngine.Run_CommandAsString('import ' + FPythonModule.ModuleName, single_input);
pdvc := TPythonDelphiVar.Create(nil);
pdvc.Engine := GetPythonEngine;
pdvc.Module := '__main__';
pdvc.VarName := 'c';
pdvc.Initialize;
GetPythonEngine.Run_CommandAsString('aa = testing123.TRandomInteger()', single_input);
GetPythonEngine.Run_CommandAsString('bb = testing123.TRandomInteger()', single_input);
py := GetVal(GetPythonEngine.GetMainModule, 'aa');
valpy := PythonToDelphi(py);
val := valpy as PyTRandomInteger;
if Assigned(Py) then
begin
pdvainteger := val.FRandomInteger.Value;
end;
py := GetVal(GetPythonEngine.GetMainModule, 'bb');
valpy := PythonToDelphi(py);
val := valpy as PyTRandomInteger;
if Assigned(Py) then
begin
pdvbinteger := val.FRandomInteger.Value;
end;
end;
{ PyTRandomInteger }
function PythonToTRandomInteger(obj: PPyObject): TRandomInteger;
begin
if obj = GetPythonEngine.Py_None then
Result := nil
else
Result := TRandomInteger(PyTRandomInteger(PythonToDelphi(obj)).FRandomInteger);
end;
function PyTRandomInteger.Repr: PPyObject;
var
info: string;
begin
with GetPythonEngine do
begin
info := 'NIL';
// regular
if Assigned(FRandomInteger) then
begin
info := IntToStr(FRandomInteger.Value);
end;
Result := VariantAsPyObject(info);
end;
end;
{ PyTRandomInteger }
constructor PyTRandomInteger.CreateWith(PythonType: TPythonType; args,
kwds: PPyObject);
var
val1: PPyObject;
begin
Create(PythonType);
with GetPythonEngine do
begin
try
// create object
FRandomInteger := TRandomInteger.Create;
// try to parse the parameter
val1 := nil;
if Assigned(args) then
// try to parse
if (PyArg_ParseTuple(args, '|O:CreateWith', @val1) <> 0) and Assigned(val1) then
FRandomInteger.Value := PythonToTRandomInteger(val1).Value;
except
on e: Exception do
PyErr_SetString(PyExc_Exception^, PAnsiChar(EncodeString(e.Message)));
end;
end;
end;
function PyTRandomInteger.NbAdd(obj: PPyObject): PPyObject; // 0
begin
Result := PerformArithmeticOp(obj, '+');
end;
function PyTRandomInteger.NbSubtract(obj: PPyObject): PPyObject; // 1
begin
Result := PerformArithmeticOp(obj, '-');
end;
function PyTRandomInteger.NbMultiply(obj: PPyObject): PPyObject; // 2
begin
Result := PerformArithmeticOp(obj, '*');
end;
function PyTRandomInteger.NbRemainder(obj: PPyObject): PPyObject; // 4
begin
Result := PerformArithmeticOp(obj, '%');
end;
function PyTRandomInteger.NbDivmod(obj: PPyObject): PPyObject; // 5
begin
Result := PerformArithmeticOp(obj, 'divmod');
end;
function PyTRandomInteger.NbPower(ob1, ob2: PPyObject): PPyObject; // 6
begin
Result := PerformArithmeticOp(ob1, '^');
end;
function PyTRandomInteger.NbNegative: PPyObject; // 7
var
arg1: Integer;
begin
with GetPythonEngine do
begin
arg1 := FRandomInteger.Value;
Result := VariantAsPyObject(-arg1);
end
end;
function PyTRandomInteger.NbPositive: PPyObject; // 8
var
arg1: Integer;
begin
with GetPythonEngine do
begin
arg1 := FRandomInteger.Value;
Result := VariantAsPyObject(+arg1);
end
end;
destructor PyTRandomInteger.Destroy;
begin
FRandomInteger.Free;
inherited;
end;
function PyTRandomInteger.NbAbsolute: PPyObject; // 9
begin
with GetPythonEngine do
begin
Result := VariantAsPyObject(Abs(FRandomInteger.Value));
end;
end;
function PyTRandomInteger.NbInvert: PPyObject; // 11
begin
with GetPythonEngine do
begin
Result := VariantAsPyObject(1-(FRandomInteger.Value+1));
end;
end;
function PyTRandomInteger.NbLShift(obj: PPyObject): PPyObject; // 12
begin
Result := PerformArithmeticOp(obj, '<<');
end;
function PyTRandomInteger.NbRShift(obj: PPyObject): PPyObject; // 13
begin
Result := PerformArithmeticOp(obj, '>>');
end;
function PyTRandomInteger.NbAnd(obj: PPyObject): PPyObject; // 14
begin
Result := PerformArithmeticOp(obj, 'and');
end;
function PyTRandomInteger.NbXor(obj: PPyObject): PPyObject; // 15
begin
Result := PerformArithmeticOp(obj, 'xor');
end;
function PyTRandomInteger.NbOr(obj: PPyObject): PPyObject; // 16
begin
Result := PerformArithmeticOp(obj, 'or');
end;
function PyTRandomInteger.NbInt: PPyObject; // 18
begin
with GetPythonEngine do
begin
Result := VariantAsPyObject(FRandomInteger.Value);
end;
end;
function PyTRandomInteger.NbFloat: PPyObject; // 20
begin
with GetPythonEngine do
begin
Result := VariantAsPyObject(Single(FRandomInteger.Value));
end;
end;
function PyTRandomInteger.nbFloorDivide(obj: PPyObject): PPyObject; // 23
begin
Result := PerformArithmeticOp(obj, 'floordivide');
end;
function PyTRandomInteger.NbTrueDivide(obj: PPyObject) : PPyObject; // 24
begin
Result := PerformArithmeticOp(obj, '/');
end;
function PyTRandomInteger.NbMatrixMultiply(obj: PPyObject): PPyObject; // 25
begin
Result := PerformArithmeticOp(obj, '@');
end;
function PyTRandomInteger.NbBool: Integer; // 26
begin
with GetPythonEngine do
begin
Result := IfThen(FRandomInteger.Value=0, Ord(False), Ord(True));
end;
end;
function PyTRandomInteger.PerformArithmeticOp(obj: PPyObject; op: string): PPyObject;
var
val: TPyObject;
arg1, arg2: Integer;
VarArray: Variant;
begin
with GetPythonEngine do
begin
Result := ReturnNone;
// convert to delphi object
val := PythonToDelphi(obj);
// we can only add the same type
if (val.PythonType = Self.PythonType) then
begin
arg1 := FRandomInteger.Value;
arg2 := PyTRandomInteger(val).FRandomInteger.Value;
case op[1] of
'+': Result := VariantAsPyObject(arg1 + arg2);
'-': Result := VariantAsPyObject(arg1 - arg2);
'/': Result := VariantAsPyObject(arg1 div arg2);
'*': Result := VariantAsPyObject(arg1 * arg2);
'@': Result := VariantAsPyObject(not (arg1 * arg2)); // intentionally different from '*'
'%': Result := VariantAsPyObject(arg1 mod arg2);
'^': Result := VariantAsPyObject(System.Math.Power(Double(arg1), Double(arg2)));
else
begin
if op='divmod' then
begin
VarArray := VarArrayCreate([0, 1], varInteger);
VarArrayPut(VarArray, arg1 div arg2, [0]);
VarArrayPut(VarArray, arg1 mod arg2, [1]);
Result := VariantAsPyObject(VarArray);
end
else if op='>>' then
begin
Result := VariantAsPyObject(arg1 shr arg2);
end
else if op='<<' then
begin
Result := VariantAsPyObject(arg1 shl arg2);
end
else if op='and' then
begin
Result := VariantAsPyObject(arg1 and arg2);
end
else if op='xor' then
begin
Result := VariantAsPyObject(arg1 xor arg2);
end
else if op='or' then
begin
Result := VariantAsPyObject(arg1 or arg2);
end
else if op='floordivide' then
begin
Result := VariantAsPyObject(arg1 div arg2);
end;
end;
end;
end
else // the arguments were not right
Result := nil;
end;
end;
{ TRandomInteger }
constructor TRandomInteger.Create;
begin
inherited;
FValue := 1+Random(100); // Result interval [1, 101] so safe to test division
end;
procedure TRandomInteger.SetValue(const Value: Integer);
begin
FValue := Value;
end;
procedure TTestNumberServices.TearDownFixture;
begin
PythonEngine.Free;
pdvc.Free;
end;
// nsAdd
procedure TTestNumberServices.TestAdd; // 0
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa+bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger+pdvbinteger);
end;
// nsSubtract
procedure TTestNumberServices.TestSubtract; // 1
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa-bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger-pdvbinteger);
end;
// nsMultiply
procedure TTestNumberServices.TestMultiply; // 2
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa*bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger*pdvbinteger);
end;
// nsRemainder
procedure TTestNumberServices.TestRemainder; // 4
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa%bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger mod pdvbinteger);
end;
// nsDivmod
procedure TTestNumberServices.TestDivMod; // 5
var
VarArr: Variant;
res0, res1: Integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=divmod(aa,bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
VarArr := pdvc.Value;
res0 := VarArr[0];
res1 := VarArr[1];
Assert.AreEqual(res0, pdvainteger div pdvbinteger);
Assert.AreEqual(res1, pdvainteger mod pdvbinteger);
end;
// nsPower
procedure TTestNumberServices.TestPower; // 6
var
pdvdouble: double;
begin
GetPythonEngine.Run_CommandAsString('c.Value=float(aa**bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvdouble := pdvc.Value;
Assert.AreEqual(Double(pdvdouble), {Round}(System.Math.Power(Double(pdvainteger), Double(pdvbinteger))));
end;
// nsNegative
procedure TTestNumberServices.TestNegative; // 7
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(-aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, -pdvainteger);
end;
// nsPositive
procedure TTestNumberServices.TestPositive; // 8
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=int(+aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, +pdvainteger);
end;
// nsAbsolute
procedure TTestNumberServices.TestAbsolute; // 9
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=abs(-aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, +pdvainteger);
end;
// nsInvert
procedure TTestNumberServices.TestInvert; // 11
var
pdvinteger: Integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=~aa', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, 1-(pdvainteger+1));
end;
// nsLShift
procedure TTestNumberServices.TestLShift; // 12
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa<<bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger shl pdvbinteger);
end;
// nsRShift
procedure TTestNumberServices.TestRShift; // 13
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa>>bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger shr pdvbinteger);
end;
// nsAnd
procedure TTestNumberServices.TestAnd; // 14
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa&bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger and pdvbinteger);
end;
// nsXor
procedure TTestNumberServices.TestXor; // 15
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa^bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger xor pdvbinteger);
end;
// nsOr
procedure TTestNumberServices.TestOr; // 16
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa|bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger or pdvbinteger);
end;
// nsInt
procedure TTestNumberServices.TestInt; // 18
var
pdvinteger: Integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=int(aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger);
end;
// nsFloat
procedure TTestNumberServices.TestFloat; // 20
var
pdvsingle: Single;
begin
GetPythonEngine.Run_CommandAsString('c.Value=float(aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvsingle := pdvc.Value;
Assert.AreEqual(pdvsingle, single(pdvainteger));
end;
// nsFloorDivide
procedure TTestNumberServices.TestFloorDivide; // 23
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa//bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger div pdvbinteger);
end;
// nsTrueDivide
procedure TTestNumberServices.TestTrueDivide; // 24
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa/bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, pdvainteger div pdvbinteger);
end;
// nsMatrixMultiply
procedure TTestNumberServices.TestMatrixMultiply; // 25
var
pdvinteger: integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value=(aa @ bb)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger, not (pdvainteger * pdvbinteger)); // not really a matrix mult, but who cares!
end;
// nsBool
procedure TTestNumberServices.TestBool; // 26
var
pdvinteger: Integer;
begin
GetPythonEngine.Run_CommandAsString('c.Value= bool(aa)', single_input);
if PrintResults then GetPythonEngine.Run_CommandAsString('print(c)', single_input);
pdvinteger := pdvc.Value;
Assert.AreEqual(pdvinteger=0, pdvainteger=0)
end;
initialization
TDUnitX.RegisterTestFixture(TTestNumberServices);
ReportMemoryLeaksOnShutdown := True;
end.