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
7438c612
Commit
7438c612
authored
May 20, 2016
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use "with popen:" in test_subprocess
Issue #26741.
parent
19ed27ec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
58 deletions
+55
-58
Lib/test/test_subprocess.py
Lib/test/test_subprocess.py
+55
-58
No files found.
Lib/test/test_subprocess.py
View file @
7438c612
...
...
@@ -443,7 +443,7 @@ class ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'import sys; sys.stdout.write("orange")'
],
stdout
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
(),
b"orange"
)
def
test_stdout_filedes
(
self
):
...
...
@@ -474,7 +474,7 @@ class ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'import sys; sys.stderr.write("strawberry")'
],
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stderr
.
close
)
with
p
:
self
.
assertStderrEqual
(
p
.
stderr
.
read
(),
b"strawberry"
)
def
test_stderr_filedes
(
self
):
...
...
@@ -530,7 +530,7 @@ class ProcessTestCase(BaseTestCase):
'sys.stderr.write("orange")'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertStderrEqual
(
p
.
stdout
.
read
(),
b"appleorange"
)
def
test_stdout_stderr_file
(
self
):
...
...
@@ -789,6 +789,7 @@ class ProcessTestCase(BaseTestCase):
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
universal_newlines
=
1
)
with
p
:
p
.
stdin
.
write
(
"line1
\
n
"
)
p
.
stdin
.
flush
()
self
.
assertEqual
(
p
.
stdout
.
readline
(),
"line1
\
n
"
)
...
...
@@ -1434,7 +1435,7 @@ class POSIXProcessTestCase(BaseTestCase):
'sys.stdout.write(os.getenv("FRUIT"))'
],
stdout
=
subprocess
.
PIPE
,
preexec_fn
=
lambda
:
os
.
putenv
(
"FRUIT"
,
"apple"
))
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
(),
b"apple"
)
def
test_preexec_exception
(
self
):
...
...
@@ -1583,7 +1584,7 @@ class POSIXProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
"echo $FRUIT"
],
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
().
strip
(
b"
\
t
\
r
\
n
\
f
"
),
b"apple"
)
def
test_shell_string
(
self
):
...
...
@@ -1593,7 +1594,7 @@ class POSIXProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
(
"echo $FRUIT"
,
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
().
strip
(
b"
\
t
\
r
\
n
\
f
"
),
b"apple"
)
def
test_call_string
(
self
):
...
...
@@ -1626,7 +1627,7 @@ class POSIXProcessTestCase(BaseTestCase):
for
sh
in
shells
:
p
=
subprocess
.
Popen
(
"echo $0"
,
executable
=
sh
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
().
strip
(),
bytes
(
sh
,
'ascii'
))
def
_kill_process
(
self
,
method
,
*
args
):
...
...
@@ -2450,7 +2451,7 @@ class Win32ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
"set"
],
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertIn
(
b"physalis"
,
p
.
stdout
.
read
())
def
test_shell_string
(
self
):
...
...
@@ -2460,7 +2461,7 @@ class Win32ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
(
"set"
,
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertIn
(
b"physalis"
,
p
.
stdout
.
read
())
def
test_call_string
(
self
):
...
...
@@ -2480,9 +2481,7 @@ class Win32ProcessTestCase(BaseTestCase):
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
self
.
addCleanup
(
p
.
stdin
.
close
)
with
p
:
# Wait for the interpreter to be completely initialized before
# sending any signal.
p
.
stdout
.
read
(
1
)
...
...
@@ -2502,9 +2501,7 @@ class Win32ProcessTestCase(BaseTestCase):
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
self
.
addCleanup
(
p
.
stdin
.
close
)
with
p
:
# Wait for the interpreter to be completely initialized before
# sending any signal.
p
.
stdout
.
read
(
1
)
...
...
@@ -2602,7 +2599,7 @@ class CommandsWithSpaces (BaseTestCase):
def
with_spaces
(
self
,
*
args
,
**
kwargs
):
kwargs
[
'stdout'
]
=
subprocess
.
PIPE
p
=
subprocess
.
Popen
(
*
args
,
**
kwargs
)
self
.
addCleanup
(
p
.
stdout
.
close
)
with
p
:
self
.
assertEqual
(
p
.
stdout
.
read
().
decode
(
"mbcs"
),
"2 [%r, 'ab cd']"
%
self
.
fname
...
...
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