forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestRunner.cs
More file actions
1373 lines (1233 loc) · 42.2 KB
/
TestRunner.cs
File metadata and controls
1373 lines (1233 loc) · 42.2 KB
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
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// We can't refer to or use Python.Runtime here.
// We want it to be loaded only inside the subdomains
using System;
using Microsoft.CSharp;
using System.CodeDom.Compiler;
using System.IO;
using System.Linq;
namespace Python.DomainReloadTests
{
/// <summary>
/// This class provides an executable that can run domain reload tests.
/// The setup is a bit complicated:
/// 1. pytest runs test_*.py in this directory.
/// 2. test_classname runs Python.DomainReloadTests.exe (this class) with an argument
/// 3. This class at runtime creates a directory that has both C# and
/// python code, and compiles the C#.
/// 4. This class then runs the C# code.
///
/// But there's a bit more indirection. This class compiles a DLL that
/// contains code that will change.
/// Then, the test case:
/// * Compiles some code, loads it into a domain, runs python that refers to it.
/// * Unload the domain, re-runs the domain to make sure domain reload happens correctly.
/// * Compile a new piece of code, load it into a new domain, run a new piece of
/// Python code to test the objects after they've been deleted or modified in C#.
/// * Unload the domain. Reload the domain, run the same python again.
///
/// This class gets built into an executable which takes one argument:
/// which test case to run. That's because pytest assumes we'll run
/// everything in one process, but we really want a clean process on each
/// test case to test the init/reload/teardown parts of the domain reload.
///
/// ### Debugging tips: ###
/// * Running pytest with the `-s` argument prevents stdout capture by pytest
/// * Add a sleep into the python test case before the crash/failure, then while
/// sleeping, attach the debugger to the Python.TestDomainReload.exe process.
/// </summary>
///
class TestRunner
{
const string TestAssemblyName = "DomainTests";
class TestCase
{
/// <summary>
/// The key to pass as an argument to choose this test.
/// </summary>
public string Name;
public override string ToString() => Name;
/// <summary>
/// The C# code to run in the first domain.
/// </summary>
public string DotNetBefore;
/// <summary>
/// The C# code to run in the second domain.
/// </summary>
public string DotNetAfter;
/// <summary>
/// The Python code to run as a module that imports the C#.
/// It should have two functions: before_reload() and after_reload().
/// Before will be called twice when DotNetBefore is loaded;
/// after will also be called twice when DotNetAfter is loaded.
/// To make the test fail, have those functions raise exceptions.
///
/// Make sure there's no leading spaces since Python cares.
/// </summary>
public string PythonCode;
}
static TestCase[] Cases = new TestCase[]
{
new TestCase
{
Name = "class_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Before { }
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class After { }
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
sys.my_cls = TestNamespace.Before
def after_reload():
assert sys.my_cls is not None
try:
foo = TestNamespace.Before
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "static_member_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls { public static int Before() { return 5; } }
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls { public static int After() { return 10; } }
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
if not hasattr(sys, 'my_cls'):
sys.my_cls = TestNamespace.Cls
sys.my_fn = TestNamespace.Cls.Before
assert 5 == sys.my_fn()
assert 5 == TestNamespace.Cls.Before()
def after_reload():
# We should have reloaded the class so we can access the new function.
assert 10 == sys.my_cls.After()
assert True is True
try:
# We should have reloaded the class. The old function still exists, but is now invalid.
sys.my_cls.Before()
except AttributeError:
print('Caught expected TypeError')
else:
raise AssertionError('Failed to throw exception: expected TypeError calling class member that no longer exists')
assert sys.my_fn is not None
try:
# Unbound functions still exist. They will error out when called though.
sys.my_fn()
except TypeError:
print('Caught expected TypeError')
else:
raise AssertionError('Failed to throw exception: expected TypeError calling unbound .NET function that no longer exists')
",
},
new TestCase
{
Name = "member_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls { public int Before() { return 5; } }
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls { public int After() { return 10; } }
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
sys.my_cls = TestNamespace.Cls()
sys.my_fn = TestNamespace.Cls().Before
sys.my_fn()
TestNamespace.Cls().Before()
def after_reload():
# We should have reloaded the class so we can access the new function.
assert 10 == sys.my_cls.After()
assert True is True
try:
# We should have reloaded the class. The old function still exists, but is now invalid.
sys.my_cls.Before()
except AttributeError:
print('Caught expected TypeError')
else:
raise AssertionError('Failed to throw exception: expected TypeError calling class member that no longer exists')
assert sys.my_fn is not None
try:
# Unbound functions still exist. They will error out when called though.
sys.my_fn()
except TypeError:
print('Caught expected TypeError')
else:
raise AssertionError('Failed to throw exception: expected TypeError calling unbound .NET function that no longer exists')
",
},
new TestCase
{
Name = "field_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public int Before = 2;
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public int After = 4;
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_int = Cls.Before
def after_reload():
print(sys.my_int)
try:
assert 2 == Cls.Before
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "property_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public int Before { get { return 2; } }
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public int After { get { return 4; } }
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_int = Cls.Before
def after_reload():
print(sys.my_int)
try:
assert 2 == Cls.Before
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "event_rename",
DotNetBefore = @"
using System;
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static event Action Before;
public static void Call()
{
if (Before != null) Before();
}
}
}",
DotNetAfter = @"
using System;
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static event Action After;
public static void Call()
{
if (After != null) After();
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
called = False
before_reload_called = False
after_reload_called = False
def callback_function():
global called
called = True
def before_reload():
global called, before_reload_called
called = False
Cls.Before += callback_function
Cls.Call()
assert called is True
before_reload_called = True
def after_reload():
global called, after_reload_called, before_reload_called
assert before_reload_called is True
if not after_reload_called:
assert called is True
after_reload_called = True
called = False
Cls.Call()
assert called is False
",
},
new TestCase
{
Name = "namespace_rename",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public int Foo;
public Cls(int i)
{
Foo = i;
}
}
}",
DotNetAfter = @"
namespace NewTestNamespace
{
[System.Serializable]
public class Cls
{
public int Foo;
public Cls(int i)
{
Foo = i;
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
sys.my_cls = TestNamespace.Cls
sys.my_inst = TestNamespace.Cls(1)
def after_reload():
try:
TestNamespace.Cls(2)
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "field_visibility_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo = 1;
public static int Field = 2;
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo = 1;
private static int Field = 2;
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
assert 2 == Cls.Field
assert 1 == Cls.Foo
def after_reload():
assert 1 == Cls.Foo
try:
assert 1 == Cls.Field
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "method_visibility_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo() { return 1; }
public static int Function() { return 2; }
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo() { return 1; }
private static int Function() { return 2; }
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_func = Cls.Function
assert 1 == Cls.Foo()
assert 2 == Cls.Function()
def after_reload():
assert 1 == Cls.Foo()
try:
assert 2 == Cls.Function()
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
try:
assert 2 == sys.my_func()
except TypeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "property_visibility_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo { get { return 1; } }
public static int Property { get { return 2; } }
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int Foo { get { return 1; } }
private static int Property { get { return 2; } }
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
assert 1 == Cls.Foo
assert 2 == Cls.Property
def after_reload():
assert 1 == Cls.Foo
try:
assert 2 == Cls.Property
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "class_visibility_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class PublicClass { }
[System.Serializable]
public class Cls { }
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
internal class Cls { }
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
sys.my_cls = TestNamespace.Cls
def after_reload():
sys.my_cls()
try:
TestNamespace.Cls()
except AttributeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "method_parameters_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static void MyFunction(int a)
{
System.Console.WriteLine(string.Format(""MyFunction says: {0}"", a));
}
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static void MyFunction(string a)
{
System.Console.WriteLine(string.Format(""MyFunction says: {0}"", a));
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_cls = Cls
sys.my_func = Cls.MyFunction
sys.my_cls.MyFunction(1)
sys.my_func(2)
def after_reload():
try:
sys.my_cls.MyFunction(1)
except TypeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
try:
sys.my_func(2)
except TypeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
# Calling the function from the class passes
sys.my_cls.MyFunction('test')
try:
# calling the callable directly fails
sys.my_func('test')
except TypeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
Cls.MyFunction('another test')
",
},
new TestCase
{
Name = "method_return_type_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static int MyFunction()
{
return 2;
}
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
public static string MyFunction()
{
return ""22"";
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_cls = Cls
sys.my_func = Cls.MyFunction
assert 2 == sys.my_cls.MyFunction()
assert 2 == sys.my_func()
def after_reload():
assert '22' == sys.my_cls.MyFunction()
assert '22' == sys.my_func()
assert '22' == Cls.MyFunction()
",
},
new TestCase
{
Name = "field_type_change",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public int Field = 2;
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Cls
{
static public string Field = ""22"";
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
from TestNamespace import Cls
def before_reload():
sys.my_cls = Cls
assert 2 == sys.my_cls.Field
def after_reload():
assert '22' == Cls.Field
assert '22' == sys.my_cls.Field
",
},
new TestCase
{
Name = "construct_removed_class",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Before { }
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class After { }
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
def before_reload():
sys.my_cls = TestNamespace.Before
def after_reload():
try:
bar = sys.my_cls()
except TypeError:
print('Caught expected exception')
else:
raise AssertionError('Failed to throw exception')
",
},
new TestCase
{
Name = "out_to_ref_param",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (out Data a)
{
a = new Data();
a.num = 9001;
}
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (ref Data a)
{
a.num = 7;
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
import System
def before_reload():
foo = TestNamespace.Data()
bar = TestNamespace.Cls.MyFn(foo)
assert bar.num == 9001
# foo shouldn't have changed.
assert foo.num == -1
def after_reload():
try:
# Now that the function takes a ref type, we must pass a valid object.
bar = TestNamespace.Cls.MyFn(None)
except System.NullReferenceException as e:
print('caught expected exception')
else:
raise AssertionError('failed to raise')
foo = TestNamespace.Data()
bar = TestNamespace.Cls.MyFn(foo)
# foo should have changed
assert foo.num == 7
assert bar.num == 7
# Pythonnet also returns a new object with `ref`-qualified parameters
assert foo is not bar
",
},
new TestCase
{
Name = "ref_to_out_param",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (ref Data a)
{
a.num = 7;
}
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (out Data a)
{
a = new Data();
a.num = 9001;
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
import System
def before_reload():
foo = TestNamespace.Data()
bar = TestNamespace.Cls.MyFn(foo)
# foo should have changed
assert foo.num == 7
assert bar.num == 7
def after_reload():
foo = TestNamespace.Data()
bar = TestNamespace.Cls.MyFn(foo)
assert bar.num == 9001
# foo shouldn't have changed.
assert foo.num == -1
# this should work too
baz = TestNamespace.Cls.MyFn(None)
assert baz.num == 9001
",
},
new TestCase
{
Name = "ref_to_in_param",
DotNetBefore = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (ref Data a)
{
a.num = 7;
System.Console.Write(""Method with ref parameter: "");
System.Console.WriteLine(a.num);
}
}
}",
DotNetAfter = @"
namespace TestNamespace
{
[System.Serializable]
public class Data
{
public int num = -1;
}
[System.Serializable]
public class Cls
{
public static void MyFn (Data a)
{
System.Console.Write(""Method with in parameter: "");
System.Console.WriteLine(a.num);
}
}
}",
PythonCode = @"
import clr
import sys
clr.AddReference('DomainTests')
import TestNamespace
import System
def before_reload():
foo = TestNamespace.Data()
bar = TestNamespace.Cls.MyFn(foo)
# foo should have changed
assert foo.num == 7
assert bar.num == 7
def after_reload():
foo = TestNamespace.Data()
TestNamespace.Cls.MyFn(foo)
# foo should not have changed
assert foo.num == TestNamespace.Data().num
",
},
new TestCase
{