/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1852.16.5 by John Arbash Meinel
[merge] bzr.dev 2255, resolve conflicts, update copyrights
1
# Copyright (C) 2006, 2007 Canonical Ltd
1852.15.5 by Robert Collins
Add missing test_walkdirs test file.
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
1852.15.5 by Robert Collins
Add missing test_walkdirs test file.
16
17
"""Tests for the generic Tree.walkdirs interface."""
18
3363.9.10 by Aaron Bentley
Handle dangling file-ids correctly
19
import os
20
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
21
from breezy import tests
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
22
from breezy.mutabletree import MutableTree
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
23
from breezy.osutils import has_symlinks
24
from breezy.tests.per_tree import TestCaseWithTree
1852.15.5 by Robert Collins
Add missing test_walkdirs test file.
25
26
27
class TestWalkdirs(TestCaseWithTree):
28
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
29
    def get_all_subdirs_expected(self, tree, symlinks):
7143.15.2 by Jelmer Vernooij
Run autopep8.
30
        empty_dirs_present = (tree.has_versioned_directories()
31
                              or isinstance(tree, MutableTree))
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
32
        empty_dirs_are_versioned = tree.has_versioned_directories()
33
        dirblocks = {}
34
35
        dirblocks[''] = [
36
            ('0file', '0file', 'file', None,
37
                tree.path2id('0file'), 'file'),
38
            ('1top-dir', '1top-dir', 'directory', None,
39
                tree.path2id('1top-dir'), 'directory'),
40
            (u'2utf\u1234file', u'2utf\u1234file', 'file', None,
41
                tree.path2id(u'2utf\u1234file'), 'file')]
42
43
        dirblocks['1top-dir'] = [
44
            ('1top-dir/0file-in-1topdir', '0file-in-1topdir',
7143.15.2 by Jelmer Vernooij
Run autopep8.
45
             'file', None, tree.path2id('1top-dir/0file-in-1topdir'), 'file')]
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
46
        if empty_dirs_present:
47
            dirblocks['1top-dir'].append(
7143.15.2 by Jelmer Vernooij
Run autopep8.
48
                ('1top-dir/1dir-in-1topdir', '1dir-in-1topdir', 'directory',
49
                 None if empty_dirs_are_versioned else os.stat(
50
                     tree.abspath('1top-dir/1dir-in-1topdir')),
51
                 tree.path2id('1top-dir/1dir-in-1topdir'),
52
                 'directory' if empty_dirs_are_versioned else None))
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
53
            dirblocks['1top-dir/1dir-in-1topdir'] = []
2408.1.3 by Alexander Belchenko
tree_implementations: make usage of symlinks optional
54
        if symlinks:
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
55
            dirblocks[''].append(
56
                ('symlink', 'symlink', 'symlink', None,
57
                 tree.path2id('symlink'), 'symlink'))
58
        return [((path, tree.path2id(path)), list(sorted(entries)))
7116.1.1 by Jelmer Vernooij
Sort walkdir items.
59
                for (path, entries) in sorted(dirblocks.items())]
1852.15.10 by Robert Collins
Tweak the Tree.walkdirs interface more to be more useful.
60
1852.15.5 by Robert Collins
Add missing test_walkdirs test file.
61
    def test_walkdir_root(self):
4285.2.1 by Vincent Ladeuil
Cleanup test imports and use features to better track skipped tests.
62
        tree = self.get_tree_with_subdirs_and_all_supported_content_types(
63
            has_symlinks())
2255.2.84 by John Arbash Meinel
Remove now-unecessary encode/decode calls for revision ids.
64
        tree.lock_read()
7096.3.6 by Jelmer Vernooij
Fix tests, on python 2 at least.
65
        expected_dirblocks = self.get_all_subdirs_expected(
66
            tree, has_symlinks())
1852.15.5 by Robert Collins
Add missing test_walkdirs test file.
67
        # test that its iterable by iterating
68
        result = []
1852.15.7 by Robert Collins
Start testing behaviour of unknowns in WorkingTree.walkdirs.
69
        for dirinfo, block in tree.walkdirs():
70
            newblock = []
71
            for row in block:
72
                if row[4] is not None:
73
                    newblock.append(row[0:3] + (None,) + row[4:])
74
                else:
75
                    newblock.append(row)
76
            result.append((dirinfo, newblock))
2255.2.18 by Robert Collins
Dirstate: all tree_implementation tests passing.
77
        tree.unlock()
1852.15.7 by Robert Collins
Start testing behaviour of unknowns in WorkingTree.walkdirs.
78
        # check each return value for debugging ease.
79
        for pos, item in enumerate(expected_dirblocks):
80
            self.assertEqual(item, result[pos])
1852.15.11 by Robert Collins
Tree.walkdirs handles missing contents in workingtrees.
81
        self.assertEqual(len(expected_dirblocks), len(result))
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
82
1852.15.10 by Robert Collins
Tweak the Tree.walkdirs interface more to be more useful.
83
    def test_walkdir_subtree(self):
6772.2.1 by Jelmer Vernooij
Avoid setting file ids in a few more cases.
84
        tree = self.get_tree_with_subdirs_and_all_supported_content_types(
7143.15.2 by Jelmer Vernooij
Run autopep8.
85
            has_symlinks())
2255.2.84 by John Arbash Meinel
Remove now-unecessary encode/decode calls for revision ids.
86
        # test that its iterable by iterating
87
        result = []
88
        tree.lock_read()
6772.2.1 by Jelmer Vernooij
Avoid setting file ids in a few more cases.
89
        expected_dirblocks = self.get_all_subdirs_expected(
7143.15.2 by Jelmer Vernooij
Run autopep8.
90
            tree, has_symlinks())[1:]
1852.15.10 by Robert Collins
Tweak the Tree.walkdirs interface more to be more useful.
91
        for dirinfo, block in tree.walkdirs('1top-dir'):
92
            newblock = []
93
            for row in block:
94
                if row[4] is not None:
95
                    newblock.append(row[0:3] + (None,) + row[4:])
96
                else:
97
                    newblock.append(row)
98
            result.append((dirinfo, newblock))
2255.2.18 by Robert Collins
Dirstate: all tree_implementation tests passing.
99
        tree.unlock()
1852.15.10 by Robert Collins
Tweak the Tree.walkdirs interface more to be more useful.
100
        # check each return value for debugging ease.
101
        for pos, item in enumerate(expected_dirblocks):
102
            self.assertEqual(item, result[pos])
1852.15.11 by Robert Collins
Tree.walkdirs handles missing contents in workingtrees.
103
        self.assertEqual(len(expected_dirblocks), len(result))
3363.9.10 by Aaron Bentley
Handle dangling file-ids correctly
104
105
    def test_walkdir_versioned_kind(self):
106
        work_tree = self.make_branch_and_tree('tree')
107
        self.build_tree(['tree/file', 'tree/dir/'])
6772.2.1 by Jelmer Vernooij
Avoid setting file ids in a few more cases.
108
        work_tree.add(['file', 'dir'])
109
        file_id = work_tree.path2id('file')
110
        dir_id = work_tree.path2id('dir')
3363.9.10 by Aaron Bentley
Handle dangling file-ids correctly
111
        os.unlink('tree/file')
112
        os.rmdir('tree/dir')
113
        tree = self._convert_tree(work_tree)
114
        tree.lock_read()
115
        self.addCleanup(tree.unlock)
116
        if tree.path2id('file') is None:
117
            raise tests.TestNotApplicable(
118
                'Tree type cannot represent dangling ids.')
6862.5.1 by Jelmer Vernooij
Fix walkdirs tests for formats without versioned directories.
119
        expected = [(('', work_tree.path2id('')), ([
120
            ('dir', 'dir', 'unknown', None, dir_id, 'directory')]
121
            if tree.has_versioned_directories() else []) +
122
            [('file', 'file', 'unknown', None, file_id, 'file')])]
123
        if tree.has_versioned_directories():
124
            expected.append((('dir', dir_id), []))
3363.9.10 by Aaron Bentley
Handle dangling file-ids correctly
125
        self.assertEqual(expected, list(tree.walkdirs()))