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
059f61bf
Kaydet (Commit)
059f61bf
authored
Eki 13, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Do not break when calling format_environment with unicode values
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
008730c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
utils.py
docker/utils/utils.py
+3
-0
utils_test.py
tests/unit/utils_test.py
+17
-2
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
059f61bf
...
...
@@ -1001,6 +1001,9 @@ def format_environment(environment):
def
format_env
(
key
,
value
):
if
value
is
None
:
return
key
if
isinstance
(
value
,
six
.
binary_type
):
value
=
value
.
decode
(
'utf-8'
)
return
u'{key}={value}'
.
format
(
key
=
key
,
value
=
value
)
return
[
format_env
(
*
var
)
for
var
in
six
.
iteritems
(
environment
)]
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
059f61bf
...
...
@@ -20,11 +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
,
update_headers
)
from
docker.utils.ports
import
build_port_bindings
,
split_port
from
docker.utils.utils
import
create_endpoint_config
from
docker.utils.utils
import
create_endpoint_config
,
format_environment
from
..
import
base
from
..helpers
import
make_tree
...
...
@@ -1042,3 +1042,18 @@ class TarTest(base.Cleanup, base.BaseTestCase):
self
.
assertEqual
(
sorted
(
tar_data
.
getnames
()),
[
'bar'
,
'bar/foo'
,
'foo'
]
)
class
FormatEnvironmentTest
(
base
.
BaseTestCase
):
def
test_format_env_binary_unicode_value
(
self
):
env_dict
=
{
'ARTIST_NAME'
:
b
'
\xec\x86\xa1\xec\xa7\x80\xec\x9d\x80
'
}
assert
format_environment
(
env_dict
)
==
[
u'ARTIST_NAME=송지은'
]
def
test_format_env_no_value
(
self
):
env_dict
=
{
'FOO'
:
None
,
'BAR'
:
''
,
}
assert
sorted
(
format_environment
(
env_dict
))
==
[
'BAR='
,
'FOO'
]
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