~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_matchers.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-16 11:13:47 UTC
  • mto: This revision was merged to the branch mainline in revision 6144.
  • Revision ID: jriddell@canonical.com-20110916111347-fyjk426bkl0jrbfu
gettext() show_warning usage

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
            "mismatched ancestry for revision '%s' was ['%s'], expected []" % (
105
105
                revid1, revid1),
106
106
            mismatch.describe())
 
107
 
 
108
 
 
109
class TestHasLayout(TestCaseWithTransport):
 
110
 
 
111
    def test__str__(self):
 
112
        matcher = HasLayout([("a", "a-id")])
 
113
        self.assertEqual("HasLayout([('a', 'a-id')])", str(matcher))
 
114
 
 
115
    def test_match(self):
 
116
        t = self.make_branch_and_tree('.')
 
117
        self.build_tree(['a', 'b/', 'b/c'])
 
118
        t.add(['a', 'b', 'b/c'], ['a-id', 'b-id', 'c-id'])
 
119
        self.assertThat(t, HasLayout(['', 'a', 'b/', 'b/c']))
 
120
        self.assertThat(t, HasLayout(
 
121
            [('', t.get_root_id()),
 
122
             ('a', 'a-id'),
 
123
             ('b/', 'b-id'),
 
124
             ('b/c', 'c-id')]))
 
125
 
 
126
    def test_mismatch(self):
 
127
        t = self.make_branch_and_tree('.')
 
128
        self.build_tree(['a', 'b/', 'b/c'])
 
129
        t.add(['a', 'b', 'b/c'], ['a-id', 'b-id', 'c-id'])
 
130
        mismatch = HasLayout(['a']).match(t)
 
131
        self.assertIsNot(None, mismatch)
 
132
        self.assertEquals(
 
133
            "['a'] != [u'', u'a', u'b/', u'b/c']",
 
134
            mismatch.describe())
 
135
 
 
136
    def test_no_dirs(self):
 
137
        # Some tree/repository formats do not support versioned directories
 
138
        t = self.make_branch_and_tree('.')
 
139
        t.has_versioned_directories = lambda: False
 
140
        self.build_tree(['a', 'b/', 'b/c'])
 
141
        t.add(['a', 'b', 'b/c'], ['a-id', 'b-id', 'c-id'])
 
142
        self.assertIs(None, HasLayout(['', 'a', 'b/', 'b/c']).match(t))
 
143
        self.assertIs(None, HasLayout(['', 'a', 'b/', 'b/c', 'd/']).match(t))
 
144
        mismatch = HasLayout([u'', u'a', u'd/']).match(t)
 
145
        self.assertIsNot(None, mismatch)
 
146
        self.assertEquals(
 
147
            "[u'', u'a'] != [u'', u'a', u'b/', u'b/c']",
 
148
            mismatch.describe())