Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
42746df1
Commit
42746df1
authored
Jul 27, 2010
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ctypes tests to avoid implicit bytes-unicode conversion
parent
455f7bdc
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
57 additions
and
61 deletions
+57
-61
Lib/ctypes/test/test_arrays.py
Lib/ctypes/test/test_arrays.py
+2
-2
Lib/ctypes/test/test_bitfields.py
Lib/ctypes/test/test_bitfields.py
+2
-2
Lib/ctypes/test/test_buffers.py
Lib/ctypes/test/test_buffers.py
+1
-1
Lib/ctypes/test/test_bytes.py
Lib/ctypes/test/test_bytes.py
+6
-6
Lib/ctypes/test/test_cast.py
Lib/ctypes/test/test_cast.py
+4
-4
Lib/ctypes/test/test_cfuncs.py
Lib/ctypes/test/test_cfuncs.py
+1
-1
Lib/ctypes/test/test_errno.py
Lib/ctypes/test/test_errno.py
+2
-2
Lib/ctypes/test/test_internals.py
Lib/ctypes/test/test_internals.py
+4
-6
Lib/ctypes/test/test_keeprefs.py
Lib/ctypes/test/test_keeprefs.py
+4
-4
Lib/ctypes/test/test_libc.py
Lib/ctypes/test/test_libc.py
+1
-1
Lib/ctypes/test/test_objects.py
Lib/ctypes/test/test_objects.py
+2
-2
Lib/ctypes/test/test_parameters.py
Lib/ctypes/test/test_parameters.py
+1
-3
Lib/ctypes/test/test_prototypes.py
Lib/ctypes/test/test_prototypes.py
+1
-1
Lib/ctypes/test/test_python_api.py
Lib/ctypes/test/test_python_api.py
+2
-2
Lib/ctypes/test/test_random_things.py
Lib/ctypes/test/test_random_things.py
+1
-1
Lib/ctypes/test/test_repr.py
Lib/ctypes/test/test_repr.py
+2
-2
Lib/ctypes/test/test_returnfuncptrs.py
Lib/ctypes/test/test_returnfuncptrs.py
+4
-4
Lib/ctypes/test/test_stringptr.py
Lib/ctypes/test/test_stringptr.py
+3
-3
Lib/ctypes/test/test_strings.py
Lib/ctypes/test/test_strings.py
+5
-5
Lib/ctypes/test/test_structures.py
Lib/ctypes/test/test_structures.py
+9
-9
No files found.
Lib/ctypes/test/test_arrays.py
View file @
42746df1
...
...
@@ -42,7 +42,7 @@ class ArrayTestCase(unittest.TestCase):
CharArray
=
ARRAY
(
c_char
,
3
)
ca
=
CharArray
(
"a"
,
"b"
,
"c"
)
ca
=
CharArray
(
b"a"
,
b"b"
,
b
"c"
)
# Should this work? It doesn't:
# CharArray("abc")
...
...
@@ -89,7 +89,7 @@ class ArrayTestCase(unittest.TestCase):
def
test_from_address
(
self
):
# Failed with 0.9.8, reported by JUrner
p
=
create_string_buffer
(
"foo"
)
p
=
create_string_buffer
(
b
"foo"
)
sz
=
(
c_char
*
3
).
from_address
(
addressof
(
p
))
self
.
assertEqual
(
sz
[:],
b"foo"
)
self
.
assertEqual
(
sz
[::],
b"foo"
)
...
...
Lib/ctypes/test/test_bitfields.py
View file @
42746df1
...
...
@@ -37,14 +37,14 @@ class C_Test(unittest.TestCase):
for
name
in
"ABCDEFGHI"
:
b
=
BITS
()
setattr
(
b
,
name
,
i
)
self
.
assertEqual
(
(
name
,
i
,
getattr
(
b
,
name
)),
(
name
,
i
,
func
(
byref
(
b
),
name
)))
self
.
assertEqual
(
getattr
(
b
,
name
),
func
(
byref
(
b
),
name
.
encode
(
'ascii'
)))
def
test_shorts
(
self
):
for
i
in
range
(
256
):
for
name
in
"MNOPQRS"
:
b
=
BITS
()
setattr
(
b
,
name
,
i
)
self
.
assertEqual
(
(
name
,
i
,
getattr
(
b
,
name
)),
(
name
,
i
,
func
(
byref
(
b
),
name
)))
self
.
assertEqual
(
getattr
(
b
,
name
),
func
(
byref
(
b
),
name
.
encode
(
'ascii'
)))
signed_int_types
=
(
c_byte
,
c_short
,
c_int
,
c_long
,
c_longlong
)
unsigned_int_types
=
(
c_ubyte
,
c_ushort
,
c_uint
,
c_ulong
,
c_ulonglong
)
...
...
Lib/ctypes/test/test_buffers.py
View file @
42746df1
...
...
@@ -9,7 +9,7 @@ class StringBufferTestCase(unittest.TestCase):
self
.
assertEqual
(
sizeof
(
b
),
32
*
sizeof
(
c_char
))
self
.
assertTrue
(
type
(
b
[
0
])
is
bytes
)
b
=
create_string_buffer
(
"abc"
)
b
=
create_string_buffer
(
b
"abc"
)
self
.
assertEqual
(
len
(
b
),
4
)
# trailing nul char
self
.
assertEqual
(
sizeof
(
b
),
4
*
sizeof
(
c_char
))
self
.
assertTrue
(
type
(
b
[
0
])
is
bytes
)
...
...
Lib/ctypes/test/test_bytes.py
View file @
42746df1
...
...
@@ -11,10 +11,10 @@ class BytesTest(unittest.TestCase):
(
c_char
*
3
)(
b"a"
,
b"b"
,
b"c"
)
def
test_c_wchar
(
self
):
x
=
c_wchar
(
b
"x"
)
x
.
value
=
b
"y"
c_wchar
.
from_param
(
b
"x"
)
(
c_wchar
*
3
)(
b"a"
,
b"b"
,
b
"c"
)
x
=
c_wchar
(
"x"
)
x
.
value
=
"y"
c_wchar
.
from_param
(
"x"
)
(
c_wchar
*
3
)(
"a"
,
"b"
,
"c"
)
def
test_c_char_p
(
self
):
c_char_p
(
"foo bar"
)
...
...
@@ -37,8 +37,8 @@ class BytesTest(unittest.TestCase):
class
X
(
Structure
):
_fields_
=
[(
"a"
,
c_wchar
*
3
)]
X
(
"abc"
)
x
=
X
(
b
"abc"
)
X
(
b
"abc"
)
x
=
X
(
"abc"
)
self
.
assertEqual
(
x
.
a
,
"abc"
)
self
.
assertEqual
(
type
(
x
.
a
),
str
)
...
...
Lib/ctypes/test/test_cast.py
View file @
42746df1
...
...
@@ -33,17 +33,17 @@ class Test(unittest.TestCase):
def
test_p2a_objects
(
self
):
array
=
(
c_char_p
*
5
)()
self
.
assertEqual
(
array
.
_objects
,
None
)
array
[
0
]
=
"foo bar"
array
[
0
]
=
b
"foo bar"
self
.
assertEqual
(
array
.
_objects
,
{
'0'
:
b"foo bar"
})
p
=
cast
(
array
,
POINTER
(
c_char_p
))
# array and p share a common _objects attribute
self
.
assertTrue
(
p
.
_objects
is
array
.
_objects
)
self
.
assertEqual
(
array
.
_objects
,
{
'0'
:
b"foo bar"
,
id
(
array
):
array
})
p
[
0
]
=
"spam spam"
p
[
0
]
=
b
"spam spam"
self
.
assertEqual
(
p
.
_objects
,
{
'0'
:
b"spam spam"
,
id
(
array
):
array
})
self
.
assertTrue
(
array
.
_objects
is
p
.
_objects
)
p
[
1
]
=
"foo bar"
p
[
1
]
=
b
"foo bar"
self
.
assertEqual
(
p
.
_objects
,
{
'1'
:
b'foo bar'
,
'0'
:
b"spam spam"
,
id
(
array
):
array
})
self
.
assertTrue
(
array
.
_objects
is
p
.
_objects
)
...
...
@@ -71,7 +71,7 @@ class Test(unittest.TestCase):
def
test_char_p
(
self
):
# This didn't work: bad argument to internal function
s
=
c_char_p
(
"hiho"
)
s
=
c_char_p
(
b
"hiho"
)
self
.
assertEqual
(
cast
(
cast
(
s
,
c_void_p
),
c_char_p
).
value
,
b"hiho"
)
...
...
Lib/ctypes/test/test_cfuncs.py
View file @
42746df1
...
...
@@ -107,7 +107,7 @@ class CFunctions(unittest.TestCase):
def
test_ulong_plus
(
self
):
self
.
_dll
.
tf_bL
.
restype
=
c_ulong
self
.
_dll
.
tf_bL
.
argtypes
=
(
c_char
,
c_ulong
)
self
.
assertEqual
(
self
.
_dll
.
tf_bL
(
' '
,
4294967295
),
1431655765
)
self
.
assertEqual
(
self
.
_dll
.
tf_bL
(
b
' '
,
4294967295
),
1431655765
)
self
.
assertEqual
(
self
.
U
(),
4294967295
)
def
test_longlong
(
self
):
...
...
Lib/ctypes/test/test_errno.py
View file @
42746df1
...
...
@@ -19,7 +19,7 @@ class Test(unittest.TestCase):
libc_open
.
argtypes
=
c_char_p
,
c_int
self
.
assertEqual
(
libc_open
(
""
,
0
),
-
1
)
self
.
assertEqual
(
libc_open
(
b
""
,
0
),
-
1
)
self
.
assertEqual
(
get_errno
(),
errno
.
ENOENT
)
self
.
assertEqual
(
set_errno
(
32
),
errno
.
ENOENT
)
...
...
@@ -35,7 +35,7 @@ class Test(unittest.TestCase):
else
:
libc_open
=
libc
.
open
libc_open
.
argtypes
=
c_char_p
,
c_int
self
.
assertEqual
(
libc_open
(
""
,
0
),
-
1
)
self
.
assertEqual
(
libc_open
(
b
""
,
0
),
-
1
)
self
.
assertEqual
(
get_errno
(),
0
)
t
=
threading
.
Thread
(
target
=
_worker
)
...
...
Lib/ctypes/test/test_internals.py
View file @
42746df1
...
...
@@ -70,19 +70,17 @@ class ObjectsTestCase(unittest.TestCase):
class
Y
(
Structure
):
_fields_
=
[(
"x"
,
X
),
(
"y"
,
X
)]
s1
=
"Hello, World"
s2
=
"Hallo, Welt"
s1
=
b
"Hello, World"
s2
=
b
"Hallo, Welt"
x
=
X
()
x
.
a
=
s1
x
.
b
=
s2
self
.
assertEqual
(
x
.
_objects
,
{
"0"
:
bytes
(
s1
,
"ascii"
),
"1"
:
bytes
(
s2
,
"ascii"
)})
self
.
assertEqual
(
x
.
_objects
,
{
"0"
:
s1
,
"1"
:
s2
})
y
=
Y
()
y
.
x
=
x
self
.
assertEqual
(
y
.
_objects
,
{
"0"
:
{
"0"
:
bytes
(
s1
,
"ascii"
),
"1"
:
bytes
(
s2
,
"ascii"
)}})
self
.
assertEqual
(
y
.
_objects
,
{
"0"
:
{
"0"
:
s1
,
"1"
:
s2
}})
## x = y.x
## del y
## print x._b_base_._objects
...
...
Lib/ctypes/test/test_keeprefs.py
View file @
42746df1
...
...
@@ -13,9 +13,9 @@ class SimpleTestCase(unittest.TestCase):
def
test_ccharp
(
self
):
x
=
c_char_p
()
self
.
assertEquals
(
x
.
_objects
,
None
)
x
.
value
=
"abc"
x
.
value
=
b
"abc"
self
.
assertEquals
(
x
.
_objects
,
b"abc"
)
x
=
c_char_p
(
"spam"
)
x
=
c_char_p
(
b
"spam"
)
self
.
assertEquals
(
x
.
_objects
,
b"spam"
)
class
StructureTestCase
(
unittest
.
TestCase
):
...
...
@@ -37,8 +37,8 @@ class StructureTestCase(unittest.TestCase):
x
=
X
()
self
.
assertEquals
(
x
.
_objects
,
None
)
x
.
a
=
"spam"
x
.
b
=
"foo"
x
.
a
=
b
"spam"
x
.
b
=
b
"foo"
self
.
assertEquals
(
x
.
_objects
,
{
"0"
:
b"spam"
,
"1"
:
b"foo"
})
def
test_struct_struct
(
self
):
...
...
Lib/ctypes/test/test_libc.py
View file @
42746df1
...
...
@@ -25,7 +25,7 @@ class LibTest(unittest.TestCase):
def
sort
(
a
,
b
):
return
three_way_cmp
(
a
[
0
],
b
[
0
])
chars
=
create_string_buffer
(
"spam, spam, and spam"
)
chars
=
create_string_buffer
(
b
"spam, spam, and spam"
)
lib
.
my_qsort
(
chars
,
len
(
chars
)
-
1
,
sizeof
(
c_char
),
comparefunc
(
sort
))
self
.
assertEqual
(
chars
.
raw
,
b" ,,aaaadmmmnpppsss
\
x00
"
)
...
...
Lib/ctypes/test/test_objects.py
View file @
42746df1
...
...
@@ -20,7 +20,7 @@ None
The memory block stores pointers to strings, and the strings itself
assigned from Python must be kept.
>>> array[4] = 'foo bar'
>>> array[4] =
b
'foo bar'
>>> array._objects
{'4': b'foo bar'}
>>> array[4]
...
...
@@ -45,7 +45,7 @@ of 'x' ('_b_base_' is either None, or the root object owning the memory block):
<ctypes.test.test_objects.X object at 0x...>
>>>
>>> x.array[0] = 'spam spam spam'
>>> x.array[0] =
b
'spam spam spam'
>>> x._objects
{'0:2': b'spam spam spam'}
>>> x.array._b_base_._objects
...
...
Lib/ctypes/test/test_parameters.py
View file @
42746df1
...
...
@@ -19,7 +19,6 @@ class SimpleTypesTestCase(unittest.TestCase):
else
:
set_conversion_mode
(
*
self
.
prev_conv_mode
)
def
test_subclasses
(
self
):
from
ctypes
import
c_void_p
,
c_char_p
# ctypes 0.9.5 and before did overwrite from_param in SimpleType_new
...
...
@@ -60,12 +59,11 @@ class SimpleTypesTestCase(unittest.TestCase):
# new in 0.9.1: convert (encode) unicode to ascii
self
.
assertEqual
(
c_char_p
.
from_param
(
"123"
).
_obj
,
b"123"
)
self
.
assertRaises
(
UnicodeEncodeError
,
c_char_p
.
from_param
,
"123
\
377
"
)
self
.
assertRaises
(
TypeError
,
c_char_p
.
from_param
,
42
)
# calling c_char_p.from_param with a c_char_p instance
# returns the argument itself:
a
=
c_char_p
(
"123"
)
a
=
c_char_p
(
b
"123"
)
self
.
assertTrue
(
c_char_p
.
from_param
(
a
)
is
a
)
def
test_cw_strings
(
self
):
...
...
Lib/ctypes/test/test_prototypes.py
View file @
42746df1
...
...
@@ -127,7 +127,7 @@ class CharPointersTestCase(unittest.TestCase):
self
.
assertEqual
(
None
,
func
(
c_char_p
(
None
)))
self
.
assertEqual
(
b"123"
,
func
(
c_buffer
(
b"123"
)))
ca
=
c_char
(
"a"
)
ca
=
c_char
(
b
"a"
)
self
.
assertEqual
(
ord
(
b"a"
),
func
(
pointer
(
ca
))[
0
])
self
.
assertEqual
(
ord
(
b"a"
),
func
(
byref
(
ca
))[
0
])
...
...
Lib/ctypes/test/test_python_api.py
View file @
42746df1
...
...
@@ -72,10 +72,10 @@ class PythonAPITestCase(unittest.TestCase):
PyOS_snprintf
.
argtypes
=
POINTER
(
c_char
),
c_size_t
,
c_char_p
buf
=
c_buffer
(
256
)
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
"Hello from %s"
,
b"ctypes"
)
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
b
"Hello from %s"
,
b"ctypes"
)
self
.
assertEqual
(
buf
.
value
,
b"Hello from ctypes"
)
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
"Hello from %s (%d, %d, %d)"
,
b"ctypes"
,
1
,
2
,
3
)
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
b
"Hello from %s (%d, %d, %d)"
,
b"ctypes"
,
1
,
2
,
3
)
self
.
assertEqual
(
buf
.
value
,
b"Hello from ctypes (1, 2, 3)"
)
# not enough arguments
...
...
Lib/ctypes/test/test_random_things.py
View file @
42746df1
...
...
@@ -66,7 +66,7 @@ class CallbackTracbackTestCase(unittest.TestCase):
def
test_TypeErrorDivisionError
(
self
):
cb
=
CFUNCTYPE
(
c_int
,
c_char_p
)(
callback_func
)
out
=
self
.
capture_stderr
(
cb
,
"spam"
)
out
=
self
.
capture_stderr
(
cb
,
b
"spam"
)
self
.
assertEqual
(
out
.
splitlines
()[
-
1
],
"TypeError: "
"unsupported operand type(s) for /: 'int' and 'bytes'"
)
...
...
Lib/ctypes/test/test_repr.py
View file @
42746df1
...
...
@@ -22,8 +22,8 @@ class ReprTest(unittest.TestCase):
self
.
assertEqual
(
"<X object at"
,
repr
(
typ
(
42
))[:
12
])
def
test_char
(
self
):
self
.
assertEqual
(
"c_char(b'x')"
,
repr
(
c_char
(
'x'
)))
self
.
assertEqual
(
"<X object at"
,
repr
(
X
(
'x'
))[:
12
])
self
.
assertEqual
(
"c_char(b'x')"
,
repr
(
c_char
(
b
'x'
)))
self
.
assertEqual
(
"<X object at"
,
repr
(
X
(
b
'x'
))[:
12
])
if
__name__
==
"__main__"
:
unittest
.
main
()
Lib/ctypes/test/test_returnfuncptrs.py
View file @
42746df1
...
...
@@ -28,10 +28,10 @@ class ReturnFuncPtrTestCase(unittest.TestCase):
# _CFuncPtr instances are now callable with an integer argument
# which denotes a function address:
strchr
=
CFUNCTYPE
(
c_char_p
,
c_char_p
,
c_char
)(
addr
)
self
.
assertTrue
(
strchr
(
"abcdef"
,
"b"
),
"bcdef"
)
self
.
assertEqual
(
strchr
(
"abcdef"
,
"x"
),
None
)
self
.
assertRaises
(
ArgumentError
,
strchr
,
"abcdef"
,
3.0
)
self
.
assertRaises
(
TypeError
,
strchr
,
"abcdef"
)
self
.
assertTrue
(
strchr
(
b"abcdef"
,
b
"b"
),
"bcdef"
)
self
.
assertEqual
(
strchr
(
b"abcdef"
,
b
"x"
),
None
)
self
.
assertRaises
(
ArgumentError
,
strchr
,
b
"abcdef"
,
3.0
)
self
.
assertRaises
(
TypeError
,
strchr
,
b
"abcdef"
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Lib/ctypes/test/test_stringptr.py
View file @
42746df1
...
...
@@ -14,7 +14,7 @@ class StringPtrTestCase(unittest.TestCase):
# NULL pointer access
self
.
assertRaises
(
ValueError
,
getattr
,
x
.
str
,
"contents"
)
b
=
c_buffer
(
"Hello, World"
)
b
=
c_buffer
(
b
"Hello, World"
)
from
sys
import
getrefcount
as
grc
self
.
assertEqual
(
grc
(
b
),
2
)
x
.
str
=
b
...
...
@@ -63,8 +63,8 @@ class StringPtrTestCase(unittest.TestCase):
# So we must keep a reference to buf separately
strchr
.
restype
=
POINTER
(
c_char
)
buf
=
c_buffer
(
"abcdef"
)
r
=
strchr
(
buf
,
"c"
)
buf
=
c_buffer
(
b
"abcdef"
)
r
=
strchr
(
buf
,
b
"c"
)
x
=
r
[
0
],
r
[
1
],
r
[
2
],
r
[
3
],
r
[
4
]
self
.
assertEqual
(
x
,
(
b"c"
,
b"d"
,
b"e"
,
b"f"
,
b"
\
000
"
))
del
buf
...
...
Lib/ctypes/test/test_strings.py
View file @
42746df1
...
...
@@ -5,23 +5,23 @@ class StringArrayTestCase(unittest.TestCase):
def
test
(
self
):
BUF
=
c_char
*
4
buf
=
BUF
(
"a"
,
"b"
,
"c"
)
buf
=
BUF
(
b"a"
,
b"b"
,
b
"c"
)
self
.
assertEqual
(
buf
.
value
,
b"abc"
)
self
.
assertEqual
(
buf
.
raw
,
b"abc
\
000
"
)
buf
.
value
=
"ABCD"
buf
.
value
=
b
"ABCD"
self
.
assertEqual
(
buf
.
value
,
b"ABCD"
)
self
.
assertEqual
(
buf
.
raw
,
b"ABCD"
)
buf
.
value
=
"x"
buf
.
value
=
b
"x"
self
.
assertEqual
(
buf
.
value
,
b"x"
)
self
.
assertEqual
(
buf
.
raw
,
b"x
\
000
CD"
)
buf
[
1
]
=
"Z"
buf
[
1
]
=
b
"Z"
self
.
assertEqual
(
buf
.
value
,
b"xZCD"
)
self
.
assertEqual
(
buf
.
raw
,
b"xZCD"
)
self
.
assertRaises
(
ValueError
,
setattr
,
buf
,
"value"
,
"aaaaaaaa"
)
self
.
assertRaises
(
ValueError
,
setattr
,
buf
,
"value"
,
b
"aaaaaaaa"
)
self
.
assertRaises
(
TypeError
,
setattr
,
buf
,
"value"
,
42
)
def
test_c_buffer_value
(
self
):
...
...
Lib/ctypes/test/test_structures.py
View file @
42746df1
...
...
@@ -205,15 +205,15 @@ class StructureTestCase(unittest.TestCase):
(
"age"
,
c_int
)]
self
.
assertRaises
(
TypeError
,
Person
,
42
)
self
.
assertRaises
(
ValueError
,
Person
,
"asldkjaslkdjaslkdj"
)
self
.
assertRaises
(
ValueError
,
Person
,
b
"asldkjaslkdjaslkdj"
)
self
.
assertRaises
(
TypeError
,
Person
,
"Name"
,
"HI"
)
# short enough
self
.
assertEqual
(
Person
(
"12345"
,
5
).
name
,
b"12345"
)
self
.
assertEqual
(
Person
(
b
"12345"
,
5
).
name
,
b"12345"
)
# exact fit
self
.
assertEqual
(
Person
(
"123456"
,
5
).
name
,
b"123456"
)
self
.
assertEqual
(
Person
(
b
"123456"
,
5
).
name
,
b"123456"
)
# too long
self
.
assertRaises
(
ValueError
,
Person
,
"1234567"
,
5
)
self
.
assertRaises
(
ValueError
,
Person
,
b
"1234567"
,
5
)
def
test_conflicting_initializers
(
self
):
class
POINT
(
Structure
):
...
...
@@ -267,7 +267,7 @@ class StructureTestCase(unittest.TestCase):
(
"phone"
,
Phone
),
(
"age"
,
c_int
)]
p
=
Person
(
"Someone"
,
(
"1234"
,
"5678"
),
5
)
p
=
Person
(
b"Someone"
,
(
b"1234"
,
b
"5678"
),
5
)
self
.
assertEqual
(
p
.
name
,
b"Someone"
)
self
.
assertEqual
(
p
.
phone
.
areacode
,
b"1234"
)
...
...
@@ -284,8 +284,8 @@ class StructureTestCase(unittest.TestCase):
_fields_
=
[(
"name"
,
c_wchar
*
12
),
(
"age"
,
c_int
)]
p
=
PersonW
(
"Someone"
)
self
.
assertEqual
(
p
.
name
,
"Someone"
)
p
=
PersonW
(
"Someone
\
xe9
"
)
self
.
assertEqual
(
p
.
name
,
"Someone
\
xe9
"
)
self
.
assertEqual
(
PersonW
(
"1234567890"
).
name
,
"1234567890"
)
self
.
assertEqual
(
PersonW
(
"12345678901"
).
name
,
"12345678901"
)
...
...
@@ -304,13 +304,13 @@ class StructureTestCase(unittest.TestCase):
(
"phone"
,
Phone
),
(
"age"
,
c_int
)]
cls
,
msg
=
self
.
get_except
(
Person
,
"Someone"
,
(
1
,
2
))
cls
,
msg
=
self
.
get_except
(
Person
,
b
"Someone"
,
(
1
,
2
))
self
.
assertEqual
(
cls
,
RuntimeError
)
self
.
assertEqual
(
msg
,
"(Phone) <class 'TypeError'>: "
"expected string, int found"
)
cls
,
msg
=
self
.
get_except
(
Person
,
"Someone"
,
(
"a"
,
"b"
,
"c"
))
cls
,
msg
=
self
.
get_except
(
Person
,
b"Someone"
,
(
b"a"
,
b"b"
,
b
"c"
))
self
.
assertEqual
(
cls
,
RuntimeError
)
if
issubclass
(
Exception
,
object
):
self
.
assertEqual
(
msg
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment