~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ignores.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Tests for handling of ignore files"""
18
18
 
19
19
from cStringIO import StringIO
20
20
 
21
21
from bzrlib import config, errors, ignores
22
 
from bzrlib.tests import TestCase, TestCaseInTempDir
 
22
from bzrlib.tests import TestCase, TestCaseInTempDir, TestCaseWithTransport
23
23
 
24
24
 
25
25
class TestParseIgnoreFile(TestCase):
34
34
                '\n' # empty line
35
35
                '#comment\n'
36
36
                ' xx \n' # whitespace
 
37
                '!RE:^\.z.*\n'
 
38
                '!!./.zcompdump\n'
37
39
                ))
38
40
        self.assertEqual(set(['./rootdir',
39
41
                          'randomfile*',
41
43
                          u'unicode\xb5',
42
44
                          'dos',
43
45
                          ' xx ',
 
46
                          '!RE:^\.z.*',
 
47
                          '!!./.zcompdump',
44
48
                         ]), ignored)
45
49
 
46
50
    def test_parse_empty(self):
47
51
        ignored = ignores.parse_ignore_file(StringIO(''))
48
52
        self.assertEqual(set([]), ignored)
 
53
        
 
54
    def test_parse_non_utf8(self):
 
55
        """Lines with non utf 8 characters should be discarded."""
 
56
        ignored = ignores.parse_ignore_file(StringIO(
 
57
                'utf8filename_a\n'
 
58
                'invalid utf8\x80\n'
 
59
                'utf8filename_b\n'
 
60
                ))
 
61
        self.assertEqual(set([
 
62
                        'utf8filename_a',
 
63
                        'utf8filename_b',
 
64
                       ]), ignored)
49
65
 
50
66
 
51
67
class TestUserIgnores(TestCaseInTempDir):
52
 
    
 
68
 
53
69
    def test_create_if_missing(self):
54
70
        # $HOME should be set to '.'
55
71
        ignore_path = config.user_ignore_config_filename()
118
134
        added = ignores.add_unique_user_ignores(
119
135
            ['xxx', './bar', 'xxx', 'dir1/', 'dir2/', 'dir3\\'])
120
136
        self.assertEqual(['xxx', 'dir2'], added)
121
 
        self.assertEqual(set(['foo', './bar', u'b\xe5z', 
 
137
        self.assertEqual(set(['foo', './bar', u'b\xe5z',
122
138
                              'xxx', 'dir1', 'dir2', 'dir3']),
123
139
                         ignores.get_user_ignores())
124
140
 
128
144
    def setUp(self):
129
145
        TestCase.setUp(self)
130
146
 
131
 
        orig = ignores._runtime_ignores
132
 
        def restore():
133
 
            ignores._runtime_ignores = orig
134
 
        self.addCleanup(restore)
135
147
        # For the purposes of these tests, we must have no
136
148
        # runtime ignores
137
 
        ignores._runtime_ignores = set()
 
149
        self.overrideAttr(ignores, '_runtime_ignores', set())
138
150
 
139
151
    def test_add(self):
140
152
        """Test that we can add an entry to the list."""
150
162
 
151
163
        ignores.add_runtime_ignores(['bar'])
152
164
        self.assertEqual(set(['foo', 'bar']), ignores.get_runtime_ignores())
 
165
 
 
166
 
 
167
class TestTreeIgnores(TestCaseWithTransport):
 
168
    
 
169
    def assertPatternsEquals(self, patterns):
 
170
        contents = open(".bzrignore", 'rU').read().strip().split('\n')
 
171
        self.assertEquals(sorted(patterns), sorted(contents))
 
172
 
 
173
    def test_new_file(self):
 
174
        tree = self.make_branch_and_tree(".")
 
175
        ignores.tree_ignores_add_patterns(tree, ["myentry"])
 
176
        self.assertTrue(tree.has_filename(".bzrignore"))
 
177
        self.assertPatternsEquals(["myentry"])
 
178
 
 
179
    def test_add_to_existing(self):
 
180
        tree = self.make_branch_and_tree(".")
 
181
        self.build_tree_contents([('.bzrignore', "myentry1\n")])
 
182
        tree.add([".bzrignore"])
 
183
        ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
 
184
        self.assertPatternsEquals(["myentry1", "myentry2", "foo"])
 
185
 
 
186
    def test_adds_ending_newline(self):
 
187
        tree = self.make_branch_and_tree(".")
 
188
        self.build_tree_contents([('.bzrignore', "myentry1")])
 
189
        tree.add([".bzrignore"])
 
190
        ignores.tree_ignores_add_patterns(tree, ["myentry2"])
 
191
        self.assertPatternsEquals(["myentry1", "myentry2"])
 
192
        text = open(".bzrignore", 'r').read()
 
193
        self.assertTrue(text.endswith('\r\n') or
 
194
                        text.endswith('\n') or
 
195
                        text.endswith('\r'))
 
196
 
 
197
    def test_does_not_add_dupe(self):
 
198
        tree = self.make_branch_and_tree(".")
 
199
        self.build_tree_contents([('.bzrignore', "myentry\n")])
 
200
        tree.add([".bzrignore"])
 
201
        ignores.tree_ignores_add_patterns(tree, ["myentry"])
 
202
        self.assertPatternsEquals(["myentry"])
 
203
 
 
204
    def test_non_ascii(self):
 
205
        tree = self.make_branch_and_tree(".")
 
206
        self.build_tree_contents([('.bzrignore',
 
207
                                   u"myentry\u1234\n".encode('utf-8'))])
 
208
        tree.add([".bzrignore"])
 
209
        ignores.tree_ignores_add_patterns(tree, [u"myentry\u5678"])
 
210
        self.assertPatternsEquals([u"myentry\u1234".encode('utf-8'),
 
211
                                   u"myentry\u5678".encode('utf-8')])
 
212
 
 
213
    def test_crlf(self):
 
214
        tree = self.make_branch_and_tree(".")
 
215
        self.build_tree_contents([('.bzrignore', "myentry1\r\n")])
 
216
        tree.add([".bzrignore"])
 
217
        ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
 
218
        self.assertEquals(open('.bzrignore', 'rb').read(), 'myentry1\r\nmyentry2\r\nfoo\r\n')
 
219
        self.assertPatternsEquals(["myentry1", "myentry2", "foo"])