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
17
17
"""Tests for handling of ignore files"""
19
19
from cStringIO import StringIO
21
21
from bzrlib import config, errors, ignores
22
from bzrlib.tests import TestCase, TestCaseInTempDir
22
from bzrlib.tests import TestCase, TestCaseInTempDir, TestCaseWithTransport
25
25
class TestParseIgnoreFile(TestCase):
46
50
def test_parse_empty(self):
47
51
ignored = ignores.parse_ignore_file(StringIO(''))
48
52
self.assertEqual(set([]), ignored)
54
def test_parse_non_utf8(self):
55
"""Lines with non utf 8 characters should be discarded."""
56
ignored = ignores.parse_ignore_file(StringIO(
61
self.assertEqual(set([
51
67
class TestUserIgnores(TestCaseInTempDir):
53
69
def test_create_if_missing(self):
54
70
# $HOME should be set to '.'
55
71
ignore_path = config.user_ignore_config_filename()
99
115
self.assertEqual(patterns, added)
100
116
self.assertEqual(set(patterns), ignores.get_user_ignores())
118
def test_add_directory(self):
119
"""Test that adding a directory will strip any trailing slash"""
120
# Create an empty file
121
ignores._set_user_ignores([])
123
in_patterns = ['foo/', 'bar/', 'baz\\']
124
added = ignores.add_unique_user_ignores(in_patterns)
125
out_patterns = [ x.rstrip('/\\') for x in in_patterns ]
126
self.assertEqual(out_patterns, added)
127
self.assertEqual(set(out_patterns), ignores.get_user_ignores())
102
129
def test_add_unique(self):
103
130
"""Test that adding will not duplicate ignores"""
104
ignores._set_user_ignores(['foo', './bar', u'b\xe5z'])
131
ignores._set_user_ignores(
132
['foo', './bar', u'b\xe5z', 'dir1/', 'dir3\\'])
106
added = ignores.add_unique_user_ignores(['xxx', './bar', 'xxx'])
107
self.assertEqual(['xxx'], added)
108
self.assertEqual(set(['foo', './bar', u'b\xe5z', 'xxx']),
134
added = ignores.add_unique_user_ignores(
135
['xxx', './bar', 'xxx', 'dir1/', 'dir2/', 'dir3\\'])
136
self.assertEqual(['xxx', 'dir2'], added)
137
self.assertEqual(set(['foo', './bar', u'b\xe5z',
138
'xxx', 'dir1', 'dir2', 'dir3']),
109
139
ignores.get_user_ignores())
115
145
TestCase.setUp(self)
117
orig = ignores._runtime_ignores
119
ignores._runtime_ignores = orig
120
self.addCleanup(restore)
121
147
# For the purposes of these tests, we must have no
122
148
# runtime ignores
123
ignores._runtime_ignores = set()
149
self.overrideAttr(ignores, '_runtime_ignores', set())
125
151
def test_add(self):
126
152
"""Test that we can add an entry to the list."""
137
163
ignores.add_runtime_ignores(['bar'])
138
164
self.assertEqual(set(['foo', 'bar']), ignores.get_runtime_ignores())
167
class TestTreeIgnores(TestCaseWithTransport):
169
def test_new_file(self):
170
tree = self.make_branch_and_tree(".")
171
ignores.tree_ignores_add_patterns(tree, ["myentry"])
172
self.assertTrue(tree.has_filename(".bzrignore"))
173
self.assertEquals("myentry\n",
174
open(".bzrignore", 'r').read())
176
def test_add_to_existing(self):
177
tree = self.make_branch_and_tree(".")
178
self.build_tree_contents([('.bzrignore', "myentry1\n")])
179
tree.add([".bzrignore"])
180
ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
181
self.assertEquals("myentry1\nmyentry2\nfoo\n",
182
open(".bzrignore", 'r').read())
184
def test_adds_ending_newline(self):
185
tree = self.make_branch_and_tree(".")
186
self.build_tree_contents([('.bzrignore', "myentry1")])
187
tree.add([".bzrignore"])
188
ignores.tree_ignores_add_patterns(tree, ["myentry2"])
189
self.assertEquals("myentry1\nmyentry2\n",
190
open(".bzrignore", 'r').read())