/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2116.4.1 by John Arbash Meinel
Update file and revision id generators.
1
# Copyright (C) 2006 Canonical Ltd
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
"""Tests for bzrlib/generate_ids.py"""
18
19
import re
20
21
from bzrlib import (
22
    generate_ids,
23
    tests,
24
    )
25
26
27
class TestFileIds(tests.TestCase):
28
    """Test functions which generate file ids"""
29
    
30
    def test_gen_file_id(self):
31
        gen_file_id = generate_ids.gen_file_id
32
33
        # We try to use the filename if possible
34
        self.assertStartsWith(gen_file_id('bar'), 'bar-')
35
36
        # but we squash capitalization, and remove non word characters
37
        self.assertStartsWith(gen_file_id('Mwoo oof\t m'), 'mwoooofm-')
38
39
        # We also remove leading '.' characters to prevent hidden file-ids
40
        self.assertStartsWith(gen_file_id('..gam.py'), 'gam.py-')
41
        self.assertStartsWith(gen_file_id('..Mwoo oof\t m'), 'mwoooofm-')
42
43
        # we remove unicode characters, and still don't end up with a 
44
        # hidden file id
45
        self.assertStartsWith(gen_file_id(u'\xe5\xb5.txt'), 'txt-')
46
        
47
        # Our current method of generating unique ids adds 33 characters
48
        # plus an serial number (log10(N) characters)
49
        # to the end of the filename. We now restrict the filename portion to
50
        # be <= 20 characters, so the maximum length should now be approx < 60
51
52
        # Test both case squashing and length restriction
53
        fid = gen_file_id('A'*50 + '.txt')
54
        self.assertStartsWith(fid, 'a'*20 + '-')
55
        self.failUnless(len(fid) < 60)
56
57
        # restricting length happens after the other actions, so
58
        # we preserve as much as possible
59
        fid = gen_file_id('\xe5\xb5..aBcd\tefGhijKLMnop\tqrstuvwxyz')
60
        self.assertStartsWith(fid, 'abcdefghijklmnopqrst-')
61
        self.failUnless(len(fid) < 60)
62
63
    def test__next_id_suffix_sets_suffix(self):
64
        generate_ids._gen_file_id_suffix = None
65
        generate_ids._next_id_suffix()
66
        self.assertNotEqual(None, generate_ids._gen_file_id_suffix)
67
68
    def test__next_id_suffix_increments(self):
69
        generate_ids._gen_file_id_suffix = "foo-"
70
        generate_ids._gen_file_id_serial = 1
71
        try:
72
            self.assertEqual("foo-2", generate_ids._next_id_suffix())
73
            self.assertEqual("foo-3", generate_ids._next_id_suffix())
74
            self.assertEqual("foo-4", generate_ids._next_id_suffix())
75
            self.assertEqual("foo-5", generate_ids._next_id_suffix())
76
            self.assertEqual("foo-6", generate_ids._next_id_suffix())
77
            self.assertEqual("foo-7", generate_ids._next_id_suffix())
78
            self.assertEqual("foo-8", generate_ids._next_id_suffix())
79
            self.assertEqual("foo-9", generate_ids._next_id_suffix())
80
            self.assertEqual("foo-10", generate_ids._next_id_suffix())
81
        finally:
82
            # Reset so that all future ids generated in the test suite
83
            # don't end in 'foo-XXX'
84
            generate_ids._gen_file_id_suffix = None
85
            generate_ids._gen_file_id_serial = 0
86
87
    def test_gen_root_id(self):
88
        # Mostly just make sure gen_root_id() exists
89
        root_id = generate_ids.gen_root_id()
90
        self.assertStartsWith(root_id, 'tree_root-')
91
92
93
class TestGenRevisionId(tests.TestCase):
94
    """Test generating revision ids"""
95
96
    def assertMatchesRe(self, regex, text):
97
        """Make sure text is matched by the regex given"""
98
        if re.match(regex, text) is None:
99
            self.fail('Pattern %s did not match text %s' % (regex, text))
100
101
    def assertGenRevisionId(self, regex, username, timestamp=None):
102
        """gen_revision_id should create a revision id matching the regex"""
103
        revision_id = generate_ids.gen_revision_id(username, timestamp)
104
        self.assertMatchesRe(regex, revision_id)
2249.5.14 by John Arbash Meinel
Add some tests that generate_ids.get_revision_id() generates ascii revision ids
105
        # It should be a utf8 revision_id, not a unicode one
106
        self.assertIsInstance(revision_id, str)
107
        # gen_revision_id should always return ascii revision ids.
108
        revision_id.decode('ascii')
2116.4.1 by John Arbash Meinel
Update file and revision id generators.
109
110
    def test_timestamp(self):
111
        """passing a timestamp should cause it to be used"""
112
        self.assertGenRevisionId(r'user@host-\d{14}-[a-z0-9]{16}', 'user@host')
113
        self.assertGenRevisionId('user@host-20061102205056-[a-z0-9]{16}',
114
                                 'user@host', 1162500656.688)
115
        self.assertGenRevisionId(r'user@host-20061102205024-[a-z0-9]{16}',
116
                                 'user@host', 1162500624.000)
117
118
    def test_gen_revision_id_email(self):
119
        """gen_revision_id uses email address if present"""
120
        regex = r'user\+joe_bar@foo-bar\.com-\d{14}-[a-z0-9]{16}'
121
        self.assertGenRevisionId(regex,'user+joe_bar@foo-bar.com')
122
        self.assertGenRevisionId(regex, '<user+joe_bar@foo-bar.com>')
123
        self.assertGenRevisionId(regex, 'Joe Bar <user+joe_bar@foo-bar.com>')
124
        self.assertGenRevisionId(regex, 'Joe Bar <user+Joe_Bar@Foo-Bar.com>')
125
        self.assertGenRevisionId(regex, u'Joe B\xe5r <user+Joe_Bar@Foo-Bar.com>')
126
127
    def test_gen_revision_id_user(self):
128
        """If there is no email, fall back to the whole username"""
129
        tail = r'-\d{14}-[a-z0-9]{16}'
2249.5.14 by John Arbash Meinel
Add some tests that generate_ids.get_revision_id() generates ascii revision ids
130
        self.assertGenRevisionId('joe_bar' + tail, 'Joe Bar')
2116.4.1 by John Arbash Meinel
Update file and revision id generators.
131
        self.assertGenRevisionId('joebar' + tail, 'joebar')
132
        self.assertGenRevisionId('joe_br' + tail, u'Joe B\xe5r')
133
        self.assertGenRevisionId(r'joe_br_user\+joe_bar_foo-bar.com' + tail,
134
                                 u'Joe B\xe5r <user+Joe_Bar_Foo-Bar.com>')
2249.5.14 by John Arbash Meinel
Add some tests that generate_ids.get_revision_id() generates ascii revision ids
135
136
    def test_revision_ids_are_ascii(self):
137
        """gen_revision_id should always return an ascii revision id."""
138
        tail = r'-\d{14}-[a-z0-9]{16}'
139
        self.assertGenRevisionId('joe_bar' + tail, 'Joe Bar')
140
        self.assertGenRevisionId('joe_bar' + tail, u'Joe Bar')
141
        self.assertGenRevisionId('joe@foo' + tail, u'Joe Bar <joe@foo>')
142
        # We cheat a little with this one, because email-addresses shouldn't
143
        # contain non-ascii characters, but generate_ids should strip them
144
        # anyway.
145
        self.assertGenRevisionId('joe@f' + tail, u'Joe Bar <joe@f\xb6>')