~bzr-pqm/bzr/bzr.dev

3172.3.1 by Robert Collins
Repository has a new method ``has_revisions`` which signals the presence
1
# Copyright (C) 2008 Canonical Ltd
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
3172.3.1 by Robert Collins
Repository has a new method ``has_revisions`` which signals the presence
16
17
"""Tests for implementations of Repository.has_revisions."""
18
19
from bzrlib.revision import NULL_REVISION
3689.1.1 by John Arbash Meinel
Rename repository_implementations tests into per_repository tests
20
from bzrlib.tests.per_repository import TestCaseWithRepository
3172.3.1 by Robert Collins
Repository has a new method ``has_revisions`` which signals the presence
21
22
23
class TestHasRevisions(TestCaseWithRepository):
24
25
    def test_empty_list(self):
26
        repo = self.make_repository('.')
27
        self.assertEqual(set(), repo.has_revisions([]))
28
29
    def test_superset(self):
30
        tree = self.make_branch_and_tree('.')
31
        repo = tree.branch.repository
32
        rev1 = tree.commit('1')
33
        rev2 = tree.commit('2')
34
        rev3 = tree.commit('3')
35
        self.assertEqual(set([rev1, rev3]),
36
            repo.has_revisions([rev1, rev3, 'foobar:']))
37
38
    def test_NULL(self):
39
        # NULL_REVISION is always present. So for
40
        # compatibility with 'has_revision' we make this work.
41
        repo = self.make_repository('.')
42
        self.assertEqual(set([NULL_REVISION]),
43
            repo.has_revisions([NULL_REVISION]))