2000-07-11 21:20:08 -03:00
|
|
|
import posixpath
|
|
|
|
|
|
|
|
errors = 0
|
|
|
|
|
|
|
|
def tester(fn, wantResult):
|
2000-10-23 14:22:08 -03:00
|
|
|
gotResult = eval(fn)
|
|
|
|
if wantResult != gotResult:
|
|
|
|
print "error!"
|
|
|
|
print "evaluated: " + str(fn)
|
|
|
|
print "should be: " + str(wantResult)
|
|
|
|
print " returned: " + str(gotResult)
|
|
|
|
print ""
|
|
|
|
global errors
|
|
|
|
errors = errors + 1
|
2000-07-11 21:20:08 -03:00
|
|
|
|
|
|
|
tester('posixpath.splitdrive("/foo/bar")', ('', '/foo/bar'))
|
|
|
|
|
|
|
|
tester('posixpath.split("/foo/bar")', ('/foo', 'bar'))
|
|
|
|
tester('posixpath.split("/")', ('/', ''))
|
|
|
|
tester('posixpath.split("foo")', ('', 'foo'))
|
|
|
|
|
|
|
|
tester('posixpath.splitext("foo.ext")', ('foo', '.ext'))
|
|
|
|
tester('posixpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
|
2002-12-12 16:30:20 -04:00
|
|
|
tester('posixpath.splitext(".ext")', ('', '.ext'))
|
|
|
|
tester('posixpath.splitext("/foo.ext/foo")', ('/foo.ext/foo', ''))
|
|
|
|
tester('posixpath.splitext("foo.ext/")', ('foo.ext/', ''))
|
|
|
|
tester('posixpath.splitext("")', ('', ''))
|
|
|
|
tester('posixpath.splitext("foo.bar.ext")', ('foo.bar', '.ext'))
|
2000-07-11 21:20:08 -03:00
|
|
|
|
|
|
|
tester('posixpath.isabs("/")', 1)
|
|
|
|
tester('posixpath.isabs("/foo")', 1)
|
|
|
|
tester('posixpath.isabs("/foo/bar")', 1)
|
|
|
|
tester('posixpath.isabs("foo/bar")', 0)
|
|
|
|
|
|
|
|
tester('posixpath.commonprefix(["/home/swenson/spam", "/home/swen/spam"])',
|
|
|
|
"/home/swen")
|
2000-08-23 13:51:56 -03:00
|
|
|
tester('posixpath.commonprefix(["/home/swen/spam", "/home/swen/eggs"])',
|
|
|
|
"/home/swen/")
|
2000-07-11 21:20:08 -03:00
|
|
|
tester('posixpath.commonprefix(["/home/swen/spam", "/home/swen/spam"])',
|
|
|
|
"/home/swen/spam")
|
|
|
|
|
|
|
|
if errors:
|
2000-10-23 14:22:08 -03:00
|
|
|
print str(errors) + " errors."
|
2000-07-11 21:20:08 -03:00
|
|
|
else:
|
2000-10-23 14:22:08 -03:00
|
|
|
print "No errors. Thank your lucky stars."
|