~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ignores.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2012, 2016 Canonical Ltd
 
1
# Copyright (C) 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for handling of ignore files"""
18
18
 
19
19
from cStringIO import StringIO
20
20
 
21
 
from bzrlib import (
22
 
    config,
23
 
    ignores,
24
 
    )
25
 
from bzrlib.tests import (
26
 
    TestCase,
27
 
    TestCaseInTempDir,
28
 
    TestCaseWithTransport,
29
 
    )
 
21
from bzrlib import config, errors, ignores
 
22
from bzrlib.tests import TestCase, TestCaseInTempDir, TestCaseWithTransport
30
23
 
31
24
 
32
25
class TestParseIgnoreFile(TestCase):
41
34
                '\n' # empty line
42
35
                '#comment\n'
43
36
                ' xx \n' # whitespace
44
 
                '!RE:^\.z.*\n'
45
 
                '!!./.zcompdump\n'
46
37
                ))
47
38
        self.assertEqual(set(['./rootdir',
48
39
                          'randomfile*',
50
41
                          u'unicode\xb5',
51
42
                          'dos',
52
43
                          ' xx ',
53
 
                          '!RE:^\.z.*',
54
 
                          '!!./.zcompdump',
55
44
                         ]), ignored)
56
45
 
57
46
    def test_parse_empty(self):
58
47
        ignored = ignores.parse_ignore_file(StringIO(''))
59
48
        self.assertEqual(set([]), ignored)
60
 
        
61
 
    def test_parse_non_utf8(self):
62
 
        """Lines with non utf 8 characters should be discarded."""
63
 
        ignored = ignores.parse_ignore_file(StringIO(
64
 
                'utf8filename_a\n'
65
 
                'invalid utf8\x80\n'
66
 
                'utf8filename_b\n'
67
 
                ))
68
 
        self.assertEqual(set([
69
 
                        'utf8filename_a',
70
 
                        'utf8filename_b',
71
 
                       ]), ignored)
72
49
 
73
50
 
74
51
class TestUserIgnores(TestCaseInTempDir):
75
 
 
 
52
    
76
53
    def test_create_if_missing(self):
77
54
        # $HOME should be set to '.'
78
55
        ignore_path = config.user_ignore_config_filename()
79
 
        self.assertPathDoesNotExist(ignore_path)
 
56
        self.failIfExists(ignore_path)
80
57
        user_ignores = ignores.get_user_ignores()
81
58
        self.assertEqual(set(ignores.USER_DEFAULTS), user_ignores)
82
59
 
83
 
        self.assertPathExists(ignore_path)
 
60
        self.failUnlessExists(ignore_path)
84
61
        f = open(ignore_path, 'rb')
85
62
        try:
86
63
            entries = ignores.parse_ignore_file(f)
141
118
        added = ignores.add_unique_user_ignores(
142
119
            ['xxx', './bar', 'xxx', 'dir1/', 'dir2/', 'dir3\\'])
143
120
        self.assertEqual(['xxx', 'dir2'], added)
144
 
        self.assertEqual(set(['foo', './bar', u'b\xe5z',
 
121
        self.assertEqual(set(['foo', './bar', u'b\xe5z', 
145
122
                              'xxx', 'dir1', 'dir2', 'dir3']),
146
123
                         ignores.get_user_ignores())
147
124
 
149
126
class TestRuntimeIgnores(TestCase):
150
127
 
151
128
    def setUp(self):
152
 
        super(TestRuntimeIgnores, self).setUp()
 
129
        TestCase.setUp(self)
153
130
 
 
131
        orig = ignores._runtime_ignores
 
132
        def restore():
 
133
            ignores._runtime_ignores = orig
 
134
        self.addCleanup(restore)
154
135
        # For the purposes of these tests, we must have no
155
136
        # runtime ignores
156
 
        self.overrideAttr(ignores, '_runtime_ignores', set())
 
137
        ignores._runtime_ignores = set()
157
138
 
158
139
    def test_add(self):
159
140
        """Test that we can add an entry to the list."""
172
153
 
173
154
 
174
155
class TestTreeIgnores(TestCaseWithTransport):
175
 
    
176
 
    def assertPatternsEquals(self, patterns):
177
 
        contents = open(".bzrignore", 'rU').read().strip().split('\n')
178
 
        self.assertEqual(sorted(patterns), sorted(contents))
179
156
 
180
157
    def test_new_file(self):
181
158
        tree = self.make_branch_and_tree(".")
182
159
        ignores.tree_ignores_add_patterns(tree, ["myentry"])
183
160
        self.assertTrue(tree.has_filename(".bzrignore"))
184
 
        self.assertPatternsEquals(["myentry"])
 
161
        self.assertEquals("myentry\n", 
 
162
                          open(".bzrignore", 'r').read())
185
163
 
186
164
    def test_add_to_existing(self):
187
165
        tree = self.make_branch_and_tree(".")
188
 
        self.build_tree_contents([('.bzrignore', "myentry1\n")])
 
166
        self.build_tree_contents([('.bzrignore', "myentry1\n")]) 
189
167
        tree.add([".bzrignore"])
190
168
        ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
191
 
        self.assertPatternsEquals(["myentry1", "myentry2", "foo"])
 
169
        self.assertEquals("myentry1\nmyentry2\nfoo\n", 
 
170
                          open(".bzrignore", 'r').read())
192
171
 
193
172
    def test_adds_ending_newline(self):
194
173
        tree = self.make_branch_and_tree(".")
195
 
        self.build_tree_contents([('.bzrignore', "myentry1")])
 
174
        self.build_tree_contents([('.bzrignore', "myentry1")]) 
196
175
        tree.add([".bzrignore"])
197
176
        ignores.tree_ignores_add_patterns(tree, ["myentry2"])
198
 
        self.assertPatternsEquals(["myentry1", "myentry2"])
199
 
        text = open(".bzrignore", 'r').read()
200
 
        self.assertTrue(text.endswith('\r\n') or
201
 
                        text.endswith('\n') or
202
 
                        text.endswith('\r'))
203
 
 
204
 
    def test_does_not_add_dupe(self):
205
 
        tree = self.make_branch_and_tree(".")
206
 
        self.build_tree_contents([('.bzrignore', "myentry\n")])
207
 
        tree.add([".bzrignore"])
208
 
        ignores.tree_ignores_add_patterns(tree, ["myentry"])
209
 
        self.assertPatternsEquals(["myentry"])
210
 
 
211
 
    def test_non_ascii(self):
212
 
        tree = self.make_branch_and_tree(".")
213
 
        self.build_tree_contents([('.bzrignore',
214
 
                                   u"myentry\u1234\n".encode('utf-8'))])
215
 
        tree.add([".bzrignore"])
216
 
        ignores.tree_ignores_add_patterns(tree, [u"myentry\u5678"])
217
 
        self.assertPatternsEquals([u"myentry\u1234".encode('utf-8'),
218
 
                                   u"myentry\u5678".encode('utf-8')])
219
 
 
220
 
    def test_crlf(self):
221
 
        tree = self.make_branch_and_tree(".")
222
 
        self.build_tree_contents([('.bzrignore', "myentry1\r\n")])
223
 
        tree.add([".bzrignore"])
224
 
        ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
225
 
        self.assertEqual(open('.bzrignore', 'rb').read(), 'myentry1\r\nmyentry2\r\nfoo\r\n')
226
 
        self.assertPatternsEquals(["myentry1", "myentry2", "foo"])
 
177
        self.assertEquals("myentry1\nmyentry2\n", 
 
178
                          open(".bzrignore", 'r').read())
 
179