~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_osutils.py

  • Committer: INADA Naoki
  • Date: 2011-05-05 09:15:34 UTC
  • mto: (5830.3.3 i18n-msgfmt)
  • mto: This revision was merged to the branch mainline in revision 5873.
  • Revision ID: songofacandy@gmail.com-20110505091534-7sv835xpofwrmpt4
Add update-pot command to Makefile and tools/bzrgettext script that
extracts help text from bzr commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1897
1897
        os.symlink(self.target, self.link)
1898
1898
 
1899
1899
    def test_os_readlink_link_encoding(self):
1900
 
        self.assertEquals(self.target,  os.readlink(self.link))
 
1900
        if sys.version_info < (2, 6):
 
1901
            self.assertRaises(UnicodeEncodeError, os.readlink, self.link)
 
1902
        else:
 
1903
            self.assertEquals(self.target,  os.readlink(self.link))
1901
1904
 
1902
1905
    def test_os_readlink_link_decoding(self):
1903
1906
        self.assertEquals(self.target.encode(osutils._fs_enc),
2052
2055
        # Whatever the result is, if we don't raise an exception, it's ok.
2053
2056
        osutils.terminal_width()
2054
2057
 
2055
 
 
2056
2058
class TestCreationOps(tests.TestCaseInTempDir):
2057
2059
    _test_needs_features = [features.chown_feature]
2058
2060
 
2088
2090
        self.assertEquals(self.uid, s.st_uid)
2089
2091
        self.assertEquals(self.gid, s.st_gid)
2090
2092
 
2091
 
 
2092
2093
class TestGetuserUnicode(tests.TestCase):
2093
2094
 
2094
2095
    def test_ascii_user(self):
2109
2110
        self.overrideEnv('LOGNAME', u'jrandom\xb6'.encode(ue))
2110
2111
        self.assertEqual(u'jrandom\xb6', osutils.getuser_unicode())
2111
2112
 
2112
 
    def test_no_username_bug_660174(self):
2113
 
        self.requireFeature(features.win32_feature)
2114
 
        for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
2115
 
            self.overrideEnv(name, None)
2116
 
        self.assertEqual(u'UNKNOWN', osutils.getuser_unicode())
2117
 
 
2118
 
 
2119
2113
class TestBackupNames(tests.TestCase):
2120
2114
 
2121
2115
    def setUp(self):