Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
bbb08039
Kaydet (Commit)
bbb08039
authored
Ara 28, 2011
tarafından
Jason R. Coombs
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Limit test scope to those platforms that can save the target filenames. Reference #11638.
üst
70069fcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
test_archive_util.py
Lib/distutils/tests/test_archive_util.py
+17
-0
No files found.
Lib/distutils/tests/test_archive_util.py
Dosyayı görüntüle @
bbb08039
...
...
@@ -2,6 +2,7 @@
"""Tests for distutils.archive_util."""
import
unittest
import
os
import
sys
import
tarfile
from
os.path
import
splitdrive
import
warnings
...
...
@@ -26,6 +27,18 @@ try:
except
ImportError
:
ZLIB_SUPPORT
=
False
def
can_fs_encode
(
filename
):
"""
Return True if the filename can be saved in the file system.
"""
if
os
.
path
.
supports_unicode_filenames
:
return
True
try
:
filename
.
encode
(
sys
.
getfilesystemencoding
())
except
UnicodeEncodeError
:
return
False
return
True
class
ArchiveUtilTestCase
(
support
.
TempdirManager
,
support
.
LoggingSilencer
,
...
...
@@ -36,6 +49,8 @@ class ArchiveUtilTestCase(support.TempdirManager,
self
.
_make_tarball
(
'archive'
)
@unittest.skipUnless
(
ZLIB_SUPPORT
,
'Need zlib support to run'
)
@unittest.skipUnless
(
can_fs_encode
(
'årchiv'
),
'File system cannot handle this filename'
)
def
test_make_tarball_latin1
(
self
):
"""
Mirror test_make_tarball, except filename contains latin characters.
...
...
@@ -43,6 +58,8 @@ class ArchiveUtilTestCase(support.TempdirManager,
self
.
_make_tarball
(
'årchiv'
)
# note this isn't a real word
@unittest.skipUnless
(
ZLIB_SUPPORT
,
'Need zlib support to run'
)
@unittest.skipUnless
(
can_fs_encode
(
'のアーカイブ'
),
'File system cannot handle this filename'
)
def
test_make_tarball_extended
(
self
):
"""
Mirror test_make_tarball, except filename contains extended
...
...
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