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
eba8345c
Kaydet (Commit)
eba8345c
authored
May 01, 2019
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update some test dependencies / default values with newer versions
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
be9cf3e3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
29 deletions
+26
-29
Makefile
Makefile
+1
-1
api_container_test.py
tests/integration/api_container_test.py
+13
-15
api_exec_test.py
tests/integration/api_exec_test.py
+10
-10
base.py
tests/integration/base.py
+2
-3
No files found.
Makefile
Dosyayı görüntüle @
eba8345c
...
...
@@ -42,7 +42,7 @@ integration-test-py3: build-py3
docker run
-t
--rm
-v
/var/run/docker.sock:/var/run/docker.sock docker-sdk-python3 py.test tests/integration/
${
file
}
TEST_API_VERSION
?=
1.35
TEST_ENGINE_VERSION
?=
1
7.12.0-ce
TEST_ENGINE_VERSION
?=
1
8.09.5
.PHONY
:
setup-network
setup-network
:
...
...
tests/integration/api_container_test.py
Dosyayı görüntüle @
eba8345c
...
...
@@ -5,21 +5,20 @@ import tempfile
import
threading
from
datetime
import
datetime
import
docker
from
docker.constants
import
IS_WINDOWS_PLATFORM
from
docker.utils.socket
import
next_frame_header
from
docker.utils.socket
import
read_exactly
import
pytest
import
requests
import
six
from
.base
import
BUSYBOX
,
BaseAPIIntegrationTest
import
docker
from
..
import
helpers
from
..helpers
import
(
assert_cat_socket_detached_with_keys
,
ctrl_with
,
requires_api_version
,
)
from
..helpers
import
assert_cat_socket_detached_with_keys
from
..helpers
import
ctrl_with
from
..helpers
import
requires_api_version
from
.base
import
BaseAPIIntegrationTest
from
.base
import
BUSYBOX
from
docker.constants
import
IS_WINDOWS_PLATFORM
from
docker.utils.socket
import
next_frame_header
from
docker.utils.socket
import
read_exactly
class
ListContainersTest
(
BaseAPIIntegrationTest
):
...
...
@@ -38,7 +37,7 @@ class ListContainersTest(BaseAPIIntegrationTest):
assert
'Command'
in
retrieved
assert
retrieved
[
'Command'
]
==
six
.
text_type
(
'true'
)
assert
'Image'
in
retrieved
assert
re
.
search
(
r'
busybox
:.*'
,
retrieved
[
'Image'
])
assert
re
.
search
(
r'
alpine
:.*'
,
retrieved
[
'Image'
])
assert
'Status'
in
retrieved
...
...
@@ -368,10 +367,9 @@ class CreateContainerTest(BaseAPIIntegrationTest):
)
self
.
tmp_containers
.
append
(
container
[
'Id'
])
config
=
self
.
client
.
inspect_container
(
container
[
'Id'
])
assert
(
sorted
(
config
[
'Config'
][
'Env'
])
==
sorted
([
'Foo'
,
'Other=one'
,
'Blank='
])
)
assert
'Foo'
in
config
[
'Config'
][
'Env'
]
assert
'Other=one'
in
config
[
'Config'
][
'Env'
]
assert
'Blank='
in
config
[
'Config'
][
'Env'
]
@requires_api_version
(
'1.22'
)
def
test_create_with_tmpfs
(
self
):
...
...
tests/integration/api_exec_test.py
Dosyayı görüntüle @
eba8345c
from
..helpers
import
assert_cat_socket_detached_with_keys
from
..helpers
import
ctrl_with
from
..helpers
import
requires_api_version
from
.base
import
BaseAPIIntegrationTest
from
.base
import
BUSYBOX
from
docker.utils.proxy
import
ProxyConfig
from
docker.utils.socket
import
next_frame_header
from
docker.utils.socket
import
read_exactly
from
.base
import
BUSYBOX
,
BaseAPIIntegrationTest
from
..helpers
import
(
assert_cat_socket_detached_with_keys
,
ctrl_with
,
requires_api_version
,
)
class
ExecTest
(
BaseAPIIntegrationTest
):
def
test_execute_command_with_proxy_env
(
self
):
...
...
@@ -81,11 +81,11 @@ class ExecTest(BaseAPIIntegrationTest):
self
.
client
.
start
(
id
)
self
.
tmp_containers
.
append
(
id
)
res
=
self
.
client
.
exec_create
(
id
,
'whoami'
,
user
=
'
default
'
)
res
=
self
.
client
.
exec_create
(
id
,
'whoami'
,
user
=
'
postgres
'
)
assert
'Id'
in
res
exec_log
=
self
.
client
.
exec_start
(
res
)
assert
exec_log
==
b
'
default
\n
'
assert
exec_log
==
b
'
postgres
\n
'
def
test_exec_command_as_root
(
self
):
container
=
self
.
client
.
create_container
(
BUSYBOX
,
'cat'
,
...
...
@@ -188,9 +188,9 @@ class ExecTest(BaseAPIIntegrationTest):
self
.
tmp_containers
.
append
(
container
)
self
.
client
.
start
(
container
)
res
=
self
.
client
.
exec_create
(
container
,
'pwd'
,
workdir
=
'/var/
www
'
)
res
=
self
.
client
.
exec_create
(
container
,
'pwd'
,
workdir
=
'/var/
opt
'
)
exec_log
=
self
.
client
.
exec_start
(
res
)
assert
exec_log
==
b
'/var/
www
\n
'
assert
exec_log
==
b
'/var/
opt
\n
'
def
test_detach_with_default
(
self
):
container
=
self
.
client
.
create_container
(
...
...
@@ -252,7 +252,7 @@ class ExecDemuxTest(BaseAPIIntegrationTest):
'echo hello out'
,
# Busybox's sleep does not handle sub-second times.
# This loops takes ~0.3 second to execute on my machine.
'
for i in $(seq 1 50000); do echo $i>/dev/null; done
'
,
'
sleep 0.5
'
,
# Write something on stderr
'echo hello err >&2'
])
)
...
...
tests/integration/base.py
Dosyayı görüntüle @
eba8345c
...
...
@@ -3,11 +3,10 @@ import shutil
import
unittest
import
docker
from
docker.utils
import
kwargs_from_env
from
..
import
helpers
from
docker.utils
import
kwargs_from_env
BUSYBOX
=
'
busybox:buildroot-2014.02'
BUSYBOX
=
'
alpine:3.9.3'
# FIXME: this should probably be renamed
TEST_API_VERSION
=
os
.
environ
.
get
(
'DOCKER_TEST_API_VERSION'
)
...
...
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