/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2052.3.2 by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical
1
# Copyright (C) 2006 Canonical Ltd
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
16
17
"""Tests for handling of ignore files"""
18
19
from cStringIO import StringIO
20
21
from bzrlib import config, errors, ignores
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
22
from bzrlib.tests import TestCase, TestCaseInTempDir, TestCaseWithTransport
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
23
24
25
class TestParseIgnoreFile(TestCase):
26
27
    def test_parse_fancy(self):
28
        ignored = ignores.parse_ignore_file(StringIO(
29
                './rootdir\n'
30
                'randomfile*\n'
31
                'path/from/ro?t\n'
32
                'unicode\xc2\xb5\n' # u'\xb5'.encode('utf8')
33
                'dos\r\n'
34
                '\n' # empty line
35
                '#comment\n'
36
                ' xx \n' # whitespace
4948.5.4 by John Whitley
bzrlib.globbing.normalize_pattern needed fix to avoid mangling ignore
37
                '!RE:^\.z.*\n'
4948.5.6 by John Whitley
A trial implementation of '!!' syntax for double-negative ignore exclusions.
38
                '!!./.zcompdump\n'
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
39
                ))
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
40
        self.assertEqual(set(['./rootdir',
1836.1.25 by John Arbash Meinel
cleanups suggested by Martin.
41
                          'randomfile*',
42
                          'path/from/ro?t',
43
                          u'unicode\xb5',
44
                          'dos',
45
                          ' xx ',
4948.5.4 by John Whitley
bzrlib.globbing.normalize_pattern needed fix to avoid mangling ignore
46
                          '!RE:^\.z.*',
4948.5.6 by John Whitley
A trial implementation of '!!' syntax for double-negative ignore exclusions.
47
                          '!!./.zcompdump',
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
48
                         ]), ignored)
1836.1.25 by John Arbash Meinel
cleanups suggested by Martin.
49
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
50
    def test_parse_empty(self):
51
        ignored = ignores.parse_ignore_file(StringIO(''))
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
52
        self.assertEqual(set([]), ignored)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
53
54
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
55
class TestUserIgnores(TestCaseInTempDir):
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
56
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
57
    def test_create_if_missing(self):
58
        # $HOME should be set to '.'
59
        ignore_path = config.user_ignore_config_filename()
60
        self.failIfExists(ignore_path)
61
        user_ignores = ignores.get_user_ignores()
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
62
        self.assertEqual(set(ignores.USER_DEFAULTS), user_ignores)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
63
64
        self.failUnlessExists(ignore_path)
65
        f = open(ignore_path, 'rb')
66
        try:
67
            entries = ignores.parse_ignore_file(f)
68
        finally:
69
            f.close()
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
70
        self.assertEqual(set(ignores.USER_DEFAULTS), entries)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
71
72
    def test_use_existing(self):
73
        patterns = ['*.o', '*.py[co]', u'\xe5*']
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
74
        ignores._set_user_ignores(patterns)
1836.1.13 by John Arbash Meinel
Adding functions for getting user ignores.
75
76
        user_ignores = ignores.get_user_ignores()
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
77
        self.assertEqual(set(patterns), user_ignores)
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
78
79
    def test_use_empty(self):
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
80
        ignores._set_user_ignores([])
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
81
        ignore_path = config.user_ignore_config_filename()
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
82
        self.check_file_contents(ignore_path, '')
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
83
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
84
        self.assertEqual(set([]), ignores.get_user_ignores())
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
85
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
86
    def test_set(self):
87
        patterns = ['*.py[co]', '*.py[oc]']
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
88
        ignores._set_user_ignores(patterns)
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
89
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
90
        self.assertEqual(set(patterns), ignores.get_user_ignores())
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
91
92
        patterns = ['vim', '*.swp']
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
93
        ignores._set_user_ignores(patterns)
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
94
        self.assertEqual(set(patterns), ignores.get_user_ignores())
1836.1.15 by John Arbash Meinel
Updated WorkingTree to use the new user-level ignores.
95
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
96
    def test_add(self):
97
        """Test that adding will not duplicate ignores"""
98
        # Create an empty file
1836.1.31 by John Arbash Meinel
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.
99
        ignores._set_user_ignores([])
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
100
101
        patterns = ['foo', './bar', u'b\xe5z']
102
        added = ignores.add_unique_user_ignores(patterns)
103
        self.assertEqual(patterns, added)
1836.1.30 by John Arbash Meinel
Change ignore functions to use sets instead of lists.
104
        self.assertEqual(set(patterns), ignores.get_user_ignores())
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
105
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
106
    def test_add_directory(self):
107
        """Test that adding a directory will strip any trailing slash"""
108
        # Create an empty file
109
        ignores._set_user_ignores([])
110
2298.8.3 by Kent Gibson
Extended test cases to test bug 86451.
111
        in_patterns = ['foo/', 'bar/', 'baz\\']
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
112
        added = ignores.add_unique_user_ignores(in_patterns)
2298.8.3 by Kent Gibson
Extended test cases to test bug 86451.
113
        out_patterns = [ x.rstrip('/\\') for x in in_patterns ]
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
114
        self.assertEqual(out_patterns, added)
115
        self.assertEqual(set(out_patterns), ignores.get_user_ignores())
116
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
117
    def test_add_unique(self):
118
        """Test that adding will not duplicate ignores"""
2298.8.3 by Kent Gibson
Extended test cases to test bug 86451.
119
        ignores._set_user_ignores(
120
            ['foo', './bar', u'b\xe5z', 'dir1/', 'dir3\\'])
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
121
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
122
        added = ignores.add_unique_user_ignores(
2298.8.3 by Kent Gibson
Extended test cases to test bug 86451.
123
            ['xxx', './bar', 'xxx', 'dir1/', 'dir2/', 'dir3\\'])
2077.1.2 by Kent Gibson
Strip trailing slashes from ignore patterns (#4559).
124
        self.assertEqual(['xxx', 'dir2'], added)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
125
        self.assertEqual(set(['foo', './bar', u'b\xe5z',
2298.8.3 by Kent Gibson
Extended test cases to test bug 86451.
126
                              'xxx', 'dir1', 'dir2', 'dir3']),
1836.1.14 by John Arbash Meinel
Adding a helper function that will only add patterns if they are missing.
127
                         ignores.get_user_ignores())
1836.1.28 by John Arbash Meinel
Add a function for adding runtime ignores.
128
129
130
class TestRuntimeIgnores(TestCase):
131
132
    def setUp(self):
133
        TestCase.setUp(self)
134
135
        orig = ignores._runtime_ignores
136
        def restore():
137
            ignores._runtime_ignores = orig
138
        self.addCleanup(restore)
139
        # For the purposes of these tests, we must have no
140
        # runtime ignores
141
        ignores._runtime_ignores = set()
142
143
    def test_add(self):
144
        """Test that we can add an entry to the list."""
145
        self.assertEqual(set(), ignores.get_runtime_ignores())
146
147
        ignores.add_runtime_ignores(['foo'])
148
        self.assertEqual(set(['foo']), ignores.get_runtime_ignores())
149
150
    def test_add_duplicate(self):
151
        """Adding the same ignore twice shouldn't add a new entry."""
152
        ignores.add_runtime_ignores(['foo', 'bar'])
153
        self.assertEqual(set(['foo', 'bar']), ignores.get_runtime_ignores())
154
155
        ignores.add_runtime_ignores(['bar'])
156
        self.assertEqual(set(['foo', 'bar']), ignores.get_runtime_ignores())
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
157
158
159
class TestTreeIgnores(TestCaseWithTransport):
160
161
    def test_new_file(self):
162
        tree = self.make_branch_and_tree(".")
163
        ignores.tree_ignores_add_patterns(tree, ["myentry"])
164
        self.assertTrue(tree.has_filename(".bzrignore"))
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
165
        self.assertEquals("myentry\n",
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
166
                          open(".bzrignore", 'r').read())
167
168
    def test_add_to_existing(self):
169
        tree = self.make_branch_and_tree(".")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
170
        self.build_tree_contents([('.bzrignore', "myentry1\n")])
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
171
        tree.add([".bzrignore"])
172
        ignores.tree_ignores_add_patterns(tree, ["myentry2", "foo"])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
173
        self.assertEquals("myentry1\nmyentry2\nfoo\n",
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
174
                          open(".bzrignore", 'r').read())
175
176
    def test_adds_ending_newline(self):
177
        tree = self.make_branch_and_tree(".")
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
178
        self.build_tree_contents([('.bzrignore', "myentry1")])
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
179
        tree.add([".bzrignore"])
180
        ignores.tree_ignores_add_patterns(tree, ["myentry2"])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
181
        self.assertEquals("myentry1\nmyentry2\n",
3528.2.1 by Jelmer Vernooij
Move functionality to add ignores to the ignore file into a separate function.
182
                          open(".bzrignore", 'r').read())
183