2002-12-12 16:30:20 -04:00
|
|
|
import macpath
|
2010-03-06 14:07:18 -04:00
|
|
|
from test import test_support, test_genericpath
|
2002-12-12 16:30:20 -04:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class MacPathTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_abspath(self):
|
2010-02-20 05:40:07 -04:00
|
|
|
self.assertEqual(macpath.abspath("xx:yy"), "xx:yy")
|
2002-12-12 16:30:20 -04:00
|
|
|
|
|
|
|
def test_isabs(self):
|
|
|
|
isabs = macpath.isabs
|
2009-06-30 19:57:08 -03:00
|
|
|
self.assertTrue(isabs("xx:yy"))
|
|
|
|
self.assertTrue(isabs("xx:yy:"))
|
|
|
|
self.assertTrue(isabs("xx:"))
|
|
|
|
self.assertFalse(isabs("foo"))
|
|
|
|
self.assertFalse(isabs(":foo"))
|
|
|
|
self.assertFalse(isabs(":foo:bar"))
|
|
|
|
self.assertFalse(isabs(":foo:bar:"))
|
2002-12-12 16:30:20 -04:00
|
|
|
|
|
|
|
def test_split(self):
|
|
|
|
split = macpath.split
|
2010-02-20 05:40:07 -04:00
|
|
|
self.assertEqual(split("foo:bar"),
|
2002-12-12 16:30:20 -04:00
|
|
|
('foo:', 'bar'))
|
2010-02-20 05:40:07 -04:00
|
|
|
self.assertEqual(split("conky:mountpoint:foo:bar"),
|
2002-12-12 16:30:20 -04:00
|
|
|
('conky:mountpoint:foo', 'bar'))
|
|
|
|
|
2010-02-20 05:40:07 -04:00
|
|
|
self.assertEqual(split(":"), ('', ''))
|
|
|
|
self.assertEqual(split(":conky:mountpoint:"),
|
2002-12-12 16:30:20 -04:00
|
|
|
(':conky:mountpoint', ''))
|
|
|
|
|
|
|
|
def test_splitext(self):
|
|
|
|
splitext = macpath.splitext
|
2010-02-20 05:40:07 -04:00
|
|
|
self.assertEqual(splitext(":foo.ext"), (':foo', '.ext'))
|
|
|
|
self.assertEqual(splitext("foo:foo.ext"), ('foo:foo', '.ext'))
|
|
|
|
self.assertEqual(splitext(".ext"), ('.ext', ''))
|
|
|
|
self.assertEqual(splitext("foo.ext:foo"), ('foo.ext:foo', ''))
|
|
|
|
self.assertEqual(splitext(":foo.ext:"), (':foo.ext:', ''))
|
|
|
|
self.assertEqual(splitext(""), ('', ''))
|
|
|
|
self.assertEqual(splitext("foo.bar.ext"), ('foo.bar', '.ext'))
|
2002-12-12 16:30:20 -04:00
|
|
|
|
2010-02-27 08:42:52 -04:00
|
|
|
def test_normpath(self):
|
|
|
|
# Issue 5827: Make sure normpath preserves unicode
|
|
|
|
for path in (u'', u'.', u'/', u'\\', u':', u'///foo/.//bar//'):
|
|
|
|
self.assertIsInstance(macpath.normpath(path), unicode,
|
|
|
|
'normpath() returned str instead of unicode')
|
|
|
|
|
2010-03-06 14:07:18 -04:00
|
|
|
class MacCommonTest(test_genericpath.CommonTest):
|
2010-03-06 14:52:52 -04:00
|
|
|
pathmodule = macpath
|
2010-03-06 14:07:18 -04:00
|
|
|
|
2002-12-12 16:30:20 -04:00
|
|
|
|
|
|
|
def test_main():
|
2010-03-06 14:07:18 -04:00
|
|
|
test_support.run_unittest(MacPathTestCase, MacCommonTest)
|
2002-12-12 16:30:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|