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
efaad09c
Commit
efaad09c
authored
Mar 11, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11963: remove human verification from test_subprocess.
parent
7ed6f7ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
12 deletions
+38
-12
Lib/test/test_subprocess.py
Lib/test/test_subprocess.py
+36
-12
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_subprocess.py
View file @
efaad09c
...
...
@@ -150,16 +150,27 @@ class ProcessTestCase(BaseTestCase):
self
.
assertEqual
(
p
.
stdin
,
None
)
def
test_stdout_none
(
self
):
# .stdout is None when not redirected
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'print " this bit of output is from a '
'test of stdout in a different '
'process ..."'
],
stdin
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdin
.
close
)
# .stdout is None when not redirected, and the child's stdout will
# be inherited from the parent. In order to test this we run a
# subprocess in a subprocess:
# this_test
# \-- subprocess created by this test (parent)
# \-- subprocess created by the parent subprocess (child)
# The parent doesn't specify stdout, so the child will use the
# parent's stdout. This test checks that the message printed by the
# child goes to the parent stdout. The parent also checks that the
# child's stdout is None. See #11963.
code
=
(
'import sys; from subprocess import Popen, PIPE;'
'p = Popen([sys.executable, "-c", "print
\
'
test_stdout_none
\
'
"],'
' stdin=PIPE, stderr=PIPE);'
'p.wait(); assert p.stdout is None;'
)
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
code
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
p
.
wait
()
self
.
assertEqual
(
p
.
stdout
,
None
)
out
,
err
=
p
.
communicate
()
self
.
assertEqual
(
p
.
returncode
,
0
,
err
)
self
.
assertEqual
(
out
.
rstrip
(),
'test_stdout_none'
)
def
test_stderr_none
(
self
):
# .stderr is None when not redirected
...
...
@@ -308,9 +319,22 @@ class ProcessTestCase(BaseTestCase):
def
test_stdout_filedes_of_stdout
(
self
):
# stdout is set to 1 (#1531862).
cmd
=
r"import sys, os; sys.exit(os.write(sys.stdout.fileno(), '.\n'))"
rc
=
subprocess
.
call
([
sys
.
executable
,
"-c"
,
cmd
],
stdout
=
1
)
self
.
assertEqual
(
rc
,
2
)
# To avoid printing the '.\n' on stdout, we do something similar to
# test_stdout_none (see above). The parent subprocess calls the child
# subprocess passing stdout=1, and this test uses stdout=PIPE in
# order to capture and check the output of the parent. See #11963.
code
=
(
'import sys, subprocess; '
'rc = subprocess.call([sys.executable, "-c", '
' "import os, sys; sys.exit(os.write(sys.stdout.fileno(), '
'
\
'
.
\
\
\
\
n
\
'
))"], stdout=1); '
'assert rc == 2'
)
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
code
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
out
,
err
=
p
.
communicate
()
self
.
assertEqual
(
p
.
returncode
,
0
,
err
)
self
.
assertEqual
(
out
,
'.
\
n
'
)
def
test_cwd
(
self
):
tmpdir
=
tempfile
.
gettempdir
()
...
...
Misc/NEWS
View file @
efaad09c
...
...
@@ -812,6 +812,8 @@ Extension Modules
Tests
-----
-
Issue
#
11963
:
remove
human
verification
from
test_parser
and
test_subprocess
.
-
Issue
#
17249
:
convert
a
test
in
test_capi
to
use
unittest
and
reap
threads
.
-
We
now
run
both
test_email
.
py
and
test_email_renamed
.
py
when
running
the
...
...
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