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
a9ecb723
Kaydet (Commit)
a9ecb723
authored
Mar 21, 2018
tarafından
Joffrey F
Kaydeden (comit)
Joffrey F
Mar 21, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't descend into symlinks when building context tar
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
af674155
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
build.py
docker/utils/build.py
+1
-1
utils_test.py
tests/unit/utils_test.py
+15
-0
No files found.
docker/utils/build.py
Dosyayı görüntüle @
a9ecb723
...
...
@@ -93,7 +93,7 @@ def walk(root, patterns, default=True):
# Whether this file is implicitely included / excluded.
matched
=
default
if
hit
is
None
else
hit
sub
=
list
(
filter
(
lambda
p
:
p
[
1
],
sub
))
if
os
.
path
.
isdir
(
cur
):
if
os
.
path
.
isdir
(
cur
)
and
not
os
.
path
.
islink
(
cur
)
:
# Entirely skip directories if there are no chance any subfile will
# be included.
if
all
(
not
p
[
0
]
for
p
in
sub
)
and
not
matched
:
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
a9ecb723
...
...
@@ -1058,6 +1058,21 @@ class TarTest(unittest.TestCase):
assert
tar_data
.
getnames
()
==
[
'th.txt'
]
assert
tar_data
.
getmember
(
'th.txt'
)
.
mtime
==
-
3600
@pytest.mark.skipif
(
IS_WINDOWS_PLATFORM
,
reason
=
'No symlinks on Windows'
)
def
test_tar_directory_link
(
self
):
dirs
=
[
'a'
,
'b'
,
'a/c'
]
files
=
[
'a/hello.py'
,
'b/utils.py'
,
'a/c/descend.py'
]
base
=
make_tree
(
dirs
,
files
)
self
.
addCleanup
(
shutil
.
rmtree
,
base
)
os
.
symlink
(
os
.
path
.
join
(
base
,
'b'
),
os
.
path
.
join
(
base
,
'a/c/b'
))
with
tar
(
base
)
as
archive
:
tar_data
=
tarfile
.
open
(
fileobj
=
archive
)
names
=
tar_data
.
getnames
()
for
member
in
dirs
+
files
:
assert
member
in
names
assert
'a/c/b'
in
names
assert
'a/c/b/utils.py'
not
in
names
class
FormatEnvironmentTest
(
unittest
.
TestCase
):
def
test_format_env_binary_unicode_value
(
self
):
...
...
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