1
# Copyright (C) 2005 by Canonical 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
from StringIO import StringIO
19
from bzrlib.branch import Branch
20
from bzrlib.errors import BzrBadParameterNotString, NoSuchFile, ReadOnlyError
21
from bzrlib.lockable_files import LockableFiles
22
from bzrlib.tests import TestCaseInTempDir
23
from bzrlib.transactions import PassThroughTransaction, ReadOnlyTransaction
24
from bzrlib.transport import get_transport
26
class TestLockableFiles(TestCaseInTempDir):
29
super(TestLockableFiles, self).setUp()
30
transport = get_transport('.')
31
transport.mkdir('.bzr')
32
transport.put('.bzr/my-lock', StringIO(''))
33
self.lockable = LockableFiles(transport.clone('.bzr'), 'my-lock')
35
def test_read_write(self):
36
self.assertRaises(NoSuchFile, self.lockable.get, 'foo')
37
self.assertRaises(NoSuchFile, self.lockable.get_utf8, 'foo')
38
self.lockable.lock_write()
40
unicode_string = u'bar\u1234'
41
self.assertEqual(4, len(unicode_string))
42
byte_string = unicode_string.encode('utf-8')
43
self.assertEqual(6, len(byte_string))
44
self.assertRaises(UnicodeEncodeError, self.lockable.put, 'foo',
45
StringIO(unicode_string))
46
self.lockable.put('foo', StringIO(byte_string))
47
self.assertEqual(byte_string,
48
self.lockable.get('foo').read())
49
self.assertEqual(unicode_string,
50
self.lockable.get_utf8('foo').read())
51
self.assertRaises(BzrBadParameterNotString,
52
self.lockable.put_utf8,
54
StringIO(unicode_string)
56
self.lockable.put_utf8('bar', unicode_string)
57
self.assertEqual(unicode_string,
58
self.lockable.get_utf8('bar').read())
59
self.assertEqual(byte_string,
60
self.lockable.get('bar').read())
62
self.lockable.unlock()
65
self.lockable.lock_read()
67
self.assertRaises(ReadOnlyError, self.lockable.put, 'foo',
68
StringIO('bar\u1234'))
70
self.lockable.unlock()
72
def test_transactions(self):
73
self.assertIs(self.lockable.get_transaction().__class__,
74
PassThroughTransaction)
75
self.lockable.lock_read()
77
self.assertIs(self.lockable.get_transaction().__class__,
80
self.lockable.unlock()
81
self.assertIs(self.lockable.get_transaction().__class__,
82
PassThroughTransaction)
83
self.lockable.lock_write()
84
self.assertIs(self.lockable.get_transaction().__class__,
85
PassThroughTransaction)
86
self.lockable.unlock()
88
def test__escape(self):
89
self.assertEqual('%25', self.lockable._escape('%'))
91
def test__escape_empty(self):
92
self.assertEqual('', self.lockable._escape(''))