~abentley/bzrtools/bzrtools.dev

621 by Aaron Bentley
Implement link_tree function
1
# Copyright (C) 2008 Aaron Bentley
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
15
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
import os
18
19
from bzrlib.transform import TreeTransform
631.1.1 by Alexander Belchenko
properly using HardlinkFeature in tests.
20
from bzrlib.tests import TestCaseWithTransport, HardlinkFeature
621 by Aaron Bentley
Implement link_tree function
21
730.1.5 by Aaron Bentley
Disable version check for commands run in the test suite.
22
from bzrlib.plugins.bzrtools import command
621 by Aaron Bentley
Implement link_tree function
23
from bzrlib.plugins.bzrtools.link_tree import link_tree
24
622 by Aaron Bentley
Add link-tree command
25
26
class TestLinkTreeBase(object):
621 by Aaron Bentley
Implement link_tree function
27
636 by Aaron Bentley
Simplify hardlink feature use
28
    _test_needs_features = [HardlinkFeature]
29
621 by Aaron Bentley
Implement link_tree function
30
    def setUp(self):
31
        TestCaseWithTransport.setUp(self)
32
        self.parent_tree = self.make_branch_and_tree('parent')
33
        self.parent_tree.lock_write()
34
        self.addCleanup(self.parent_tree.unlock)
35
        self.build_tree_contents([('parent/foo', 'bar')])
36
        self.parent_tree.add('foo', 'foo-id')
37
        self.parent_tree.commit('added foo')
38
        child_bzrdir = self.parent_tree.bzrdir.sprout('child')
39
        self.child_tree = child_bzrdir.open_workingtree()
40
41
    def hardlinked(self):
42
        parent_stat = os.lstat(self.parent_tree.abspath('foo'))
43
        child_stat = os.lstat(self.child_tree.abspath('foo'))
44
        return parent_stat.st_ino == child_stat.st_ino
45
622 by Aaron Bentley
Add link-tree command
46
47
class TestLinkTree(TestLinkTreeBase, TestCaseWithTransport):
48
621 by Aaron Bentley
Implement link_tree function
49
    def test_link_fails_if_modified(self):
50
        """If the file to be linked has modified text, don't link."""
51
        self.build_tree_contents([('child/foo', 'baz')])
52
        link_tree(self.child_tree, self.parent_tree)
53
        self.assertFalse(self.hardlinked())
54
55
    def test_link_fails_if_execute_bit_changed(self):
56
        """If the file to be linked has modified execute bit, don't link."""
57
        tt = TreeTransform(self.child_tree)
58
        try:
59
            trans_id = tt.trans_id_tree_file_id('foo-id')
60
            tt.set_executability(True, trans_id)
61
            tt.apply()
62
        finally:
63
            tt.finalize()
64
        link_tree(self.child_tree, self.parent_tree)
65
        self.assertFalse(self.hardlinked())
66
67
    def test_link_succeeds_if_unmodified(self):
68
        """If the file to be linked is unmodified, link"""
69
        link_tree(self.child_tree, self.parent_tree)
70
        self.assertTrue(self.hardlinked())
622 by Aaron Bentley
Add link-tree command
71
72
73
class TestLinkTreeCommand(TestLinkTreeBase, TestCaseWithTransport):
74
75
    def test_link_tree(self):
76
        """Ensure the command works as intended"""
730.1.5 by Aaron Bentley
Disable version check for commands run in the test suite.
77
        command._testing = True
78
        try:
79
            os.chdir('child')
80
            self.parent_tree.unlock()
81
            self.run_bzr('link-tree ../parent')
82
            self.assertTrue(self.hardlinked())
83
            # want teh addCleanup to work properly
84
            self.parent_tree.lock_write()
85
        finally:
86
            command._testing = False