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
641b1de2
Commit
641b1de2
authored
Oct 02, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed the distutils tests that were not writing in temp
parent
d3c87657
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
28 deletions
+24
-28
Lib/distutils/tests/test_config.py
Lib/distutils/tests/test_config.py
+5
-5
Lib/distutils/tests/test_sdist.py
Lib/distutils/tests/test_sdist.py
+19
-23
No files found.
Lib/distutils/tests/test_config.py
View file @
641b1de2
...
...
@@ -49,13 +49,14 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase):
def
setUp
(
self
):
"""Patches the environment."""
super
(
PyPIRCCommandTestCase
,
self
).
setUp
()
if
os
.
environ
.
has_key
(
'HOME'
):
self
.
_old_home
=
os
.
environ
[
'HOME'
]
else
:
self
.
_old_home
=
None
curdir
=
os
.
path
.
dirname
(
__file__
)
os
.
environ
[
'HOME'
]
=
cur
dir
self
.
rc
=
os
.
path
.
join
(
cur
dir
,
'.pypirc'
)
tempdir
=
self
.
mkdtemp
(
)
os
.
environ
[
'HOME'
]
=
temp
dir
self
.
rc
=
os
.
path
.
join
(
temp
dir
,
'.pypirc'
)
self
.
dist
=
Distribution
()
class
command
(
PyPIRCCommand
):
...
...
@@ -74,9 +75,8 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase):
del
os
.
environ
[
'HOME'
]
else
:
os
.
environ
[
'HOME'
]
=
self
.
_old_home
if
os
.
path
.
exists
(
self
.
rc
):
os
.
remove
(
self
.
rc
)
set_threshold
(
self
.
old_threshold
)
super
(
PyPIRCCommandTestCase
,
self
).
tearDown
()
def
test_server_registration
(
self
):
# This test makes sure PyPIRCCommand knows how to:
...
...
Lib/distutils/tests/test_sdist.py
View file @
641b1de2
...
...
@@ -12,9 +12,6 @@ from distutils.tests.test_config import PyPIRCCommandTestCase
from
distutils.errors
import
DistutilsExecError
from
distutils.spawn
import
find_executable
CURDIR
=
os
.
path
.
dirname
(
__file__
)
TEMP_PKG
=
join
(
CURDIR
,
'temppkg'
)
SETUP_PY
=
"""
from distutils.core import setup
import somecode
...
...
@@ -31,25 +28,24 @@ class sdistTestCase(PyPIRCCommandTestCase):
def
setUp
(
self
):
super
(
sdistTestCase
,
self
).
setUp
()
self
.
old_path
=
os
.
getcwd
()
self
.
temp_pkg
=
os
.
path
.
join
(
self
.
mkdtemp
(),
'temppkg'
)
def
tearDown
(
self
):
os
.
chdir
(
self
.
old_path
)
if
os
.
path
.
exists
(
TEMP_PKG
):
shutil
.
rmtree
(
TEMP_PKG
)
super
(
sdistTestCase
,
self
).
tearDown
()
def
_init_tmp_pkg
(
self
):
if
os
.
path
.
exists
(
TEMP_PKG
):
shutil
.
rmtree
(
TEMP_PKG
)
os
.
mkdir
(
TEMP_PKG
)
os
.
mkdir
(
join
(
TEMP_PKG
,
'somecode'
))
os
.
mkdir
(
join
(
TEMP_PKG
,
'dist'
))
if
os
.
path
.
exists
(
self
.
temp_pkg
):
shutil
.
rmtree
(
self
.
temp_pkg
)
os
.
mkdir
(
self
.
temp_pkg
)
os
.
mkdir
(
join
(
self
.
temp_pkg
,
'somecode'
))
os
.
mkdir
(
join
(
self
.
temp_pkg
,
'dist'
))
# creating a MANIFEST, a package, and a README
self
.
_write
(
join
(
TEMP_PKG
,
'MANIFEST.in'
),
MANIFEST_IN
)
self
.
_write
(
join
(
TEMP_PKG
,
'README'
),
'xxx'
)
self
.
_write
(
join
(
TEMP_PKG
,
'somecode'
,
'__init__.py'
),
'#'
)
self
.
_write
(
join
(
TEMP_PKG
,
'setup.py'
),
SETUP_PY
)
os
.
chdir
(
TEMP_PKG
)
self
.
_write
(
join
(
self
.
temp_pkg
,
'MANIFEST.in'
),
MANIFEST_IN
)
self
.
_write
(
join
(
self
.
temp_pkg
,
'README'
),
'xxx'
)
self
.
_write
(
join
(
self
.
temp_pkg
,
'somecode'
,
'__init__.py'
),
'#'
)
self
.
_write
(
join
(
self
.
temp_pkg
,
'setup.py'
),
SETUP_PY
)
os
.
chdir
(
self
.
temp_pkg
)
def
_write
(
self
,
path
,
content
):
f
=
open
(
path
,
'w'
)
...
...
@@ -65,15 +61,15 @@ class sdistTestCase(PyPIRCCommandTestCase):
self
.
_init_tmp_pkg
()
# creating VCS directories with some files in them
os
.
mkdir
(
join
(
TEMP_PKG
,
'somecode'
,
'.svn'
))
self
.
_write
(
join
(
TEMP_PKG
,
'somecode'
,
'.svn'
,
'ok.py'
),
'xxx'
)
os
.
mkdir
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.svn'
))
self
.
_write
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.svn'
,
'ok.py'
),
'xxx'
)
os
.
mkdir
(
join
(
TEMP_PKG
,
'somecode'
,
'.hg'
))
self
.
_write
(
join
(
TEMP_PKG
,
'somecode'
,
'.hg'
,
os
.
mkdir
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.hg'
))
self
.
_write
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.hg'
,
'ok'
),
'xxx'
)
os
.
mkdir
(
join
(
TEMP_PKG
,
'somecode'
,
'.git'
))
self
.
_write
(
join
(
TEMP_PKG
,
'somecode'
,
'.git'
,
os
.
mkdir
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.git'
))
self
.
_write
(
join
(
self
.
temp_pkg
,
'somecode'
,
'.git'
,
'ok'
),
'xxx'
)
# now building a sdist
...
...
@@ -96,7 +92,7 @@ class sdistTestCase(PyPIRCCommandTestCase):
cmd
.
run
()
# now let's check what we have
dist_folder
=
join
(
TEMP_PKG
,
'dist'
)
dist_folder
=
join
(
self
.
temp_pkg
,
'dist'
)
files
=
os
.
listdir
(
dist_folder
)
self
.
assertEquals
(
files
,
[
'fake-1.0.zip'
])
...
...
@@ -137,7 +133,7 @@ class sdistTestCase(PyPIRCCommandTestCase):
cmd
.
run
()
# making sure we have two files
dist_folder
=
join
(
TEMP_PKG
,
'dist'
)
dist_folder
=
join
(
self
.
temp_pkg
,
'dist'
)
result
=
os
.
listdir
(
dist_folder
)
result
.
sort
()
self
.
assertEquals
(
result
,
...
...
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