2001-05-18 18:38:52 -03:00
|
|
|
"""Test script for the grp module."""
|
|
|
|
|
|
|
|
# XXX This really needs some work, but what are the expected invariants?
|
2000-10-23 14:22:08 -03:00
|
|
|
|
1996-12-18 15:36:34 -04:00
|
|
|
import grp
|
2001-05-18 18:38:52 -03:00
|
|
|
import unittest
|
2002-07-23 16:04:11 -03:00
|
|
|
from test import test_support
|
2001-05-18 18:38:52 -03:00
|
|
|
|
|
|
|
|
|
|
|
class GroupDatabaseTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.groups = grp.getgrall()
|
|
|
|
|
|
|
|
def test_getgrgid(self):
|
|
|
|
entry = grp.getgrgid(self.groups[0][2])
|
|
|
|
|
|
|
|
def test_getgrnam(self):
|
|
|
|
entry = grp.getgrnam(self.groups[0][0])
|
|
|
|
|
|
|
|
|
2001-09-20 18:33:42 -03:00
|
|
|
def test_main():
|
|
|
|
test_support.run_unittest(GroupDatabaseTestCase)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|