1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Copyright (C) 2006 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Black-box tests for 'bzr inventory'."""
import os
from bzrlib.tests import TestCaseWithTransport
class TestInventory(TestCaseWithTransport):
def setUp(self):
super(TestInventory, self).setUp()
tree = self.make_branch_and_tree('.')
self.build_tree(['a', 'b/', 'b/c'])
tree.add(['a', 'b', 'b/c'], ['a-id', 'b-id', 'c-id'])
tree.commit('init', rev_id='one')
self.tree = tree
def assertInventoryEqual(self, expected, args=None, **kwargs):
"""Test that the output of 'bzr inventory' is as expected.
Any arguments supplied will be passed to run_bzr.
"""
command = 'inventory'
if args is not None:
command += ' ' + args
out, err = self.run_bzr(command, **kwargs)
self.assertEqual(expected, out)
self.assertEqual('', err)
def test_inventory(self):
self.assertInventoryEqual('a\nb\nb/c\n')
def test_inventory_kind(self):
self.assertInventoryEqual('a\nb/c\n', '--kind file')
self.assertInventoryEqual('b\n', '--kind directory')
def test_inventory_show_ids(self):
expected = ''.join(('%-50s %s\n' % (path, file_id))
for path, file_id in
[('a', 'a-id'),
('b', 'b-id'),
('b/c', 'c-id')
]
)
self.assertInventoryEqual(expected, '--show-ids')
def test_inventory_specific_files(self):
self.assertInventoryEqual('a\n', 'a')
self.assertInventoryEqual('b\nb/c\n', 'b b/c')
# 'bzr inventory' recurses into subdirectories
self.assertInventoryEqual('b\nb/c\n', 'b')
def test_inventory_mixed(self):
"""Test that we get expected results when mixing parameters"""
a_line = '%-50s %s\n' % ('a', 'a-id')
b_line = '%-50s %s\n' % ('b', 'b-id')
c_line = '%-50s %s\n' % ('b/c', 'c-id')
self.assertInventoryEqual('', '--kind directory a')
self.assertInventoryEqual(a_line + c_line, '--kind file --show-ids')
self.assertInventoryEqual(c_line, '--kind file --show-ids b b/c')
def test_in_subdir(self):
os.chdir('b')
# TODO: jam 20060922 Maybe inventory should return the paths as
# relative to '.', rather than relative to root
# a plain 'inventory' returns all files
self.assertInventoryEqual('a\nb\nb/c\n')
# But passing '.' will only return paths underneath here
self.assertInventoryEqual('b\nb/c\n', '.')
def test_inventory_revision(self):
self.build_tree(['b/d', 'e'])
self.tree.add(['b/d', 'e'], ['d-id', 'e-id'])
self.tree.commit('add files')
self.tree.rename_one('b/d', 'd')
self.tree.commit('rename b/d => d')
# Passing just -r returns the inventory of that revision
self.assertInventoryEqual('a\nb\nb/c\n', '-r 1')
self.assertInventoryEqual('a\nb\nb/c\nb/d\ne\n', '-r 2')
# Passing a path will lookup the path in the old and current locations
self.assertInventoryEqual('b/d\n', '-r 2 b/d')
self.assertInventoryEqual('b/d\n', '-r 2 d')
self.tree.rename_one('e', 'b/e')
self.tree.commit('rename e => b/e')
# When supplying just a directory paths that are now,
# or used to be, in that directory are shown
self.assertInventoryEqual('b\nb/c\nb/d\ne\n', '-r 2 b')
def test_missing_file(self):
self.run_bzr_error([r'Path\(s\) are not versioned: no-such-file'],
'inventory no-such-file')
|