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
5464cf2b
Kaydet (Commit)
5464cf2b
authored
Tem 08, 2016
tarafından
David Gageot
Kaydeden (comit)
Aanand Prasad
Tem 13, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add hijack hints for non-detached exec api calls
Signed-off-by:
David Gageot
<
david@gageot.net
>
üst
6dec639a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
3 deletions
+39
-3
exec_api.py
docker/api/exec_api.py
+9
-1
exec_test.py
tests/unit/exec_test.py
+30
-2
No files found.
docker/api/exec_api.py
Dosyayı görüntüle @
5464cf2b
...
...
@@ -66,8 +66,16 @@ class ExecApiMixin(object):
'Detach'
:
detach
}
headers
=
{}
if
detach
else
{
'Connection'
:
'Upgrade'
,
'Upgrade'
:
'tcp'
}
res
=
self
.
_post_json
(
self
.
_url
(
'/exec/{0}/start'
,
exec_id
),
data
=
data
,
stream
=
stream
self
.
_url
(
'/exec/{0}/start'
,
exec_id
),
headers
=
headers
,
data
=
data
,
stream
=
stream
)
if
socket
:
...
...
tests/unit/exec_test.py
Dosyayı görüntüle @
5464cf2b
...
...
@@ -51,8 +51,36 @@ class ExecTest(DockerClientTest):
}
)
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
,
'Connection'
:
'Upgrade'
,
'Upgrade'
:
'tcp'
}
)
def
test_exec_start_detached
(
self
):
self
.
client
.
exec_start
(
fake_api
.
FAKE_EXEC_ID
,
detach
=
True
)
args
=
fake_request
.
call_args
self
.
assertEqual
(
args
[
0
][
1
],
url_prefix
+
'exec/{0}/start'
.
format
(
fake_api
.
FAKE_EXEC_ID
)
)
self
.
assertEqual
(
json
.
loads
(
args
[
1
][
'data'
]),
{
'Tty'
:
False
,
'Detach'
:
True
}
)
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
}
)
def
test_exec_inspect
(
self
):
self
.
client
.
exec_inspect
(
fake_api
.
FAKE_EXEC_ID
)
...
...
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