Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
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
docker-py
Commits
fe858f5e
Kaydet (Commit)
fe858f5e
authored
Kas 12, 2015
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add build integration test checking stderr shows up in stream
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
523e6d48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
Makefile
Makefile
+2
-0
build_test.py
tests/integration/build_test.py
+19
-0
No files found.
Makefile
Dosyayı görüntüle @
fe858f5e
...
...
@@ -3,6 +3,8 @@
all
:
test
clean
:
rm
-rf
tests/__pycache__
rm
-rf
tests/
*
/__pycache__
docker
rm
-vf
dpy-dind
build
:
...
...
tests/integration/build_test.py
Dosyayı görüntüle @
fe858f5e
...
...
@@ -114,3 +114,22 @@ class BuildTest(api_test.BaseTestCase):
info
=
self
.
client
.
inspect_image
(
'buildargs'
)
self
.
assertEqual
(
info
[
'Config'
][
'User'
],
'OK'
)
def
test_build_stderr_data
(
self
):
control_chars
=
[
'
\x1b
[91m'
,
'
\x1b
[0m'
]
snippet
=
'Ancient Temple (Mystic Oriental Dream ~ Ancient Temple)'
script
=
io
.
BytesIO
(
b
'
\n
'
.
join
([
b
'FROM busybox'
,
'RUN sh -c ">&2 echo
\'
{0}
\'
"'
.
format
(
snippet
)
.
encode
(
'utf-8'
)
]))
stream
=
self
.
client
.
build
(
fileobj
=
script
,
stream
=
True
,
decode
=
True
,
nocache
=
True
)
lines
=
[]
for
chunk
in
stream
:
lines
.
append
(
chunk
.
get
(
'stream'
))
expected
=
'{0}{2}
\n
{1}'
.
format
(
control_chars
[
0
],
control_chars
[
1
],
snippet
)
self
.
assertTrue
(
any
([
line
==
expected
for
line
in
lines
]))
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