Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
7b09ba64
Commit
7b09ba64
authored
Apr 05, 2019
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for setopt to demonstrate that edit_config retains non-ASCII characters.
parent
e89509f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
setuptools/tests/test_setopt.py
setuptools/tests/test_setopt.py
+36
-0
No files found.
setuptools/tests/test_setopt.py
0 → 100644
View file @
7b09ba64
# coding: utf-8
from
__future__
import
unicode_literals
import
io
import
six
from
setuptools.command
import
setopt
from
setuptools.extern.six.moves
import
configparser
class
TestEdit
:
@
staticmethod
def
parse_config
(
filename
):
parser
=
configparser
.
ConfigParser
()
with
io
.
open
(
filename
,
encoding
=
'utf-8'
)
as
reader
:
(
parser
.
read_file
if
six
.
PY3
else
parser
.
readfp
)(
reader
)
return
parser
@
staticmethod
def
write_text
(
file
,
content
):
with
io
.
open
(
file
,
'wb'
)
as
strm
:
strm
.
write
(
content
.
encode
(
'utf-8'
))
def
test_utf8_encoding_retained
(
self
,
tmpdir
):
"""
When editing a file, non-ASCII characters encoded in
UTF-8 should be retained.
"""
config
=
tmpdir
.
join
(
'setup.cfg'
)
self
.
write_text
(
config
,
'[names]
\
n
jaraco=йарацо'
)
setopt
.
edit_config
(
str
(
config
),
dict
(
names
=
dict
(
other
=
'yes'
)))
parser
=
self
.
parse_config
(
str
(
config
))
assert
parser
[
'names'
][
'jaraco'
]
==
'йарацо'
assert
parser
[
'names'
][
'other'
]
==
'yes'
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