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
838e76af
Commit
838e76af
authored
Feb 25, 2003
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test suite for the plistlib module.
parent
04087b56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
Lib/test/test_plistlib.py
Lib/test/test_plistlib.py
+59
-0
No files found.
Lib/test/test_plistlib.py
0 → 100644
View file @
838e76af
# Copyright (C) 2003 Python Software Foundation
import
unittest
import
plistlib
import
os
from
test
import
test_support
class
TestPlistlib
(
unittest
.
TestCase
):
def
tearDown
(
self
):
try
:
os
.
unlink
(
test_support
.
TESTFN
)
except
:
pass
def
_create
(
self
):
pl
=
plistlib
.
Plist
(
aString
=
"Doodah"
,
aList
=
[
"A"
,
"B"
,
12
,
32.1
,
[
1
,
2
,
3
]],
aFloat
=
0.1
,
anInt
=
728
,
aDict
=
plistlib
.
Dict
(
anotherString
=
"<hello & hi there!>"
,
aUnicodeValue
=
u'M
\
xe4
ssig, Ma
\
xdf
'
,
aTrueValue
=
True
,
aFalseValue
=
False
,
),
someData
=
plistlib
.
Data
(
"<binary gunk>"
),
someMoreData
=
plistlib
.
Data
(
"<lots of binary gunk>"
*
10
),
)
pl
[
'anotherInt'
]
=
42
try
:
from
xml.utils.iso8601
import
parse
import
time
except
ImportError
:
pass
else
:
pl
[
'aDate'
]
=
plistlib
.
Date
(
time
.
mktime
(
time
.
gmtime
()))
return
pl
def
test_create
(
self
):
pl
=
self
.
_create
()
self
.
assertEqual
(
pl
[
"aString"
],
"Doodah"
)
self
.
assertEqual
(
pl
[
"aDict"
][
"aFalseValue"
],
False
)
def
test_io
(
self
):
pl
=
self
.
_create
()
pl
.
write
(
test_support
.
TESTFN
)
pl2
=
plistlib
.
Plist
.
fromFile
(
test_support
.
TESTFN
)
self
.
assertEqual
(
dict
(
pl
),
dict
(
pl2
))
def
test_main
():
test_support
.
run_unittest
(
TestPlistlib
)
if
__name__
==
'__main__'
:
test_main
()
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