11
11
from test .support import ALWAYS_EQ , check__all__ , threading_helper
12
12
from datetime import timedelta
13
13
14
+ python_version = sys .version_info [:2 ]
14
15
15
16
# for pickle tests
16
17
try :
@@ -347,17 +348,38 @@ class IntLogic(int, Enum):
347
348
self .assertTrue (IntLogic .true )
348
349
self .assertFalse (IntLogic .false )
349
350
350
- def test_contains (self ):
351
+ @unittest .skipIf (
352
+ python_version >= (3 , 12 ),
353
+ '__contains__ now returns True/False for all inputs' ,
354
+ )
355
+ def test_contains_er (self ):
351
356
Season = self .Season
352
357
self .assertIn (Season .AUTUMN , Season )
353
358
with self .assertRaises (TypeError ):
354
- 3 in Season
359
+ with self .assertWarns (DeprecationWarning ):
360
+ 3 in Season
355
361
with self .assertRaises (TypeError ):
356
- 'AUTUMN' in Season
357
-
362
+ with self . assertWarns ( DeprecationWarning ):
363
+ 'AUTUMN' in Season
358
364
val = Season (3 )
359
365
self .assertIn (val , Season )
366
+ #
367
+ class OtherEnum (Enum ):
368
+ one = 1 ; two = 2
369
+ self .assertNotIn (OtherEnum .two , Season )
360
370
371
+ @unittest .skipIf (
372
+ python_version < (3 , 12 ),
373
+ '__contains__ only works with enum memmbers before 3.12' ,
374
+ )
375
+ def test_contains_tf (self ):
376
+ Season = self .Season
377
+ self .assertIn (Season .AUTUMN , Season )
378
+ self .assertTrue (3 in Season )
379
+ self .assertFalse ('AUTUMN' in Season )
380
+ val = Season (3 )
381
+ self .assertIn (val , Season )
382
+ #
361
383
class OtherEnum (Enum ):
362
384
one = 1 ; two = 2
363
385
self .assertNotIn (OtherEnum .two , Season )
@@ -1932,6 +1954,38 @@ def _missing_(cls, item):
1932
1954
else :
1933
1955
raise Exception ('Exception not raised.' )
1934
1956
1957
+ def test_missing_exceptions_reset (self ):
1958
+ import weakref
1959
+ #
1960
+ class TestEnum (enum .Enum ):
1961
+ VAL1 = 'val1'
1962
+ VAL2 = 'val2'
1963
+ #
1964
+ class Class1 :
1965
+ def __init__ (self ):
1966
+ # Gracefully handle an exception of our own making
1967
+ try :
1968
+ raise ValueError ()
1969
+ except ValueError :
1970
+ pass
1971
+ #
1972
+ class Class2 :
1973
+ def __init__ (self ):
1974
+ # Gracefully handle an exception of Enum's making
1975
+ try :
1976
+ TestEnum ('invalid_value' )
1977
+ except ValueError :
1978
+ pass
1979
+ # No strong refs here so these are free to die.
1980
+ class_1_ref = weakref .ref (Class1 ())
1981
+ class_2_ref = weakref .ref (Class2 ())
1982
+ #
1983
+ # The exception raised by Enum creates a reference loop and thus
1984
+ # Class2 instances will stick around until the next gargage collection
1985
+ # cycle, unlike Class1.
1986
+ self .assertIs (class_1_ref (), None )
1987
+ self .assertIs (class_2_ref (), None )
1988
+
1935
1989
def test_multiple_mixin (self ):
1936
1990
class MaxMixin :
1937
1991
@classproperty
@@ -2085,7 +2139,7 @@ def test_empty_globals(self):
2085
2139
exec (code , global_ns , local_ls )
2086
2140
2087
2141
@unittest .skipUnless (
2088
- sys . version_info [: 2 ] == (3 , 9 ),
2142
+ python_version == (3 , 9 ),
2089
2143
'private variables are now normal attributes' ,
2090
2144
)
2091
2145
def test_warning_for_private_variables (self ):
@@ -2390,19 +2444,42 @@ def test_pickle(self):
2390
2444
test_pickle_dump_load (self .assertIs , FlagStooges .CURLY | FlagStooges .MOE )
2391
2445
test_pickle_dump_load (self .assertIs , FlagStooges )
2392
2446
2393
- def test_contains (self ):
2447
+ @unittest .skipIf (
2448
+ python_version >= (3 , 12 ),
2449
+ '__contains__ now returns True/False for all inputs' ,
2450
+ )
2451
+ def test_contains_er (self ):
2394
2452
Open = self .Open
2395
2453
Color = self .Color
2396
2454
self .assertFalse (Color .BLACK in Open )
2397
2455
self .assertFalse (Open .RO in Color )
2398
2456
with self .assertRaises (TypeError ):
2399
- 'BLACK' in Color
2457
+ with self .assertWarns (DeprecationWarning ):
2458
+ 'BLACK' in Color
2400
2459
with self .assertRaises (TypeError ):
2401
- 'RO' in Open
2460
+ with self .assertWarns (DeprecationWarning ):
2461
+ 'RO' in Open
2402
2462
with self .assertRaises (TypeError ):
2403
- 1 in Color
2463
+ with self .assertWarns (DeprecationWarning ):
2464
+ 1 in Color
2404
2465
with self .assertRaises (TypeError ):
2405
- 1 in Open
2466
+ with self .assertWarns (DeprecationWarning ):
2467
+ 1 in Open
2468
+
2469
+ @unittest .skipIf (
2470
+ python_version < (3 , 12 ),
2471
+ '__contains__ only works with enum memmbers before 3.12' ,
2472
+ )
2473
+ def test_contains_tf (self ):
2474
+ Open = self .Open
2475
+ Color = self .Color
2476
+ self .assertFalse (Color .BLACK in Open )
2477
+ self .assertFalse (Open .RO in Color )
2478
+ self .assertFalse ('BLACK' in Color )
2479
+ self .assertFalse ('RO' in Open )
2480
+ self .assertTrue (1 in Color )
2481
+ self .assertTrue (1 in Open )
2482
+
2406
2483
2407
2484
def test_member_contains (self ):
2408
2485
Perm = self .Perm
@@ -2883,21 +2960,45 @@ def test_programatic_function_from_empty_tuple(self):
2883
2960
self .assertEqual (len (lst ), len (Thing ))
2884
2961
self .assertEqual (len (Thing ), 0 , Thing )
2885
2962
2886
- def test_contains (self ):
2963
+ @unittest .skipIf (
2964
+ python_version >= (3 , 12 ),
2965
+ '__contains__ now returns True/False for all inputs' ,
2966
+ )
2967
+ def test_contains_er (self ):
2887
2968
Open = self .Open
2888
2969
Color = self .Color
2889
2970
self .assertTrue (Color .GREEN in Color )
2890
2971
self .assertTrue (Open .RW in Open )
2891
2972
self .assertFalse (Color .GREEN in Open )
2892
2973
self .assertFalse (Open .RW in Color )
2893
2974
with self .assertRaises (TypeError ):
2894
- 'GREEN' in Color
2975
+ with self .assertWarns (DeprecationWarning ):
2976
+ 'GREEN' in Color
2895
2977
with self .assertRaises (TypeError ):
2896
- 'RW' in Open
2978
+ with self .assertWarns (DeprecationWarning ):
2979
+ 'RW' in Open
2897
2980
with self .assertRaises (TypeError ):
2898
- 2 in Color
2981
+ with self .assertWarns (DeprecationWarning ):
2982
+ 2 in Color
2899
2983
with self .assertRaises (TypeError ):
2900
- 2 in Open
2984
+ with self .assertWarns (DeprecationWarning ):
2985
+ 2 in Open
2986
+
2987
+ @unittest .skipIf (
2988
+ python_version < (3 , 12 ),
2989
+ '__contains__ only works with enum memmbers before 3.12' ,
2990
+ )
2991
+ def test_contains_tf (self ):
2992
+ Open = self .Open
2993
+ Color = self .Color
2994
+ self .assertTrue (Color .GREEN in Color )
2995
+ self .assertTrue (Open .RW in Open )
2996
+ self .assertTrue (Color .GREEN in Open )
2997
+ self .assertTrue (Open .RW in Color )
2998
+ self .assertFalse ('GREEN' in Color )
2999
+ self .assertFalse ('RW' in Open )
3000
+ self .assertTrue (2 in Color )
3001
+ self .assertTrue (2 in Open )
2901
3002
2902
3003
def test_member_contains (self ):
2903
3004
Perm = self .Perm
@@ -3267,7 +3368,7 @@ def test_convert(self):
3267
3368
if name [0 :2 ] not in ('CO' , '__' )],
3268
3369
[], msg = 'Names other than CONVERT_TEST_* found.' )
3269
3370
3270
- @unittest .skipUnless (sys . version_info [: 2 ] == (3 , 8 ),
3371
+ @unittest .skipUnless (python_version == (3 , 8 ),
3271
3372
'_convert was deprecated in 3.8' )
3272
3373
def test_convert_warn (self ):
3273
3374
with self .assertWarns (DeprecationWarning ):
@@ -3276,7 +3377,7 @@ def test_convert_warn(self):
3276
3377
('test.test_enum' , '__main__' )[__name__ == '__main__' ],
3277
3378
filter = lambda x : x .startswith ('CONVERT_TEST_' ))
3278
3379
3279
- @unittest .skipUnless (sys . version_info >= (3 , 9 ),
3380
+ @unittest .skipUnless (python_version >= (3 , 9 ),
3280
3381
'_convert was removed in 3.9' )
3281
3382
def test_convert_raise (self ):
3282
3383
with self .assertRaises (AttributeError ):
@@ -3285,6 +3386,33 @@ def test_convert_raise(self):
3285
3386
('test.test_enum' , '__main__' )[__name__ == '__main__' ],
3286
3387
filter = lambda x : x .startswith ('CONVERT_TEST_' ))
3287
3388
3389
+ class TestHelpers (unittest .TestCase ):
3390
+
3391
+ sunder_names = '_bad_' , '_good_' , '_what_ho_'
3392
+ dunder_names = '__mal__' , '__bien__' , '__que_que__'
3393
+ private_names = '_MyEnum__private' , '_MyEnum__still_private'
3394
+ private_and_sunder_names = '_MyEnum__private_' , '_MyEnum__also_private_'
3395
+ random_names = 'okay' , '_semi_private' , '_weird__' , '_MyEnum__'
3396
+
3397
+ def test_sunder (self ):
3398
+ for name in self .sunder_names + self .private_and_sunder_names :
3399
+ self .assertTrue (enum ._is_sunder (name ), '%r is a not sunder name?' % name )
3400
+ for name in self .dunder_names + self .private_names + self .random_names :
3401
+ self .assertFalse (enum ._is_sunder (name ), '%r is a sunder name?' % name )
3402
+
3403
+ def test_dunder (self ):
3404
+ for name in self .dunder_names :
3405
+ self .assertTrue (enum ._is_dunder (name ), '%r is a not dunder name?' % name )
3406
+ for name in self .sunder_names + self .private_names + self .private_and_sunder_names + self .random_names :
3407
+ self .assertFalse (enum ._is_dunder (name ), '%r is a dunder name?' % name )
3408
+
3409
+ def test_is_private (self ):
3410
+ for name in self .private_names + self .private_and_sunder_names :
3411
+ self .assertTrue (enum ._is_private ('MyEnum' , name ), '%r is a not private name?' )
3412
+ for name in self .sunder_names + self .dunder_names + self .random_names :
3413
+ self .assertFalse (enum ._is_private ('MyEnum' , name ), '%r is a private name?' )
3414
+
3288
3415
3289
3416
if __name__ == '__main__' :
3290
3417
unittest .main ()
3418
+
0 commit comments