~cjwatson/difftacular/py3

« back to all changes in this revision

Viewing changes to tests/test_generate_diff.py

  • Committer: Aaron Bentley
  • Date: 2010-07-13 16:19:05 UTC
  • Revision ID: aaron@aaronbentley.com-20100713161905-nq0el177lclqn0h9
Implement mergeless diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2010 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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
from StringIO import StringIO
 
19
 
 
20
from bzrlib.plugins.difftacular import generate_diff
 
21
from bzrlib import tests
 
22
 
 
23
 
 
24
class TestMainlineDiff(tests.TestCaseWithTransport):
 
25
 
 
26
    def create_diff_scenario(self):
 
27
        foo = self.make_branch_and_tree('foo')
 
28
        foo.lock_write()
 
29
        self.addCleanup(foo.unlock)
 
30
        self.build_tree_contents([('foo/baz', 'a\n')])
 
31
        foo.add('baz')
 
32
        rev1 = foo.commit('initial commit')
 
33
        bar = foo.bzrdir.sprout('bar').open_workingtree()
 
34
        self.build_tree_contents([('bar/baz', 'c\na\n')])
 
35
        bar.commit('add c')
 
36
        foo.merge_from_branch(bar.branch)
 
37
        rev2 = foo.commit('merge')
 
38
        self.build_tree_contents([('foo/baz', 'c\na\nb\n')])
 
39
        rev3 = foo.commit('add b')
 
40
        return foo, rev1, rev2, rev3
 
41
 
 
42
    def test_mainline_diff(self):
 
43
        foo, rev1, rev2, rev3 = self.create_diff_scenario()
 
44
        s = StringIO()
 
45
        generate_diff.mainline_diff(foo.branch, rev1, rev3, s)
 
46
        self.assertContainsRe(s.getvalue(), '\+b')
 
47
        self.assertContainsRe(s.getvalue(), ' a')
 
48
        self.assertNotContainsRe(s.getvalue(), '\+c')
 
49
 
 
50
    def test_merges(self):
 
51
        foo, rev1, rev2, rev3 = self.create_diff_scenario()
 
52
        self.assertEqual([(rev1, rev2)], list(
 
53
            generate_diff.merges(foo.branch.repository, rev1, rev3)))