~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_generate_ids.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-22 14:45:05 UTC
  • mfrom: (2294.1.11 utf8_file_ids)
  • Revision ID: pqm@pqm.ubuntu.com-20070222144505-5f7551602cad9332
(John Arbash Meinel, r=robert) Update apis to expect UTF-8 file ids instead of Unicode

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
class TestFileIds(tests.TestCase):
28
28
    """Test functions which generate file ids"""
29
 
    
 
29
 
 
30
    def assertGenFileId(self, regex, filename):
 
31
        """gen_file_id should create a file id matching the regex.
 
32
 
 
33
        The file id should be ascii, and should be an 8-bit string
 
34
        """
 
35
        file_id = generate_ids.gen_file_id(filename)
 
36
        self.assertContainsRe(file_id, '^'+regex+'$')
 
37
        # It should be a utf8 file_id, not a unicode one
 
38
        self.assertIsInstance(file_id, str)
 
39
        # gen_file_id should always return ascii file ids.
 
40
        file_id.decode('ascii')
 
41
 
30
42
    def test_gen_file_id(self):
31
43
        gen_file_id = generate_ids.gen_file_id
32
44
 
43
55
        # we remove unicode characters, and still don't end up with a 
44
56
        # hidden file id
45
57
        self.assertStartsWith(gen_file_id(u'\xe5\xb5.txt'), 'txt-')
46
 
        
 
58
 
47
59
        # Our current method of generating unique ids adds 33 characters
48
60
        # plus an serial number (log10(N) characters)
49
61
        # to the end of the filename. We now restrict the filename portion to
60
72
        self.assertStartsWith(fid, 'abcdefghijklmnopqrst-')
61
73
        self.failUnless(len(fid) < 60)
62
74
 
 
75
    def test_file_ids_are_ascii(self):
 
76
        tail = r'-\d{14}-[a-z0-9]{16}-\d+'
 
77
        self.assertGenFileId('foo' + tail, 'foo')
 
78
        self.assertGenFileId('foo' + tail, u'foo')
 
79
        self.assertGenFileId('bar' + tail, u'bar')
 
80
        self.assertGenFileId('br' + tail, u'b\xe5r')
 
81
 
63
82
    def test__next_id_suffix_sets_suffix(self):
64
83
        generate_ids._gen_file_id_suffix = None
65
84
        generate_ids._next_id_suffix()