/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_generate_ids.py

  • Committer: Vincent Ladeuil
  • Date: 2012-01-18 14:09:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120118140919-rlvdrhpc0nq1lbwi
Change set/remove to require a lock for the branch config files.

This means that tests (or any plugin for that matter) do not requires an
explicit lock on the branch anymore to change a single option. This also
means the optimisation becomes "opt-in" and as such won't be as
spectacular as it may be and/or harder to get right (nothing fails
anymore).

This reduces the diff by ~300 lines.

Code/tests that were updating more than one config option is still taking
a lock to at least avoid some IOs and demonstrate the benefits through
the decreased number of hpss calls.

The duplication between BranchStack and BranchOnlyStack will be removed
once the same sharing is in place for local config files, at which point
the Stack class itself may be able to host the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006, 2007, 2009, 2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Tests for bzrlib/generate_ids.py"""
 
18
 
 
19
from bzrlib import (
 
20
    generate_ids,
 
21
    tests,
 
22
    )
 
23
 
 
24
 
 
25
class TestFileIds(tests.TestCase):
 
26
    """Test functions which generate file ids"""
 
27
 
 
28
    def assertGenFileId(self, regex, filename):
 
29
        """gen_file_id should create a file id matching the regex.
 
30
 
 
31
        The file id should be ascii, and should be an 8-bit string
 
32
        """
 
33
        file_id = generate_ids.gen_file_id(filename)
 
34
        self.assertContainsRe(file_id, '^'+regex+'$')
 
35
        # It should be a utf8 file_id, not a unicode one
 
36
        self.assertIsInstance(file_id, str)
 
37
        # gen_file_id should always return ascii file ids.
 
38
        file_id.decode('ascii')
 
39
 
 
40
    def test_gen_file_id(self):
 
41
        gen_file_id = generate_ids.gen_file_id
 
42
 
 
43
        # We try to use the filename if possible
 
44
        self.assertStartsWith(gen_file_id('bar'), 'bar-')
 
45
 
 
46
        # but we squash capitalization, and remove non word characters
 
47
        self.assertStartsWith(gen_file_id('Mwoo oof\t m'), 'mwoooofm-')
 
48
 
 
49
        # We also remove leading '.' characters to prevent hidden file-ids
 
50
        self.assertStartsWith(gen_file_id('..gam.py'), 'gam.py-')
 
51
        self.assertStartsWith(gen_file_id('..Mwoo oof\t m'), 'mwoooofm-')
 
52
 
 
53
        # we remove unicode characters, and still don't end up with a
 
54
        # hidden file id
 
55
        self.assertStartsWith(gen_file_id(u'\xe5\xb5.txt'), 'txt-')
 
56
 
 
57
        # Our current method of generating unique ids adds 33 characters
 
58
        # plus an serial number (log10(N) characters)
 
59
        # to the end of the filename. We now restrict the filename portion to
 
60
        # be <= 20 characters, so the maximum length should now be approx < 60
 
61
 
 
62
        # Test both case squashing and length restriction
 
63
        fid = gen_file_id('A'*50 + '.txt')
 
64
        self.assertStartsWith(fid, 'a'*20 + '-')
 
65
        self.assertTrue(len(fid) < 60)
 
66
 
 
67
        # restricting length happens after the other actions, so
 
68
        # we preserve as much as possible
 
69
        fid = gen_file_id('\xe5\xb5..aBcd\tefGhijKLMnop\tqrstuvwxyz')
 
70
        self.assertStartsWith(fid, 'abcdefghijklmnopqrst-')
 
71
        self.assertTrue(len(fid) < 60)
 
72
 
 
73
    def test_file_ids_are_ascii(self):
 
74
        tail = r'-\d{14}-[a-z0-9]{16}-\d+'
 
75
        self.assertGenFileId('foo' + tail, 'foo')
 
76
        self.assertGenFileId('foo' + tail, u'foo')
 
77
        self.assertGenFileId('bar' + tail, u'bar')
 
78
        self.assertGenFileId('br' + tail, u'b\xe5r')
 
79
 
 
80
    def test__next_id_suffix_sets_suffix(self):
 
81
        generate_ids._gen_file_id_suffix = None
 
82
        generate_ids._next_id_suffix()
 
83
        self.assertNotEqual(None, generate_ids._gen_file_id_suffix)
 
84
 
 
85
    def test__next_id_suffix_increments(self):
 
86
        generate_ids._gen_file_id_suffix = "foo-"
 
87
        generate_ids._gen_file_id_serial = 1
 
88
        try:
 
89
            self.assertEqual("foo-2", generate_ids._next_id_suffix())
 
90
            self.assertEqual("foo-3", generate_ids._next_id_suffix())
 
91
            self.assertEqual("foo-4", generate_ids._next_id_suffix())
 
92
            self.assertEqual("foo-5", generate_ids._next_id_suffix())
 
93
            self.assertEqual("foo-6", generate_ids._next_id_suffix())
 
94
            self.assertEqual("foo-7", generate_ids._next_id_suffix())
 
95
            self.assertEqual("foo-8", generate_ids._next_id_suffix())
 
96
            self.assertEqual("foo-9", generate_ids._next_id_suffix())
 
97
            self.assertEqual("foo-10", generate_ids._next_id_suffix())
 
98
        finally:
 
99
            # Reset so that all future ids generated in the test suite
 
100
            # don't end in 'foo-XXX'
 
101
            generate_ids._gen_file_id_suffix = None
 
102
            generate_ids._gen_file_id_serial = 0
 
103
 
 
104
    def test_gen_root_id(self):
 
105
        # Mostly just make sure gen_root_id() exists
 
106
        root_id = generate_ids.gen_root_id()
 
107
        self.assertStartsWith(root_id, 'tree_root-')
 
108
 
 
109
 
 
110
class TestGenRevisionId(tests.TestCase):
 
111
    """Test generating revision ids"""
 
112
 
 
113
    def assertGenRevisionId(self, regex, username, timestamp=None):
 
114
        """gen_revision_id should create a revision id matching the regex"""
 
115
        revision_id = generate_ids.gen_revision_id(username, timestamp)
 
116
        self.assertContainsRe(revision_id, '^'+regex+'$')
 
117
        # It should be a utf8 revision_id, not a unicode one
 
118
        self.assertIsInstance(revision_id, str)
 
119
        # gen_revision_id should always return ascii revision ids.
 
120
        revision_id.decode('ascii')
 
121
 
 
122
    def test_timestamp(self):
 
123
        """passing a timestamp should cause it to be used"""
 
124
        self.assertGenRevisionId(r'user@host-\d{14}-[a-z0-9]{16}', 'user@host')
 
125
        self.assertGenRevisionId('user@host-20061102205056-[a-z0-9]{16}',
 
126
                                 'user@host', 1162500656.688)
 
127
        self.assertGenRevisionId(r'user@host-20061102205024-[a-z0-9]{16}',
 
128
                                 'user@host', 1162500624.000)
 
129
 
 
130
    def test_gen_revision_id_email(self):
 
131
        """gen_revision_id uses email address if present"""
 
132
        regex = r'user\+joe_bar@foo-bar\.com-\d{14}-[a-z0-9]{16}'
 
133
        self.assertGenRevisionId(regex,'user+joe_bar@foo-bar.com')
 
134
        self.assertGenRevisionId(regex, '<user+joe_bar@foo-bar.com>')
 
135
        self.assertGenRevisionId(regex, 'Joe Bar <user+joe_bar@foo-bar.com>')
 
136
        self.assertGenRevisionId(regex, 'Joe Bar <user+Joe_Bar@Foo-Bar.com>')
 
137
        self.assertGenRevisionId(regex, u'Joe B\xe5r <user+Joe_Bar@Foo-Bar.com>')
 
138
 
 
139
    def test_gen_revision_id_user(self):
 
140
        """If there is no email, fall back to the whole username"""
 
141
        tail = r'-\d{14}-[a-z0-9]{16}'
 
142
        self.assertGenRevisionId('joe_bar' + tail, 'Joe Bar')
 
143
        self.assertGenRevisionId('joebar' + tail, 'joebar')
 
144
        self.assertGenRevisionId('joe_br' + tail, u'Joe B\xe5r')
 
145
        self.assertGenRevisionId(r'joe_br_user\+joe_bar_foo-bar.com' + tail,
 
146
                                 u'Joe B\xe5r <user+Joe_Bar_Foo-Bar.com>')
 
147
 
 
148
    def test_revision_ids_are_ascii(self):
 
149
        """gen_revision_id should always return an ascii revision id."""
 
150
        tail = r'-\d{14}-[a-z0-9]{16}'
 
151
        self.assertGenRevisionId('joe_bar' + tail, 'Joe Bar')
 
152
        self.assertGenRevisionId('joe_bar' + tail, u'Joe Bar')
 
153
        self.assertGenRevisionId('joe@foo' + tail, u'Joe Bar <joe@foo>')
 
154
        # We cheat a little with this one, because email-addresses shouldn't
 
155
        # contain non-ascii characters, but generate_ids should strip them
 
156
        # anyway.
 
157
        self.assertGenRevisionId('joe@f' + tail, u'Joe Bar <joe@f\xb6>')