Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d59240de
Commit
d59240de
authored
May 02, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Plain Diff
Issue #14698: Make test_posix more robust when the current UID doesn't have an
associated pwd entry.
parents
67880cc9
e8a255a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
Lib/test/test_posix.py
Lib/test/test_posix.py
+9
-3
No files found.
Lib/test/test_posix.py
View file @
d59240de
...
@@ -108,7 +108,11 @@ class PosixTester(unittest.TestCase):
...
@@ -108,7 +108,11 @@ class PosixTester(unittest.TestCase):
# If a non-privileged user invokes it, it should fail with OSError
# If a non-privileged user invokes it, it should fail with OSError
# EPERM.
# EPERM.
if
os
.
getuid
()
!=
0
:
if
os
.
getuid
()
!=
0
:
name
=
pwd
.
getpwuid
(
posix
.
getuid
()).
pw_name
try
:
name
=
pwd
.
getpwuid
(
posix
.
getuid
()).
pw_name
except
KeyError
:
# the current UID may not have a pwd entry
raise
unittest
.
SkipTest
(
"need a pwd entry"
)
try
:
try
:
posix
.
initgroups
(
name
,
13
)
posix
.
initgroups
(
name
,
13
)
except
OSError
as
e
:
except
OSError
as
e
:
...
@@ -624,8 +628,9 @@ class PosixTester(unittest.TestCase):
...
@@ -624,8 +628,9 @@ class PosixTester(unittest.TestCase):
def
test_getgrouplist
(
self
):
def
test_getgrouplist
(
self
):
with
os
.
popen
(
'id -G'
)
as
idg
:
with
os
.
popen
(
'id -G'
)
as
idg
:
groups
=
idg
.
read
().
strip
()
groups
=
idg
.
read
().
strip
()
ret
=
idg
.
close
()
if
not
groups
:
if
ret
!=
0
or
not
groups
:
raise
unittest
.
SkipTest
(
"need working 'id -G'"
)
raise
unittest
.
SkipTest
(
"need working 'id -G'"
)
self
.
assertEqual
(
self
.
assertEqual
(
...
@@ -637,8 +642,9 @@ class PosixTester(unittest.TestCase):
...
@@ -637,8 +642,9 @@ class PosixTester(unittest.TestCase):
def
test_getgroups
(
self
):
def
test_getgroups
(
self
):
with
os
.
popen
(
'id -G'
)
as
idg
:
with
os
.
popen
(
'id -G'
)
as
idg
:
groups
=
idg
.
read
().
strip
()
groups
=
idg
.
read
().
strip
()
ret
=
idg
.
close
()
if
not
groups
:
if
ret
!=
0
or
not
groups
:
raise
unittest
.
SkipTest
(
"need working 'id -G'"
)
raise
unittest
.
SkipTest
(
"need working 'id -G'"
)
# 'id -G' and 'os.getgroups()' should return the same
# 'id -G' and 'os.getgroups()' should return the same
...
...
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