@@ -1144,6 +1144,77 @@ class MyType:
1144
1144
MyType .__module__ = 123
1145
1145
self .assertEqual (get_type_fullyqualname (MyType ), 'my_qualname' )
1146
1146
1147
+ def test_get_base_by_token (self ):
1148
+ def get_base_by_token (src , key , comparable = True ):
1149
+ def run (use_mro ):
1150
+ find_first = _testcapi .pytype_getbasebytoken
1151
+ ret1 , result = find_first (src , key , use_mro , True )
1152
+ ret2 , no_result = find_first (src , key , use_mro , False )
1153
+ self .assertIn (ret1 , (0 , 1 ))
1154
+ self .assertEqual (ret1 , result is not None )
1155
+ self .assertEqual (ret1 , ret2 )
1156
+ self .assertIsNone (no_result )
1157
+ return result
1158
+
1159
+ found_in_mro = run (True )
1160
+ found_in_bases = run (False )
1161
+ if comparable :
1162
+ self .assertIs (found_in_mro , found_in_bases )
1163
+ return found_in_mro
1164
+ return found_in_mro , found_in_bases
1165
+
1166
+ create_type = _testcapi .create_type_with_token
1167
+ get_token = _testcapi .get_tp_token
1168
+
1169
+ Py_TP_USE_SPEC = _testcapi .Py_TP_USE_SPEC
1170
+ self .assertEqual (Py_TP_USE_SPEC , 0 )
1171
+
1172
+ A1 = create_type ('_testcapi.A1' , Py_TP_USE_SPEC )
1173
+ self .assertTrue (get_token (A1 ) != Py_TP_USE_SPEC )
1174
+
1175
+ B1 = create_type ('_testcapi.B1' , id (self ))
1176
+ self .assertTrue (get_token (B1 ) == id (self ))
1177
+
1178
+ tokenA1 = get_token (A1 )
1179
+ # find A1 from A1
1180
+ found = get_base_by_token (A1 , tokenA1 )
1181
+ self .assertIs (found , A1 )
1182
+
1183
+ # no token in static types
1184
+ STATIC = type (1 )
1185
+ self .assertEqual (get_token (STATIC ), 0 )
1186
+ found = get_base_by_token (STATIC , tokenA1 )
1187
+ self .assertIs (found , None )
1188
+
1189
+ # no token in pure subtypes
1190
+ class A2 (A1 ): pass
1191
+ self .assertEqual (get_token (A2 ), 0 )
1192
+ # find A1
1193
+ class Z (STATIC , B1 , A2 ): pass
1194
+ found = get_base_by_token (Z , tokenA1 )
1195
+ self .assertIs (found , A1 )
1196
+
1197
+ # searching for NULL token is an error
1198
+ with self .assertRaises (SystemError ):
1199
+ get_base_by_token (Z , 0 )
1200
+ with self .assertRaises (SystemError ):
1201
+ get_base_by_token (STATIC , 0 )
1202
+
1203
+ # share the token with A1
1204
+ C1 = create_type ('_testcapi.C1' , tokenA1 )
1205
+ self .assertTrue (get_token (C1 ) == tokenA1 )
1206
+
1207
+ # find C1 first by shared token
1208
+ class Z (C1 , A2 ): pass
1209
+ found = get_base_by_token (Z , tokenA1 )
1210
+ self .assertIs (found , C1 )
1211
+ # B1 not found
1212
+ found = get_base_by_token (Z , get_token (B1 ))
1213
+ self .assertIs (found , None )
1214
+
1215
+ with self .assertRaises (TypeError ):
1216
+ _testcapi .pytype_getbasebytoken (
1217
+ 'not a type' , id (self ), True , False )
1147
1218
1148
1219
def test_gen_get_code (self ):
1149
1220
def genf (): yield
0 commit comments