2052.3.2
by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical |
1 |
# Copyright (C) 2005 Canonical Ltd
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
2 |
#
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
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.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
7 |
#
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
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.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
12 |
#
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
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
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
16 |
|
17 |
from cStringIO import StringIO |
|
18 |
||
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
19 |
from bzrlib import ( |
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
20 |
errors, |
21 |
inventory, |
|
4476.3.27
by Andrew Bennetts
Trivial improvement to test coverage in test_xml. |
22 |
xml6, |
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
23 |
xml7, |
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
24 |
xml8, |
4237.3.1
by Jelmer Vernooij
Add new module with generic serializer information; keep XML-specific bits in |
25 |
serializer, |
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
26 |
)
|
1185.31.25
by John Arbash Meinel
Renamed all of the tests from selftest/foo.py to tests/test_foo.py |
27 |
from bzrlib.tests import TestCase |
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
28 |
from bzrlib.inventory import Inventory, InventoryEntry |
1304
by Martin Pool
- fix up imports of serializer_v4 |
29 |
from bzrlib.xml4 import serializer_v4 |
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
30 |
import bzrlib.xml5 |
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
31 |
|
32 |
_working_inventory_v4 = """<inventory file_id="TREE_ROOT"> |
|
33 |
<entry file_id="bar-20050901064931-73b4b1138abc9cd2" kind="file" name="bar" parent_id="TREE_ROOT" />
|
|
34 |
<entry file_id="foo-20050801201819-4139aa4a272f4250" kind="directory" name="foo" parent_id="TREE_ROOT" />
|
|
35 |
<entry file_id="bar-20050824000535-6bc48cfad47ed134" kind="file" name="bar" parent_id="foo-20050801201819-4139aa4a272f4250" />
|
|
36 |
</inventory>"""
|
|
37 |
||
1182
by Martin Pool
- more disentangling of xml storage format from objects |
38 |
|
39 |
_revision_v4 = """<revision committer="Martin Pool <mbp@sourcefrog.net>" |
|
40 |
inventory_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
|
|
41 |
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
|
|
42 |
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
|
|
2102.4.1
by John Arbash Meinel
Switch to using millisecond resolution in Revision XML |
43 |
timestamp="1125907235.212"
|
1182
by Martin Pool
- more disentangling of xml storage format from objects |
44 |
timezone="36000">
|
45 |
<message>- start splitting code for xml (de)serialization away from objects
|
|
46 |
preparatory to supporting multiple formats by a single library
|
|
47 |
</message>
|
|
48 |
<parents>
|
|
49 |
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92" revision_sha1="7bdf4cc8c5bdac739f8cf9b10b78cf4b68f915ff" />
|
|
50 |
</parents>
|
|
51 |
</revision>
|
|
52 |
"""
|
|
53 |
||
1183
by Martin Pool
- implement version 5 xml storage, and tests |
54 |
_revision_v5 = """<revision committer="Martin Pool <mbp@sourcefrog.net>" |
55 |
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
|
|
56 |
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
|
|
2102.4.1
by John Arbash Meinel
Switch to using millisecond resolution in Revision XML |
57 |
timestamp="1125907235.212"
|
1183
by Martin Pool
- implement version 5 xml storage, and tests |
58 |
timezone="36000">
|
59 |
<message>- start splitting code for xml (de)serialization away from objects
|
|
60 |
preparatory to supporting multiple formats by a single library
|
|
61 |
</message>
|
|
62 |
<parents>
|
|
63 |
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92"/>
|
|
64 |
</parents>
|
|
65 |
</revision>
|
|
66 |
"""
|
|
67 |
||
1913.1.2
by John Arbash Meinel
Add direct tests to xml serializer |
68 |
_revision_v5_utc = """\ |
69 |
<revision committer="Martin Pool <mbp@sourcefrog.net>"
|
|
70 |
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
|
|
71 |
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
|
|
2102.4.1
by John Arbash Meinel
Switch to using millisecond resolution in Revision XML |
72 |
timestamp="1125907235.212"
|
1913.1.2
by John Arbash Meinel
Add direct tests to xml serializer |
73 |
timezone="0">
|
74 |
<message>- start splitting code for xml (de)serialization away from objects
|
|
75 |
preparatory to supporting multiple formats by a single library
|
|
76 |
</message>
|
|
77 |
<parents>
|
|
78 |
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92"/>
|
|
79 |
</parents>
|
|
80 |
</revision>
|
|
81 |
"""
|
|
82 |
||
1183
by Martin Pool
- implement version 5 xml storage, and tests |
83 |
_committed_inv_v5 = """<inventory> |
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
84 |
<file file_id="bar-20050901064931-73b4b1138abc9cd2"
|
85 |
name="bar" parent_id="TREE_ROOT"
|
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
86 |
revision="mbp@foo-123123"
|
87 |
text_sha1="A" text_size="1"/>
|
|
1183
by Martin Pool
- implement version 5 xml storage, and tests |
88 |
<directory name="subdir"
|
89 |
file_id="foo-20050801201819-4139aa4a272f4250"
|
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
90 |
parent_id="TREE_ROOT"
|
1092.2.21
by Robert Collins
convert name_version to revision in inventory entries |
91 |
revision="mbp@foo-00"/>
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
92 |
<file executable="yes" file_id="bar-20050824000535-6bc48cfad47ed134"
|
93 |
name="bar" parent_id="foo-20050801201819-4139aa4a272f4250"
|
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
94 |
revision="mbp@foo-00"
|
95 |
text_sha1="B" text_size="0"/>
|
|
1183
by Martin Pool
- implement version 5 xml storage, and tests |
96 |
</inventory>
|
97 |
"""
|
|
98 |
||
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
99 |
_basis_inv_v5 = """<inventory revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92"> |
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
100 |
<file file_id="bar-20050901064931-73b4b1138abc9cd2"
|
101 |
name="bar" parent_id="TREE_ROOT"
|
|
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
102 |
revision="mbp@foo-123123"/>
|
103 |
<directory name="subdir"
|
|
104 |
file_id="foo-20050801201819-4139aa4a272f4250"
|
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
105 |
parent_id="TREE_ROOT"
|
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
106 |
revision="mbp@foo-00"/>
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
107 |
<file file_id="bar-20050824000535-6bc48cfad47ed134"
|
108 |
name="bar" parent_id="foo-20050801201819-4139aa4a272f4250"
|
|
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
109 |
revision="mbp@foo-00"/>
|
110 |
</inventory>
|
|
111 |
"""
|
|
112 |
||
1886.1.1
by John Arbash Meinel
Fix bug #47782, |
113 |
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
114 |
# DO NOT REFLOW THIS. Its the exact revision we want.
|
2102.4.1
by John Arbash Meinel
Switch to using millisecond resolution in Revision XML |
115 |
_expected_rev_v5 = """<revision committer="Martin Pool <mbp@sourcefrog.net>" format="5" inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41" revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9" timestamp="1125907235.212" timezone="36000"> |
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
116 |
<message>- start splitting code for xml (de)serialization away from objects
|
117 |
preparatory to supporting multiple formats by a single library
|
|
118 |
</message>
|
|
119 |
<parents>
|
|
120 |
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92" />
|
|
121 |
</parents>
|
|
122 |
</revision>
|
|
123 |
"""
|
|
124 |
||
125 |
||
126 |
# DO NOT REFLOW THIS. Its the exact inventory we want.
|
|
127 |
_expected_inv_v5 = """<inventory format="5"> |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
128 |
<file file_id="bar-20050901064931-73b4b1138abc9cd2" name="bar" revision="mbp@foo-123123" text_sha1="A" text_size="1" />
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
129 |
<directory file_id="foo-20050801201819-4139aa4a272f4250" name="subdir" revision="mbp@foo-00" />
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
130 |
<file executable="yes" file_id="bar-20050824000535-6bc48cfad47ed134" name="bar" parent_id="foo-20050801201819-4139aa4a272f4250" revision="mbp@foo-00" text_sha1="B" text_size="0" />
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
131 |
</inventory>
|
132 |
"""
|
|
133 |
||
134 |
||
135 |
_expected_inv_v5_root = """<inventory file_id="f<" format="5" revision_id="mother!"> |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
136 |
<file file_id="bar-20050901064931-73b4b1138abc9cd2" name="bar" parent_id="f<" revision="mbp@foo-123123" text_sha1="A" text_size="1" />
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
137 |
<directory file_id="foo-20050801201819-4139aa4a272f4250" name="subdir" parent_id="f<" revision="mbp@foo-00" />
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
138 |
<file executable="yes" file_id="bar-20050824000535-6bc48cfad47ed134" name="bar" parent_id="foo-20050801201819-4139aa4a272f4250" revision="mbp@foo-00" text_sha1="B" text_size="0" />
|
139 |
<symlink file_id="link-1" name="link" parent_id="foo-20050801201819-4139aa4a272f4250" revision="mbp@foo-00" symlink_target="a" />
|
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
140 |
</inventory>
|
141 |
"""
|
|
142 |
||
4476.3.27
by Andrew Bennetts
Trivial improvement to test coverage in test_xml. |
143 |
_expected_inv_v6 = """<inventory format="6" revision_id="rev_outer"> |
144 |
<directory file_id="tree-root-321" name="" revision="rev_outer" />
|
|
145 |
<directory file_id="dir-id" name="dir" parent_id="tree-root-321" revision="rev_outer" />
|
|
146 |
<file file_id="file-id" name="file" parent_id="tree-root-321" revision="rev_outer" text_sha1="A" text_size="1" />
|
|
147 |
<symlink file_id="link-id" name="link" parent_id="tree-root-321" revision="rev_outer" symlink_target="a" />
|
|
148 |
</inventory>
|
|
149 |
"""
|
|
150 |
||
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
151 |
_expected_inv_v7 = """<inventory format="7" revision_id="rev_outer"> |
152 |
<directory file_id="tree-root-321" name="" revision="rev_outer" />
|
|
153 |
<directory file_id="dir-id" name="dir" parent_id="tree-root-321" revision="rev_outer" />
|
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
154 |
<file file_id="file-id" name="file" parent_id="tree-root-321" revision="rev_outer" text_sha1="A" text_size="1" />
|
155 |
<symlink file_id="link-id" name="link" parent_id="tree-root-321" revision="rev_outer" symlink_target="a" />
|
|
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
156 |
<tree-reference file_id="nested-id" name="nested" parent_id="tree-root-321" revision="rev_outer" reference_revision="rev_inner" />
|
157 |
</inventory>
|
|
158 |
"""
|
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
159 |
|
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
160 |
_expected_rev_v8 = """<revision committer="Martin Pool <mbp@sourcefrog.net>" format="8" inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41" revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9" timestamp="1125907235.212" timezone="36000"> |
161 |
<message>- start splitting code for xml (de)serialization away from objects
|
|
162 |
preparatory to supporting multiple formats by a single library
|
|
163 |
</message>
|
|
164 |
<parents>
|
|
165 |
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92" />
|
|
166 |
</parents>
|
|
167 |
</revision>
|
|
168 |
"""
|
|
169 |
||
170 |
_expected_inv_v8 = """<inventory format="8" revision_id="rev_outer"> |
|
171 |
<directory file_id="tree-root-321" name="" revision="rev_outer" />
|
|
172 |
<directory file_id="dir-id" name="dir" parent_id="tree-root-321" revision="rev_outer" />
|
|
173 |
<file file_id="file-id" name="file" parent_id="tree-root-321" revision="rev_outer" text_sha1="A" text_size="1" />
|
|
174 |
<symlink file_id="link-id" name="link" parent_id="tree-root-321" revision="rev_outer" symlink_target="a" />
|
|
175 |
</inventory>
|
|
176 |
"""
|
|
177 |
||
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
178 |
_revision_utf8_v5 = """<revision committer="Erik Bågfors <erik@foo.net>" |
179 |
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
|
|
180 |
revision_id="erik@bågfors-02"
|
|
181 |
timestamp="1125907235.212"
|
|
182 |
timezone="36000">
|
|
183 |
<message>Include µnicode characters
|
|
184 |
</message>
|
|
185 |
<parents>
|
|
186 |
<revision_ref revision_id="erik@bågfors-01"/>
|
|
187 |
</parents>
|
|
188 |
</revision>
|
|
189 |
"""
|
|
190 |
||
191 |
_inventory_utf8_v5 = """<inventory file_id="TREé_ROOT" format="5" |
|
192 |
revision_id="erik@bågfors-02">
|
|
193 |
<file file_id="bår-01"
|
|
2294.1.9
by John Arbash Meinel
Minor performance improvement, use None as signal rather than ROOT_ID |
194 |
name="bår" parent_id="TREé_ROOT"
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
195 |
revision="erik@bågfors-01"/>
|
196 |
<directory name="sµbdir"
|
|
197 |
file_id="sµbdir-01"
|
|
2294.1.9
by John Arbash Meinel
Minor performance improvement, use None as signal rather than ROOT_ID |
198 |
parent_id="TREé_ROOT"
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
199 |
revision="erik@bågfors-01"/>
|
200 |
<file executable="yes" file_id="bår-02"
|
|
201 |
name="bår" parent_id="sµbdir-01"
|
|
202 |
revision="erik@bågfors-02"/>
|
|
203 |
</inventory>
|
|
204 |
"""
|
|
205 |
||
2917.2.1
by John Arbash Meinel
Fix bug #152360. The xml5 serializer should be using |
206 |
# Before revision_id was always stored as an attribute
|
207 |
_inventory_v5a = """<inventory format="5"> |
|
208 |
</inventory>
|
|
209 |
"""
|
|
210 |
||
211 |
# Before revision_id was always stored as an attribute
|
|
212 |
_inventory_v5b = """<inventory format="5" revision_id="a-rev-id"> |
|
213 |
</inventory>
|
|
214 |
"""
|
|
215 |
||
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
216 |
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
217 |
class TestSerializer(TestCase): |
218 |
"""Test XML serialization"""
|
|
2889.1.1
by Robert Collins
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into |
219 |
|
1181
by Martin Pool
- add test for deserialization from a canned XML inventory |
220 |
def test_canned_inventory(self): |
221 |
"""Test unpacked a canned inventory v4 file."""
|
|
222 |
inp = StringIO(_working_inventory_v4) |
|
223 |
inv = serializer_v4.read_inventory(inp) |
|
224 |
self.assertEqual(len(inv), 4) |
|
225 |
self.assert_('bar-20050901064931-73b4b1138abc9cd2' in inv) |
|
1182
by Martin Pool
- more disentangling of xml storage format from objects |
226 |
|
227 |
def test_unpack_revision(self): |
|
228 |
"""Test unpacking a canned revision v4"""
|
|
229 |
inp = StringIO(_revision_v4) |
|
230 |
rev = serializer_v4.read_revision(inp) |
|
231 |
eq = self.assertEqual |
|
232 |
eq(rev.committer, |
|
233 |
"Martin Pool <mbp@sourcefrog.net>") |
|
234 |
eq(rev.inventory_id, |
|
235 |
"mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9") |
|
1313
by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage |
236 |
eq(len(rev.parent_ids), 1) |
237 |
eq(rev.parent_ids[0], |
|
1182
by Martin Pool
- more disentangling of xml storage format from objects |
238 |
"mbp@sourcefrog.net-20050905063503-43948f59fa127d92") |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
239 |
|
240 |
def test_unpack_revision_5(self): |
|
241 |
"""Test unpacking a canned revision v5"""
|
|
242 |
inp = StringIO(_revision_v5) |
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
243 |
rev = bzrlib.xml5.serializer_v5.read_revision(inp) |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
244 |
eq = self.assertEqual |
245 |
eq(rev.committer, |
|
246 |
"Martin Pool <mbp@sourcefrog.net>") |
|
1313
by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage |
247 |
eq(len(rev.parent_ids), 1) |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
248 |
eq(rev.timezone, 36000) |
1313
by Martin Pool
- rename to Revision.parent_ids to avoid confusion with old usage |
249 |
eq(rev.parent_ids[0], |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
250 |
"mbp@sourcefrog.net-20050905063503-43948f59fa127d92") |
251 |
||
1913.1.2
by John Arbash Meinel
Add direct tests to xml serializer |
252 |
def test_unpack_revision_5_utc(self): |
253 |
inp = StringIO(_revision_v5_utc) |
|
254 |
rev = bzrlib.xml5.serializer_v5.read_revision(inp) |
|
255 |
eq = self.assertEqual |
|
256 |
eq(rev.committer, |
|
257 |
"Martin Pool <mbp@sourcefrog.net>") |
|
258 |
eq(len(rev.parent_ids), 1) |
|
259 |
eq(rev.timezone, 0) |
|
260 |
eq(rev.parent_ids[0], |
|
261 |
"mbp@sourcefrog.net-20050905063503-43948f59fa127d92") |
|
262 |
||
1183
by Martin Pool
- implement version 5 xml storage, and tests |
263 |
def test_unpack_inventory_5(self): |
264 |
"""Unpack canned new-style inventory"""
|
|
265 |
inp = StringIO(_committed_inv_v5) |
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
266 |
inv = bzrlib.xml5.serializer_v5.read_inventory(inp) |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
267 |
eq = self.assertEqual |
268 |
eq(len(inv), 4) |
|
269 |
ie = inv['bar-20050824000535-6bc48cfad47ed134'] |
|
270 |
eq(ie.kind, 'file') |
|
1092.2.21
by Robert Collins
convert name_version to revision in inventory entries |
271 |
eq(ie.revision, 'mbp@foo-00') |
1183
by Martin Pool
- implement version 5 xml storage, and tests |
272 |
eq(ie.name, 'bar') |
273 |
eq(inv[ie.parent_id].kind, 'directory') |
|
1184
by Martin Pool
- fix v5 packing of inventory entries |
274 |
|
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
275 |
def test_unpack_basis_inventory_5(self): |
276 |
"""Unpack canned new-style inventory"""
|
|
277 |
inp = StringIO(_basis_inv_v5) |
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
278 |
inv = bzrlib.xml5.serializer_v5.read_inventory(inp) |
1638.1.2
by Robert Collins
Change the basis-inventory file to not have the revision-id in the file name. |
279 |
eq = self.assertEqual |
280 |
eq(len(inv), 4) |
|
281 |
eq(inv.revision_id, 'mbp@sourcefrog.net-20050905063503-43948f59fa127d92') |
|
282 |
ie = inv['bar-20050824000535-6bc48cfad47ed134'] |
|
283 |
eq(ie.kind, 'file') |
|
284 |
eq(ie.revision, 'mbp@foo-00') |
|
285 |
eq(ie.name, 'bar') |
|
286 |
eq(inv[ie.parent_id].kind, 'directory') |
|
287 |
||
2917.2.1
by John Arbash Meinel
Fix bug #152360. The xml5 serializer should be using |
288 |
def test_unpack_inventory_5a(self): |
289 |
inv = bzrlib.xml5.serializer_v5.read_inventory_from_string( |
|
290 |
_inventory_v5a, revision_id='test-rev-id') |
|
291 |
self.assertEqual('test-rev-id', inv.root.revision) |
|
292 |
||
293 |
def test_unpack_inventory_5b(self): |
|
294 |
inv = bzrlib.xml5.serializer_v5.read_inventory_from_string( |
|
295 |
_inventory_v5b, revision_id='test-rev-id') |
|
296 |
self.assertEqual('a-rev-id', inv.root.revision) |
|
297 |
||
1184
by Martin Pool
- fix v5 packing of inventory entries |
298 |
def test_repack_inventory_5(self): |
299 |
inp = StringIO(_committed_inv_v5) |
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
300 |
inv = bzrlib.xml5.serializer_v5.read_inventory(inp) |
1184
by Martin Pool
- fix v5 packing of inventory entries |
301 |
outp = StringIO() |
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
302 |
bzrlib.xml5.serializer_v5.write_inventory(inv, outp) |
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
303 |
self.assertEqualDiff(_expected_inv_v5, outp.getvalue()) |
304 |
inv2 = bzrlib.xml5.serializer_v5.read_inventory(StringIO(outp.getvalue())) |
|
305 |
self.assertEqual(inv, inv2) |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
306 |
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
307 |
def assertRoundTrips(self, xml_string): |
308 |
inp = StringIO(xml_string) |
|
309 |
inv = bzrlib.xml5.serializer_v5.read_inventory(inp) |
|
310 |
outp = StringIO() |
|
311 |
bzrlib.xml5.serializer_v5.write_inventory(inv, outp) |
|
312 |
self.assertEqualDiff(xml_string, outp.getvalue()) |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
313 |
lines = bzrlib.xml5.serializer_v5.write_inventory_to_lines(inv) |
314 |
outp.seek(0) |
|
315 |
self.assertEqual(outp.readlines(), lines) |
|
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
316 |
inv2 = bzrlib.xml5.serializer_v5.read_inventory(StringIO(outp.getvalue())) |
317 |
self.assertEqual(inv, inv2) |
|
318 |
||
319 |
def tests_serialize_inventory_v5_with_root(self): |
|
320 |
self.assertRoundTrips(_expected_inv_v5_root) |
|
1185
by Martin Pool
- add xml round-trip test for revisions |
321 |
|
1913.1.2
by John Arbash Meinel
Add direct tests to xml serializer |
322 |
def check_repack_revision(self, txt): |
323 |
"""Check that repacking a revision yields the same information"""
|
|
324 |
inp = StringIO(txt) |
|
325 |
rev = bzrlib.xml5.serializer_v5.read_revision(inp) |
|
326 |
outp = StringIO() |
|
327 |
bzrlib.xml5.serializer_v5.write_revision(rev, outp) |
|
328 |
outfile_contents = outp.getvalue() |
|
329 |
rev2 = bzrlib.xml5.serializer_v5.read_revision(StringIO(outfile_contents)) |
|
330 |
self.assertEqual(rev, rev2) |
|
331 |
||
1185
by Martin Pool
- add xml round-trip test for revisions |
332 |
def test_repack_revision_5(self): |
1185.16.123
by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string |
333 |
"""Round-trip revision to XML v5"""
|
1913.1.2
by John Arbash Meinel
Add direct tests to xml serializer |
334 |
self.check_repack_revision(_revision_v5) |
335 |
||
336 |
def test_repack_revision_5_utc(self): |
|
337 |
self.check_repack_revision(_revision_v5_utc) |
|
1185
by Martin Pool
- add xml round-trip test for revisions |
338 |
|
1185.16.123
by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string |
339 |
def test_pack_revision_5(self): |
340 |
"""Pack revision to XML v5"""
|
|
341 |
# fixed 20051025, revisions should have final newline
|
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
342 |
rev = bzrlib.xml5.serializer_v5.read_revision_from_string(_revision_v5) |
1185.16.123
by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string |
343 |
outp = StringIO() |
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
344 |
bzrlib.xml5.serializer_v5.write_revision(rev, outp) |
1185.16.123
by Martin Pool
Fix syntax of serializer_v5.pack_revision_to_string |
345 |
outfile_contents = outp.getvalue() |
346 |
self.assertEqual(outfile_contents[-1], '\n') |
|
1732.1.26
by John Arbash Meinel
Switch to using bzrlib.xml5.serializer_v5 so that a plugin can override it if we want |
347 |
self.assertEqualDiff(outfile_contents, bzrlib.xml5.serializer_v5.write_revision_to_string(rev)) |
1934.1.3
by John Arbash Meinel
[merge] robert's custom XML serializer, and cleanup for benchmarks and iter_entries() differences |
348 |
self.assertEqualDiff(outfile_contents, _expected_rev_v5) |
1886.1.1
by John Arbash Meinel
Fix bug #47782, |
349 |
|
350 |
def test_empty_property_value(self): |
|
351 |
"""Create an empty property value check that it serializes correctly"""
|
|
352 |
s_v5 = bzrlib.xml5.serializer_v5 |
|
353 |
rev = s_v5.read_revision_from_string(_revision_v5) |
|
354 |
outp = StringIO() |
|
355 |
props = {'empty':'', 'one':'one'} |
|
356 |
rev.properties = props |
|
357 |
txt = s_v5.write_revision_to_string(rev) |
|
358 |
new_rev = s_v5.read_revision_from_string(txt) |
|
359 |
self.assertEqual(props, new_rev.properties) |
|
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
360 |
|
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
361 |
def get_sample_inventory(self): |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
362 |
inv = Inventory('tree-root-321', revision_id='rev_outer') |
363 |
inv.add(inventory.InventoryFile('file-id', 'file', 'tree-root-321')) |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
364 |
inv.add(inventory.InventoryDirectory('dir-id', 'dir', |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
365 |
'tree-root-321')) |
366 |
inv.add(inventory.InventoryLink('link-id', 'link', 'tree-root-321')) |
|
367 |
inv['tree-root-321'].revision = 'rev_outer' |
|
368 |
inv['dir-id'].revision = 'rev_outer' |
|
369 |
inv['file-id'].revision = 'rev_outer' |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
370 |
inv['file-id'].text_sha1 = 'A' |
371 |
inv['file-id'].text_size = 1 |
|
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
372 |
inv['link-id'].revision = 'rev_outer' |
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
373 |
inv['link-id'].symlink_target = 'a' |
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
374 |
return inv |
375 |
||
376 |
def test_roundtrip_inventory_v7(self): |
|
377 |
inv = self.get_sample_inventory() |
|
378 |
inv.add(inventory.TreeReference('nested-id', 'nested', 'tree-root-321', |
|
379 |
'rev_outer', 'rev_inner')) |
|
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
380 |
txt = xml7.serializer_v7.write_inventory_to_string(inv) |
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
381 |
lines = xml7.serializer_v7.write_inventory_to_lines(inv) |
382 |
self.assertEqual(bzrlib.osutils.split_lines(txt), lines) |
|
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
383 |
self.assertEqualDiff(_expected_inv_v7, txt) |
384 |
inv2 = xml7.serializer_v7.read_inventory_from_string(txt) |
|
385 |
self.assertEqual(5, len(inv2)) |
|
386 |
for path, ie in inv.iter_entries(): |
|
387 |
self.assertEqual(ie, inv2[ie.file_id]) |
|
388 |
||
4476.3.27
by Andrew Bennetts
Trivial improvement to test coverage in test_xml. |
389 |
def test_roundtrip_inventory_v6(self): |
390 |
inv = self.get_sample_inventory() |
|
391 |
txt = xml6.serializer_v6.write_inventory_to_string(inv) |
|
392 |
lines = xml6.serializer_v6.write_inventory_to_lines(inv) |
|
393 |
self.assertEqual(bzrlib.osutils.split_lines(txt), lines) |
|
394 |
self.assertEqualDiff(_expected_inv_v6, txt) |
|
395 |
inv2 = xml6.serializer_v6.read_inventory_from_string(txt) |
|
396 |
self.assertEqual(4, len(inv2)) |
|
397 |
for path, ie in inv.iter_entries(): |
|
398 |
self.assertEqual(ie, inv2[ie.file_id]) |
|
399 |
||
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
400 |
def test_wrong_format_v7(self): |
401 |
"""Can't accidentally open a file with wrong serializer"""
|
|
402 |
s_v6 = bzrlib.xml6.serializer_v6 |
|
403 |
s_v7 = xml7.serializer_v7 |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
404 |
self.assertRaises(errors.UnexpectedInventoryFormat, |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
405 |
s_v7.read_inventory_from_string, _expected_inv_v5) |
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
406 |
self.assertRaises(errors.UnexpectedInventoryFormat, |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
407 |
s_v6.read_inventory_from_string, _expected_inv_v7) |
408 |
||
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
409 |
def test_tree_reference(self): |
410 |
s_v5 = bzrlib.xml5.serializer_v5 |
|
411 |
s_v6 = bzrlib.xml6.serializer_v6 |
|
412 |
s_v7 = xml7.serializer_v7 |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
413 |
inv = Inventory('tree-root-321', revision_id='rev-outer') |
414 |
inv.root.revision = 'root-rev' |
|
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
415 |
inv.add(inventory.TreeReference('nested-id', 'nested', 'tree-root-321', |
416 |
'rev-outer', 'rev-inner')) |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
417 |
self.assertRaises(errors.UnsupportedInventoryKind, |
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
418 |
s_v5.write_inventory_to_string, inv) |
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
419 |
self.assertRaises(errors.UnsupportedInventoryKind, |
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
420 |
s_v6.write_inventory_to_string, inv) |
421 |
txt = s_v7.write_inventory_to_string(inv) |
|
2817.2.1
by Robert Collins
* Inventory serialisation no longer double-sha's the content. |
422 |
lines = s_v7.write_inventory_to_lines(inv) |
423 |
self.assertEqual(bzrlib.osutils.split_lines(txt), lines) |
|
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
424 |
inv2 = s_v7.read_inventory_from_string(txt) |
425 |
self.assertEqual('tree-root-321', inv2['nested-id'].parent_id) |
|
426 |
self.assertEqual('rev-outer', inv2['nested-id'].revision) |
|
427 |
self.assertEqual('rev-inner', inv2['nested-id'].reference_revision) |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
428 |
self.assertRaises(errors.UnsupportedInventoryKind, |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
429 |
s_v6.read_inventory_from_string, |
430 |
txt.replace('format="7"', 'format="6"')) |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
431 |
self.assertRaises(errors.UnsupportedInventoryKind, |
2100.3.1
by Aaron Bentley
Start roundtripping tree-reference entries |
432 |
s_v5.read_inventory_from_string, |
2100.3.2
by Aaron Bentley
Add tests for format 7, enforce number |
433 |
txt.replace('format="7"', 'format="5"')) |
2255.6.1
by Aaron Bentley
Merge from by-reference-trees |
434 |
|
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
435 |
def test_roundtrip_inventory_v8(self): |
436 |
inv = self.get_sample_inventory() |
|
437 |
txt = xml8.serializer_v8.write_inventory_to_string(inv) |
|
438 |
inv2 = xml8.serializer_v8.read_inventory_from_string(txt) |
|
439 |
self.assertEqual(4, len(inv2)) |
|
440 |
for path, ie in inv.iter_entries(): |
|
441 |
self.assertEqual(ie, inv2[ie.file_id]) |
|
442 |
||
443 |
def test_inventory_text_v8(self): |
|
444 |
inv = self.get_sample_inventory() |
|
445 |
txt = xml8.serializer_v8.write_inventory_to_string(inv) |
|
446 |
lines = xml8.serializer_v8.write_inventory_to_lines(inv) |
|
447 |
self.assertEqual(bzrlib.osutils.split_lines(txt), lines) |
|
448 |
self.assertEqualDiff(_expected_inv_v8, txt) |
|
449 |
||
3311.3.3
by Aaron Bentley
Handle format 5 revision |
450 |
def test_revision_text_v6(self): |
451 |
"""Pack revision to XML v6"""
|
|
452 |
rev = bzrlib.xml6.serializer_v6.read_revision_from_string( |
|
453 |
_expected_rev_v5) |
|
454 |
serialized = bzrlib.xml6.serializer_v6.write_revision_to_string(rev) |
|
455 |
self.assertEqualDiff(serialized, _expected_rev_v5) |
|
456 |
||
457 |
def test_revision_text_v7(self): |
|
458 |
"""Pack revision to XML v7"""
|
|
459 |
rev = bzrlib.xml7.serializer_v7.read_revision_from_string( |
|
460 |
_expected_rev_v5) |
|
461 |
serialized = bzrlib.xml7.serializer_v7.write_revision_to_string(rev) |
|
462 |
self.assertEqualDiff(serialized, _expected_rev_v5) |
|
463 |
||
3311.3.2
by Aaron Bentley
Implement version numbers for format 8 |
464 |
def test_revision_text_v8(self): |
465 |
"""Pack revision to XML v8"""
|
|
466 |
rev = bzrlib.xml8.serializer_v8.read_revision_from_string( |
|
467 |
_expected_rev_v8) |
|
468 |
serialized = bzrlib.xml8.serializer_v8.write_revision_to_string(rev) |
|
469 |
self.assertEqualDiff(serialized, _expected_rev_v8) |
|
470 |
||
2249.5.4
by John Arbash Meinel
When reading XML, always return utf-8 revision ids. |
471 |
def test_revision_ids_are_utf8(self): |
472 |
"""Parsed revision_ids should all be utf-8 strings, not unicode."""
|
|
473 |
s_v5 = bzrlib.xml5.serializer_v5 |
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
474 |
rev = s_v5.read_revision_from_string(_revision_utf8_v5) |
475 |
self.assertEqual('erik@b\xc3\xa5gfors-02', rev.revision_id) |
|
2249.5.4
by John Arbash Meinel
When reading XML, always return utf-8 revision ids. |
476 |
self.assertIsInstance(rev.revision_id, str) |
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
477 |
self.assertEqual(['erik@b\xc3\xa5gfors-01'], rev.parent_ids) |
2249.5.4
by John Arbash Meinel
When reading XML, always return utf-8 revision ids. |
478 |
for parent_id in rev.parent_ids: |
479 |
self.assertIsInstance(parent_id, str) |
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
480 |
self.assertEqual(u'Include \xb5nicode characters\n', rev.message) |
481 |
self.assertIsInstance(rev.message, unicode) |
|
2249.5.4
by John Arbash Meinel
When reading XML, always return utf-8 revision ids. |
482 |
|
483 |
# ie.revision should either be None or a utf-8 revision id
|
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
484 |
inv = s_v5.read_inventory_from_string(_inventory_utf8_v5) |
485 |
rev_id_1 = u'erik@b\xe5gfors-01'.encode('utf8') |
|
486 |
rev_id_2 = u'erik@b\xe5gfors-02'.encode('utf8') |
|
2294.1.10
by John Arbash Meinel
Switch all apis over to utf8 file ids. All tests pass |
487 |
fid_root = u'TRE\xe9_ROOT'.encode('utf8') |
488 |
fid_bar1 = u'b\xe5r-01'.encode('utf8') |
|
489 |
fid_sub = u's\xb5bdir-01'.encode('utf8') |
|
490 |
fid_bar2 = u'b\xe5r-02'.encode('utf8') |
|
2889.1.1
by Robert Collins
* The class ``bzrlib.repofmt.knitrepo.KnitRepository3`` has been folded into |
491 |
expected = [(u'', fid_root, None, rev_id_2), |
2294.1.6
by John Arbash Meinel
Include parent_id checks in the xml serializer tests. |
492 |
(u'b\xe5r', fid_bar1, fid_root, rev_id_1), |
493 |
(u's\xb5bdir', fid_sub, fid_root, rev_id_1), |
|
494 |
(u's\xb5bdir/b\xe5r', fid_bar2, fid_sub, rev_id_2), |
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
495 |
]
|
496 |
self.assertEqual(rev_id_2, inv.revision_id) |
|
497 |
self.assertIsInstance(inv.revision_id, str) |
|
498 |
||
499 |
actual = list(inv.iter_entries_by_dir()) |
|
2294.1.6
by John Arbash Meinel
Include parent_id checks in the xml serializer tests. |
500 |
for ((exp_path, exp_file_id, exp_parent_id, exp_rev_id), |
501 |
(act_path, act_ie)) in zip(expected, actual): |
|
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
502 |
self.assertEqual(exp_path, act_path) |
503 |
self.assertIsInstance(act_path, unicode) |
|
504 |
self.assertEqual(exp_file_id, act_ie.file_id) |
|
2294.1.10
by John Arbash Meinel
Switch all apis over to utf8 file ids. All tests pass |
505 |
self.assertIsInstance(act_ie.file_id, str) |
2294.1.6
by John Arbash Meinel
Include parent_id checks in the xml serializer tests. |
506 |
self.assertEqual(exp_parent_id, act_ie.parent_id) |
507 |
if exp_parent_id is not None: |
|
2294.1.10
by John Arbash Meinel
Switch all apis over to utf8 file ids. All tests pass |
508 |
self.assertIsInstance(act_ie.parent_id, str) |
2294.1.5
by John Arbash Meinel
Fix Inventory.iter_entries_by_dir to return Unicode paths, |
509 |
self.assertEqual(exp_rev_id, act_ie.revision) |
510 |
if exp_rev_id is not None: |
|
511 |
self.assertIsInstance(act_ie.revision, str) |
|
512 |
||
513 |
self.assertEqual(len(expected), len(actual)) |
|
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
514 |
|
515 |
||
516 |
class TestEncodeAndEscape(TestCase): |
|
517 |
"""Whitebox testing of the _encode_and_escape function."""
|
|
518 |
||
519 |
def setUp(self): |
|
4153.1.2
by Andrew Bennetts
Add missing TestCase.setUp upcalls. |
520 |
TestCase.setUp(self) |
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
521 |
# Keep the cache clear before and after the test
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
522 |
bzrlib.xml8._ensure_utf8_re() |
523 |
bzrlib.xml8._clear_cache() |
|
524 |
self.addCleanup(bzrlib.xml8._clear_cache) |
|
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
525 |
|
526 |
def test_simple_ascii(self): |
|
527 |
# _encode_and_escape always appends a final ", because these parameters
|
|
528 |
# are being used in xml attributes, and by returning it now, we have to
|
|
529 |
# do fewer string operations later.
|
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
530 |
val = bzrlib.xml8._encode_and_escape('foo bar') |
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
531 |
self.assertEqual('foo bar"', val) |
532 |
# The second time should be cached
|
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
533 |
val2 = bzrlib.xml8._encode_and_escape('foo bar') |
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
534 |
self.assertIs(val2, val) |
535 |
||
536 |
def test_ascii_with_xml(self): |
|
537 |
self.assertEqual('&'"<>"', |
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
538 |
bzrlib.xml8._encode_and_escape('&\'"<>')) |
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
539 |
|
540 |
def test_utf8_with_xml(self): |
|
541 |
# u'\xb5\xe5&\u062c'
|
|
542 |
utf8_str = '\xc2\xb5\xc3\xa5&\xd8\xac' |
|
543 |
self.assertEqual('µå&ج"', |
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
544 |
bzrlib.xml8._encode_and_escape(utf8_str)) |
2249.5.10
by John Arbash Meinel
Make sure xml5 can handle unicode or utf8 strings |
545 |
|
546 |
def test_unicode(self): |
|
547 |
uni_str = u'\xb5\xe5&\u062c' |
|
548 |
self.assertEqual('µå&ج"', |
|
3311.3.4
by Aaron Bentley
Have xml5 inherit from xml6 from xml8 |
549 |
bzrlib.xml8._encode_and_escape(uni_str)) |