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
ae7cb4b9
Kaydet (Commit)
ae7cb4b9
authored
Agu 03, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid crashing in update_headers decorator when headers kwarg is None
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
650cc70e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
decorators.py
docker/utils/decorators.py
+1
-1
utils_test.py
tests/unit/utils_test.py
+34
-1
No files found.
docker/utils/decorators.py
Dosyayı görüntüle @
ae7cb4b9
...
...
@@ -40,7 +40,7 @@ def minimum_version(version):
def
update_headers
(
f
):
def
inner
(
self
,
*
args
,
**
kwargs
):
if
'HttpHeaders'
in
self
.
_auth_configs
:
if
'headers'
not
in
kwargs
:
if
not
kwargs
.
get
(
'headers'
)
:
kwargs
[
'headers'
]
=
self
.
_auth_configs
[
'HttpHeaders'
]
else
:
kwargs
[
'headers'
]
.
update
(
self
.
_auth_configs
[
'HttpHeaders'
])
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
ae7cb4b9
...
...
@@ -20,9 +20,11 @@ from docker.utils import (
create_host_config
,
Ulimit
,
LogConfig
,
parse_bytes
,
parse_env_file
,
exclude_paths
,
convert_volume_binds
,
decode_json_header
,
tar
,
split_command
,
create_ipam_config
,
create_ipam_pool
,
parse_devices
,
update_headers
,
)
from
docker.utils.utils
import
create_endpoint_config
from
docker.utils.ports
import
build_port_bindings
,
split_port
from
docker.utils.utils
import
create_endpoint_config
from
..
import
base
from
..helpers
import
make_tree
...
...
@@ -34,6 +36,37 @@ TEST_CERT_DIR = os.path.join(
)
class
DecoratorsTest
(
base
.
BaseTestCase
):
def
test_update_headers
(
self
):
sample_headers
=
{
'X-Docker-Locale'
:
'en-US'
,
}
def
f
(
self
,
headers
=
None
):
return
headers
client
=
Client
()
client
.
_auth_configs
=
{}
g
=
update_headers
(
f
)
assert
g
(
client
,
headers
=
None
)
is
None
assert
g
(
client
,
headers
=
{})
==
{}
assert
g
(
client
,
headers
=
{
'Content-type'
:
'application/json'
})
==
{
'Content-type'
:
'application/json'
,
}
client
.
_auth_configs
=
{
'HttpHeaders'
:
sample_headers
}
assert
g
(
client
,
headers
=
None
)
==
sample_headers
assert
g
(
client
,
headers
=
{})
==
sample_headers
assert
g
(
client
,
headers
=
{
'Content-type'
:
'application/json'
})
==
{
'Content-type'
:
'application/json'
,
'X-Docker-Locale'
:
'en-US'
,
}
class
HostConfigTest
(
base
.
BaseTestCase
):
def
test_create_host_config_no_options
(
self
):
config
=
create_host_config
(
version
=
'1.19'
)
...
...
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