/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_roundtrip.py

  • Committer: Martin Pool
  • Date: 2005-08-24 08:59:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050824085932-c61f1f1f1c930e13
- Add a simple UIFactory 

  The idea of this is to let a client of bzrlib set some 
  policy about how output is displayed.

  In this revision all that's done is that progress bars
  are constructed by a policy established by the application
  rather than being randomly constructed in the library 
  or passed down the calls.  This avoids progress bars
  popping up while running the test suite and cleans up
  some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org>
2
 
# -*- encoding: utf-8 -*-
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 
18
 
 
19
 
"""Tests for roundtripping text parsing."""
20
 
 
21
 
 
22
 
from bzrlib.tests import TestCase
23
 
 
24
 
from bzrlib.plugins.git.roundtrip import (
25
 
    BzrGitRevisionMetadata,
26
 
    deserialize_fileid_map,
27
 
    extract_bzr_metadata,
28
 
    generate_roundtripping_metadata,
29
 
    inject_bzr_metadata,
30
 
    parse_roundtripping_metadata,
31
 
    serialize_fileid_map,
32
 
    )
33
 
 
34
 
 
35
 
class RoundtripTests(TestCase):
36
 
 
37
 
    def test_revid(self):
38
 
        md = parse_roundtripping_metadata("revision-id: foo\n")
39
 
        self.assertEquals("foo", md.revision_id)
40
 
 
41
 
    def test_parent_ids(self):
42
 
        md = parse_roundtripping_metadata("parent-ids: foo bar\n")
43
 
        self.assertEquals(("foo", "bar"), md.explicit_parent_ids)
44
 
 
45
 
    def test_properties(self):
46
 
        md = parse_roundtripping_metadata("property-foop: blar\n")
47
 
        self.assertEquals({"foop": "blar"}, md.properties)
48
 
 
49
 
 
50
 
class FormatTests(TestCase):
51
 
 
52
 
    def test_revid(self):
53
 
        metadata = BzrGitRevisionMetadata()
54
 
        metadata.revision_id = "bla"
55
 
        self.assertEquals("revision-id: bla\n",
56
 
            generate_roundtripping_metadata(metadata, "utf-8"))
57
 
 
58
 
    def test_parent_ids(self):
59
 
        metadata = BzrGitRevisionMetadata()
60
 
        metadata.explicit_parent_ids = ("foo", "bar")
61
 
        self.assertEquals("parent-ids: foo bar\n",
62
 
            generate_roundtripping_metadata(metadata, "utf-8"))
63
 
 
64
 
    def test_properties(self):
65
 
        metadata = BzrGitRevisionMetadata()
66
 
        metadata.properties = {"foo": "bar"}
67
 
        self.assertEquals("property-foo: bar\n",
68
 
            generate_roundtripping_metadata(metadata, "utf-8"))
69
 
 
70
 
    def test_empty(self):
71
 
        metadata = BzrGitRevisionMetadata()
72
 
        self.assertEquals("",
73
 
            generate_roundtripping_metadata(metadata, "utf-8"))
74
 
 
75
 
 
76
 
class ExtractMetadataTests(TestCase):
77
 
 
78
 
    def test_roundtrip(self):
79
 
        (msg, metadata) = extract_bzr_metadata("""Foo
80
 
--BZR--
81
 
revision-id: foo
82
 
""")
83
 
        self.assertEquals("Foo", msg)
84
 
        self.assertEquals("foo", metadata.revision_id)
85
 
 
86
 
 
87
 
class GenerateMetadataTests(TestCase):
88
 
 
89
 
    def test_roundtrip(self):
90
 
        metadata = BzrGitRevisionMetadata()
91
 
        metadata.revision_id = "myrevid"
92
 
        msg = inject_bzr_metadata("Foo", metadata, "utf-8")
93
 
        self.assertEquals("""Foo
94
 
--BZR--
95
 
revision-id: myrevid
96
 
""", msg)
97
 
 
98
 
    def test_no_metadata(self):
99
 
        metadata = BzrGitRevisionMetadata()
100
 
        msg = inject_bzr_metadata("Foo", metadata, "utf-8")
101
 
        self.assertEquals("Foo", msg)
102
 
 
103
 
 
104
 
class FileIdRoundTripTests(TestCase):
105
 
 
106
 
    def test_deserialize(self):
107
 
        self.assertEquals({"bar/bla": "fid"},
108
 
            deserialize_fileid_map("bar/bla\0fid\n"))
109
 
 
110
 
    def test_serialize(self):
111
 
        self.assertEquals(["bar/bla\0fid\n"],
112
 
            serialize_fileid_map({"bar/bla": "fid"}))
113