~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/test_rspush.py

  • Committer: Aaron Bentley
  • Date: 2007-12-21 04:23:49 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20071221042349-9sfpmuzu1g1rdshe
Rename from-files to files-from, to match bzr proper

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
 
import os
19
 
 
20
18
from bzrlib.bzrdir import BzrDir
21
 
from bzrlib.tests import TestCaseWithTransport, TestSkipped
 
19
from bzrlib.tests import TestCaseWithTransport
22
20
 
23
 
from bzrlib.plugins.bzrtools.bzrtools import (
24
 
    history_subset,
25
 
    NoRsync,
26
 
    NotStandalone,
27
 
    rspush,
28
 
    rsync,
29
 
    RsyncNoFile,
30
 
)
 
21
from bzrlib.plugins.bzrtools.bzrtools import rspush, NotStandalone
31
22
 
32
23
 
33
24
class MockRSync(object):
44
35
 
45
36
class TestRSPush(TestCaseWithTransport):
46
37
 
47
 
    def test_rsync(self):
48
 
        cwd = os.getcwd()
49
 
        try:
50
 
            self.assertRaises(RsyncNoFile, rsync, "a", "b", silent=True)
51
 
        except NoRsync:
52
 
            raise TestSkipped('rsync not installed')
53
 
        self.assertRaises(RsyncNoFile, rsync, cwd + "/a", cwd + "/b",
54
 
                          excludes=("*.py",), silent=True)
55
 
        self.assertRaises(NoRsync, rsync, cwd + "/a", cwd + "/b",
56
 
                          excludes=("*.py",), silent=True,
57
 
                          rsync_name="rsyncc")
58
 
 
59
38
    def test_rspush_locking(self):
60
39
        tree = self.make_branch_and_tree('tree', format='dirstate-tags')
61
40
        tree.commit('some changes')
72
51
        checkout = branch.create_checkout('checkout', lightweight=True)
73
52
        checkout.commit('some changes')
74
53
        mock_rsync = MockRSync()
75
 
        e = self.assertRaises(NotStandalone, rspush, checkout,
76
 
                              'example.org:foo', _rsync=mock_rsync)
77
 
        self.assertContainsRe(str(e), '/checkout/ is not a standalone tree.$')
 
54
        self.assertRaises(NotStandalone, rspush, checkout, 'example.org:foo',
 
55
                          _rsync=mock_rsync)
78
56
 
79
57
    def test_refuse_checkout(self):
80
58
        branch = self.make_branch('tree')
94
72
        mock_rsync = MockRSync()
95
73
        self.assertRaises(NotStandalone, rspush, tree, 'example.org:foo',
96
74
                          _rsync=mock_rsync)
97
 
 
98
 
    def do_history_subset(self, format):
99
 
        tree_a = self.make_branch_and_tree('tree_a', format=format)
100
 
        tree_a.lock_write()
101
 
        self.addCleanup(tree_a.unlock)
102
 
        tree_a.commit('foo')
103
 
        tree_b = tree_a.bzrdir.sprout('tree_b').open_workingtree()
104
 
        tree_a.commit('bar')
105
 
        try:
106
 
            self.assertTrue(history_subset('tree_b/', tree_a.branch))
107
 
        except NoRsync:
108
 
            raise TestSkipped('rsync not installed')
109
 
        self.assertFalse(history_subset('tree_a/', tree_b.branch))
110
 
 
111
 
    def do_history_subset_no_commits(self, format):
112
 
        tree_a = self.make_branch_and_tree('tree_a', format=format)
113
 
        tree_b = self.make_branch_and_tree('tree_b', format=format)
114
 
        try:
115
 
            self.assertTrue(history_subset('tree_b/', tree_a.branch))
116
 
        except NoRsync:
117
 
            raise TestSkipped('rsync not installed')
118
 
 
119
 
    def test_history_subset_dirstate(self):
120
 
        self.do_history_subset('dirstate')
121
 
 
122
 
    def test_history_subset_no_commits_dirstate(self):
123
 
        self.do_history_subset_no_commits('dirstate')
124
 
 
125
 
    def test_history_subset_pack(self):
126
 
        self.do_history_subset('pack-0.92')
127
 
 
128
 
    def test_history_subset_no_commits_pack(self):
129
 
        self.do_history_subset_no_commits('pack-0.92')