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
0176fa17
Kaydet (Commit)
0176fa17
authored
Haz 03, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update parse_host and tests
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
d9227139
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
client.py
docker/client.py
+3
-2
utils.py
docker/utils/utils.py
+2
-2
utils_test.py
tests/unit/utils_test.py
+3
-4
No files found.
docker/client.py
Dosyayı görüntüle @
0176fa17
...
...
@@ -14,7 +14,6 @@
import
json
import
struct
import
sys
import
requests
import
requests.exceptions
...
...
@@ -63,7 +62,9 @@ class Client(
self
.
_auth_configs
=
auth
.
load_config
()
base_url
=
utils
.
parse_host
(
base_url
,
sys
.
platform
,
tls
=
bool
(
tls
))
base_url
=
utils
.
parse_host
(
base_url
,
constants
.
IS_WINDOWS_PLATFORM
,
tls
=
bool
(
tls
)
)
if
base_url
.
startswith
(
'http+unix://'
):
self
.
_custom_adapter
=
UnixAdapter
(
base_url
,
timeout
)
self
.
mount
(
'http+docker://'
,
self
.
_custom_adapter
)
...
...
docker/utils/utils.py
Dosyayı görüntüle @
0176fa17
...
...
@@ -383,13 +383,13 @@ def parse_repository_tag(repo_name):
# fd:// protocol unsupported (for obvious reasons)
# Added support for http and https
# Protocol translation: tcp -> http, unix -> http+unix
def
parse_host
(
addr
,
platform
=
Non
e
,
tls
=
False
):
def
parse_host
(
addr
,
is_win32
=
Fals
e
,
tls
=
False
):
proto
=
"http+unix"
host
=
DEFAULT_HTTP_HOST
port
=
None
path
=
''
if
not
addr
and
platform
==
'win32'
:
if
not
addr
and
is_win32
:
addr
=
'{0}:{1}'
.
format
(
DEFAULT_HTTP_HOST
,
2375
)
if
not
addr
or
addr
.
strip
()
==
'unix://'
:
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
0176fa17
...
...
@@ -388,6 +388,7 @@ class ParseHostTest(base.BaseTestCase):
'somehost.net:80/service/swarm'
:
(
'http://somehost.net:80/service/swarm'
),
'npipe:////./pipe/docker_engine'
:
'npipe:////./pipe/docker_engine'
,
}
for
host
in
invalid_hosts
:
...
...
@@ -402,10 +403,8 @@ class ParseHostTest(base.BaseTestCase):
tcp_port
=
'http://127.0.0.1:2375'
for
val
in
[
None
,
''
]:
for
platform
in
[
'darwin'
,
'linux2'
,
None
]:
assert
parse_host
(
val
,
platform
)
==
unix_socket
assert
parse_host
(
val
,
'win32'
)
==
tcp_port
assert
parse_host
(
val
,
is_win32
=
False
)
==
unix_socket
assert
parse_host
(
val
,
is_win32
=
True
)
==
tcp_port
def
test_parse_host_tls
(
self
):
host_value
=
'myhost.docker.net:3348'
...
...
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