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
9e9af21d
Kaydet (Commit)
9e9af21d
authored
Şub 20, 2010
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
skip tests with a non-ascii cwd when the file system encoding is ascii
üst
18d5a696
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
17 deletions
+32
-17
test_genericpath.py
Lib/test/test_genericpath.py
+13
-0
test_macpath.py
Lib/test/test_macpath.py
+5
-8
test_posixpath.py
Lib/test/test_posixpath.py
+7
-9
test_support.py
Lib/test/test_support.py
+7
-0
No files found.
Lib/test/test_genericpath.py
Dosyayı görüntüle @
9e9af21d
...
@@ -174,6 +174,19 @@ class AllCommonTest(unittest.TestCase):
...
@@ -174,6 +174,19 @@ class AllCommonTest(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
genericpath
.
samefile
)
self
.
assertRaises
(
TypeError
,
genericpath
.
samefile
)
# XXX at some point this should probably go in some class that contains common
# tests for all test_*path modules.
def
_issue3426
(
self
,
cwd
,
abspath
):
# Issue 3426: check that abspath retuns unicode when the arg is unicode
# and str when it's str, with both ASCII and non-ASCII cwds
with
test_support
.
temp_cwd
(
cwd
):
for
path
in
(
''
,
'foo'
,
'f
\xf2\xf2
'
,
'/foo'
,
'C:
\\
'
):
self
.
assertIsInstance
(
abspath
(
path
),
str
)
for
upath
in
(
u''
,
u'fuu'
,
u'f
\xf9\xf9
'
,
u'/fuu'
,
u'U:
\\
'
):
self
.
assertIsInstance
(
abspath
(
upath
),
unicode
)
def
test_main
():
def
test_main
():
test_support
.
run_unittest
(
AllCommonTest
)
test_support
.
run_unittest
(
AllCommonTest
)
...
...
Lib/test/test_macpath.py
Dosyayı görüntüle @
9e9af21d
import
macpath
import
macpath
from
test
import
test_support
from
test
import
test_support
import
unittest
import
unittest
import
test_genericpath
class
MacPathTestCase
(
unittest
.
TestCase
):
class
MacPathTestCase
(
unittest
.
TestCase
):
...
@@ -8,15 +9,11 @@ class MacPathTestCase(unittest.TestCase):
...
@@ -8,15 +9,11 @@ class MacPathTestCase(unittest.TestCase):
def
test_abspath
(
self
):
def
test_abspath
(
self
):
self
.
assertEqual
(
macpath
.
abspath
(
"xx:yy"
),
"xx:yy"
)
self
.
assertEqual
(
macpath
.
abspath
(
"xx:yy"
),
"xx:yy"
)
# Issue 3426: check that abspath retuns unicode when the arg is unicode
def
test_abspath_with_ascii_cwd
(
self
):
# and str when it's str, with both ASCII and non-ASCII cwds
test_genericpath
.
_issue3426
(
self
,
u'cwd'
,
macpath
.
abspath
)
for
cwd
in
(
u'cwd'
,
u'
\xe7
w
\xf0
'
):
with
test_support
.
temp_cwd
(
cwd
):
for
path
in
(
''
,
'foo'
,
'f
\xf2\xf2
'
,
'/foo'
,
'C:
\\
'
):
self
.
assertIsInstance
(
macpath
.
abspath
(
path
),
str
)
for
upath
in
(
u''
,
u'fuu'
,
u'f
\xf9\xf9
'
,
u'/fuu'
,
u'U:
\\
'
):
self
.
assertIsInstance
(
macpath
.
abspath
(
upath
),
unicode
)
def
test_abspath_with_nonascii_cwd
(
self
):
test_genericpath
.
_issue3426
(
self
,
u'
\xe7
w
\xf0
'
,
macpath
.
abspath
)
def
test_isabs
(
self
):
def
test_isabs
(
self
):
isabs
=
macpath
.
isabs
isabs
=
macpath
.
isabs
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
9e9af21d
import
unittest
import
unittest
from
test
import
test_support
from
test
import
test_support
import
test_genericpath
import
posixpath
,
os
import
posixpath
,
os
from
posixpath
import
realpath
,
abspath
,
dirname
,
basename
from
posixpath
import
realpath
,
abspath
,
dirname
,
basename
...
@@ -382,17 +384,13 @@ class PosixPathTest(unittest.TestCase):
...
@@ -382,17 +384,13 @@ class PosixPathTest(unittest.TestCase):
def
test_abspath
(
self
):
def
test_abspath
(
self
):
self
.
assertIn
(
"foo"
,
posixpath
.
abspath
(
"foo"
))
self
.
assertIn
(
"foo"
,
posixpath
.
abspath
(
"foo"
))
self
.
assertRaises
(
TypeError
,
posixpath
.
abspath
)
# Issue 3426: check that abspath retuns unicode when the arg is unicode
def
test_abspath_with_ascii_cwd
(
self
):
# and str when it's str, with both ASCII and non-ASCII cwds
test_genericpath
.
_issue3426
(
self
,
u'cwd'
,
posixpath
.
abspath
)
for
cwd
in
(
u'cwd'
,
u'
\xe7
w
\xf0
'
):
with
test_support
.
temp_cwd
(
cwd
):
for
path
in
(
''
,
'foo'
,
'f
\xf2\xf2
'
,
'/foo'
,
'C:
\\
'
):
self
.
assertIsInstance
(
posixpath
.
abspath
(
path
),
str
)
for
upath
in
(
u''
,
u'fuu'
,
u'f
\xf9\xf9
'
,
u'/fuu'
,
u'U:
\\
'
):
self
.
assertIsInstance
(
posixpath
.
abspath
(
upath
),
unicode
)
self
.
assertRaises
(
TypeError
,
posixpath
.
abspath
)
def
test_abspath_with_nonascii_cwd
(
self
):
test_genericpath
.
_issue3426
(
self
,
u'
\xe7
w
\xf0
'
,
posixpath
.
abspath
)
def
test_realpath
(
self
):
def
test_realpath
(
self
):
self
.
assertIn
(
"foo"
,
realpath
(
"foo"
))
self
.
assertIn
(
"foo"
,
realpath
(
"foo"
))
...
...
Lib/test/test_support.py
Dosyayı görüntüle @
9e9af21d
...
@@ -397,6 +397,13 @@ def temp_cwd(name='tempcwd', quiet=False):
...
@@ -397,6 +397,13 @@ def temp_cwd(name='tempcwd', quiet=False):
the CWD, an error is raised. If it's True, only a warning is raised
the CWD, an error is raised. If it's True, only a warning is raised
and the original CWD is used.
and the original CWD is used.
"""
"""
if
isinstance
(
name
,
unicode
):
try
:
name
=
name
.
encode
(
sys
.
getfilesystemencoding
()
or
'ascii'
)
except
UnicodeEncodeError
:
if
not
quiet
:
raise
unittest
.
SkipTest
(
'unable to encode the cwd name with '
'the filesystem encoding.'
)
saved_dir
=
os
.
getcwd
()
saved_dir
=
os
.
getcwd
()
is_temporary
=
False
is_temporary
=
False
try
:
try
:
...
...
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