Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
Python312
/
Lib
/
test
/
test_ctypes
/
View File Name :
test_struct_fields.py
import unittest from ctypes import * class StructFieldsTestCase(unittest.TestCase): # Structure/Union classes must get 'finalized' sooner or # later, when one of these things happen: # # 1. _fields_ is set. # 2. An instance is created. # 3. The type is used as field of another Structure/Union. # 4. The type is subclassed # # When they are finalized, assigning _fields_ is no longer allowed. def test_1_A(self): class X(Structure): pass self.assertEqual(sizeof(X), 0) # not finalized X._fields_ = [] # finalized self.assertRaises(AttributeError, setattr, X, "_fields_", []) def test_1_B(self): class X(Structure): _fields_ = [] # finalized self.assertRaises(AttributeError, setattr, X, "_fields_", []) def test_2(self): class X(Structure): pass X() self.assertRaises(AttributeError, setattr, X, "_fields_", []) def test_3(self): class X(Structure): pass class Y(Structure): _fields_ = [("x", X)] # finalizes X self.assertRaises(AttributeError, setattr, X, "_fields_", []) def test_4(self): class X(Structure): pass class Y(X): pass self.assertRaises(AttributeError, setattr, X, "_fields_", []) Y._fields_ = [] self.assertRaises(AttributeError, setattr, X, "_fields_", []) def test_5(self): class X(Structure): _fields_ = (("char", c_char * 5),) x = X(b'#' * 5) x.char = b'a\0b\0' self.assertEqual(bytes(x), b'a\x00###') def test_6(self): class X(Structure): _fields_ = [("x", c_int)] CField = type(X.x) self.assertRaises(TypeError, CField) def test_gh99275(self): class BrokenStructure(Structure): def __init_subclass__(cls, **kwargs): cls._fields_ = [] # This line will fail, `stgdict` is not ready with self.assertRaisesRegex(TypeError, 'ctypes state is not initialized'): class Subclass(BrokenStructure): ... # __set__ and __get__ should raise a TypeError in case their self # argument is not a ctype instance. def test___set__(self): class MyCStruct(Structure): _fields_ = (("field", c_int),) self.assertRaises(TypeError, MyCStruct.field.__set__, 'wrong type self', 42) class MyCUnion(Union): _fields_ = (("field", c_int),) self.assertRaises(TypeError, MyCUnion.field.__set__, 'wrong type self', 42) def test___get__(self): class MyCStruct(Structure): _fields_ = (("field", c_int),) self.assertRaises(TypeError, MyCStruct.field.__get__, 'wrong type self', 42) class MyCUnion(Union): _fields_ = (("field", c_int),) self.assertRaises(TypeError, MyCUnion.field.__get__, 'wrong type self', 42) if __name__ == "__main__": unittest.main()