Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
3c6a951c
Kaydet (Commit)
3c6a951c
authored
Kas 05, 2010
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add cleanups to stdout/stderr pipes to remove ResourceWarnings.
üst
b5d8204f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
test_subprocess.py
Lib/test/test_subprocess.py
+16
-0
No files found.
Lib/test/test_subprocess.py
Dosyayı görüntüle @
3c6a951c
...
...
@@ -121,6 +121,8 @@ class ProcessTestCase(BaseTestCase):
# .stdin is None when not redirected
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'print("banana")'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
p
.
wait
()
self
.
assertEqual
(
p
.
stdin
,
None
)
...
...
@@ -131,6 +133,8 @@ class ProcessTestCase(BaseTestCase):
'test of stdout in a different '
'process ...")'
],
stdin
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdin
.
close
)
self
.
addCleanup
(
p
.
stderr
.
close
)
p
.
wait
()
self
.
assertEqual
(
p
.
stdout
,
None
)
...
...
@@ -138,6 +142,8 @@ class ProcessTestCase(BaseTestCase):
# .stderr is None when not redirected
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'print("banana")'
],
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
addCleanup
(
p
.
stdin
.
close
)
p
.
wait
()
self
.
assertEqual
(
p
.
stderr
,
None
)
...
...
@@ -200,6 +206,7 @@ class ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'import sys; sys.stdout.write("orange")'
],
stdout
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
assertEqual
(
p
.
stdout
.
read
(),
b
"orange"
)
def
test_stdout_filedes
(
self
):
...
...
@@ -230,6 +237,7 @@ class ProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
sys
.
executable
,
"-c"
,
'import sys; sys.stderr.write("strawberry")'
],
stderr
=
subprocess
.
PIPE
)
self
.
addCleanup
(
p
.
stderr
.
close
)
self
.
assertStderrEqual
(
p
.
stderr
.
read
(),
b
"strawberry"
)
def
test_stderr_filedes
(
self
):
...
...
@@ -264,6 +272,7 @@ class ProcessTestCase(BaseTestCase):
'sys.stderr.write("orange")'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
assertStderrEqual
(
p
.
stdout
.
read
(),
b
"appleorange"
)
def
test_stdout_stderr_file
(
self
):
...
...
@@ -300,6 +309,7 @@ class ProcessTestCase(BaseTestCase):
'sys.stdout.write(os.getcwd())'
],
stdout
=
subprocess
.
PIPE
,
cwd
=
tmpdir
)
self
.
addCleanup
(
p
.
stdout
.
close
)
normcase
=
os
.
path
.
normcase
self
.
assertEqual
(
normcase
(
p
.
stdout
.
read
()
.
decode
(
"utf-8"
)),
normcase
(
tmpdir
))
...
...
@@ -312,6 +322,7 @@ class ProcessTestCase(BaseTestCase):
'sys.stdout.write(os.getenv("FRUIT"))'
],
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
assertEqual
(
p
.
stdout
.
read
(),
b
"orange"
)
def
test_communicate_stdin
(
self
):
...
...
@@ -427,6 +438,7 @@ class ProcessTestCase(BaseTestCase):
'sys.stdout.write("
\\
nline6");'
],
stdout
=
subprocess
.
PIPE
,
universal_newlines
=
1
)
self
.
addCleanup
(
p
.
stdout
.
close
)
stdout
=
p
.
stdout
.
read
()
self
.
assertEqual
(
stdout
,
"line1
\n
line2
\n
line3
\n
line4
\n
line5
\n
line6"
)
...
...
@@ -699,6 +711,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
)
self
.
assertEqual
(
p
.
stdout
.
read
(),
b
"apple"
)
def
test_preexec_exception
(
self
):
...
...
@@ -787,6 +800,7 @@ class POSIXProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
([
"echo $FRUIT"
],
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
assertEqual
(
p
.
stdout
.
read
()
.
strip
(
b
"
\t\r\n\f
"
),
b
"apple"
)
def
test_shell_string
(
self
):
...
...
@@ -796,6 +810,7 @@ class POSIXProcessTestCase(BaseTestCase):
p
=
subprocess
.
Popen
(
"echo $FRUIT"
,
shell
=
1
,
stdout
=
subprocess
.
PIPE
,
env
=
newenv
)
self
.
addCleanup
(
p
.
stdout
.
close
)
self
.
assertEqual
(
p
.
stdout
.
read
()
.
strip
(
b
"
\t\r\n\f
"
),
b
"apple"
)
def
test_call_string
(
self
):
...
...
@@ -828,6 +843,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
)
self
.
assertEqual
(
p
.
stdout
.
read
()
.
strip
(),
bytes
(
sh
,
'ascii'
))
def
_kill_process
(
self
,
method
,
*
args
):
...
...
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