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
66e1e508
Kaydet (Commit)
66e1e508
authored
Nis 15, 2003
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix the test so that it works even when /etc/passwd has two entries
for the same uid.
üst
0fc8f002
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
test_pwd.py
Lib/test/test_pwd.py
+12
-1
No files found.
Lib/test/test_pwd.py
Dosyayı görüntüle @
66e1e508
...
...
@@ -7,6 +7,7 @@ class PwdTest(unittest.TestCase):
def
test_values
(
self
):
entries
=
pwd
.
getpwall
()
entriesbyuid
=
{}
for
e
in
entries
:
self
.
assertEqual
(
len
(
e
),
7
)
...
...
@@ -26,7 +27,17 @@ class PwdTest(unittest.TestCase):
self
.
assert_
(
isinstance
(
e
.
pw_shell
,
basestring
))
self
.
assertEqual
(
pwd
.
getpwnam
(
e
.
pw_name
),
e
)
self
.
assertEqual
(
pwd
.
getpwuid
(
e
.
pw_uid
),
e
)
# The following won't work, because of duplicate entries
# for one uid
# self.assertEqual(pwd.getpwuid(e.pw_uid), e)
# instead of this collect all entries for one uid
# and check afterwards
entriesbyuid
.
setdefault
(
e
.
pw_uid
,
[])
.
append
(
e
)
# check whether the entry returned by getpwuid()
# for each uid is among those from getpwall() for this uid
for
e
in
entries
:
self
.
assert_
(
pwd
.
getpwuid
(
e
.
pw_uid
)
in
entriesbyuid
[
e
.
pw_uid
])
def
test_errors
(
self
):
self
.
assertRaises
(
TypeError
,
pwd
.
getpwuid
)
...
...
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