mirror of https://github.com/python/cpython
test of the nis module
This commit is contained in:
parent
7822681992
commit
3236b334ef
|
@ -0,0 +1,19 @@
|
|||
import nis
|
||||
|
||||
verbose = 0
|
||||
if __name__ == '__main__':
|
||||
verbose = 1
|
||||
|
||||
maps = nis.maps()
|
||||
for nismap in maps:
|
||||
if verbose:
|
||||
print nismap
|
||||
mapping = nis.cat(nismap)
|
||||
for k, v in mapping.items():
|
||||
if verbose:
|
||||
print ' ', k, v
|
||||
if not k:
|
||||
continue
|
||||
if nis.match(k, nismap) <> v:
|
||||
print "NIS match failed for key `%s' in map `%s'" % (k, nismap)
|
||||
|
Loading…
Reference in New Issue