1
# Copyright (C) 2005 by Canonical Development Ltd
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.
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.
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
17
"""Test Escaped Stores."""
19
from cStringIO import StringIO
23
from bzrlib.errors import BzrError, UnlistableStore, NoSuchFile
24
from bzrlib.store import copy_all
25
from bzrlib.store.text import TextStore
26
from bzrlib.tests import TestCaseWithTransport
27
import bzrlib.transport
30
class TestEscaped(TestCaseWithTransport):
31
"""Mixin template class that provides some common tests for stores"""
33
def get_store(self, prefixed=False, escaped=True):
34
t = bzrlib.transport.get_transport(self.get_url())
35
return TextStore(t, prefixed=prefixed, escaped=escaped)
38
text_store = self.get_store()
40
self.assertEqual('a', text_store._relpath('a'))
41
self.assertEqual('a', text_store._relpath(u'a'))
42
self.assertEqual('%2520', text_store._relpath(' '))
43
self.assertEqual('%40%253A%253C%253E', text_store._relpath('@:<>'))
44
self.assertEqual('%25C3%25A5', text_store._relpath(u'\xe5'))
46
def test_prefixed(self):
47
# Prefix should be determined by unescaped string
48
text_store = self.get_store(prefixed=True)
50
# hash_prefix() is not defined for unicode characters
51
# it is only defined for byte streams.
52
# so hash_prefix() needs to operate on *at most* utf-8
53
# encoded. However urlescape() does both encoding to utf-8
54
# and urllib quoting, so we will use the escaped form
55
# as the path passed to hash_prefix
57
self.assertEqual('62/a', text_store._relpath('a'))
58
self.assertEqual('88/%2520', text_store._relpath(' '))
59
self.assertEqual('12/%40%253A%253C%253E',
60
text_store._relpath('@:<>'))
61
self.assertEqual('37/%25C3%25A5', text_store._relpath(u'\xe5'))
64
text_store = self.get_store(prefixed=True)
66
text_store.add(StringIO('a'), 'a')
67
self.failUnlessExists('62/a')
69
text_store.add(StringIO('space'), ' ')
70
self.failUnlessExists('88/%20')
71
self.assertEquals('space', text_store.get(' ').read())
73
text_store.add(StringIO('surprise'), '@:<>')
74
self.failUnlessExists('12/@%3A%3C%3E')
75
self.assertEquals('surprise', text_store.get('@:<>').read())
77
text_store.add(StringIO('unicode'), u'\xe5')
78
self.failUnlessExists('37/%C3%A5')
79
self.assertEquals('unicode', text_store.get(u'\xe5').read())
82
from bzrlib.store.versioned import WeaveStore
83
from bzrlib.transactions import PassThroughTransaction
85
trans = PassThroughTransaction()
87
t = bzrlib.transport.get_transport(self.get_url())
88
weave_store = WeaveStore(t, prefixed=True, escaped=True)
90
weave_store.add_text('a', 'r', ['a'], [], trans)
91
self.failUnlessExists('62/a.weave')
92
self.assertEqual(['a'], weave_store.get_lines('a', 'r', trans))
94
weave_store.add_text(' ', 'r', ['space'], [], trans)
95
self.failIfExists('21/ .weave')
96
self.failUnlessExists('88/%20.weave')
97
self.assertEquals(['space'], weave_store.get_lines(' ', 'r', trans))
99
weave_store.add_text('@:<>', 'r', ['surprise'], [], trans)
100
self.failUnlessExists('12/@%3A%3C%3E.weave')
101
self.assertEquals(['surprise'], weave_store.get_lines('@:<>', 'r', trans))
103
weave_store.add_text(u'\xe5', 'r', ['unicode'], [], trans)
104
self.failUnlessExists('37/%C3%A5.weave')
105
self.assertEquals(['unicode'], weave_store.get_lines(u'\xe5', 'r', trans))