~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_store.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-06-25 10:36:36 UTC
  • mfrom: (3350.6.12 versionedfiles)
  • Revision ID: pqm@pqm.ubuntu.com-20080625103636-6kxh4e1gmyn82f50
(mbp for robertc) VersionedFiles refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
 
399
399
    def test_escaped_uppercase(self):
400
400
        """Uppercase letters are escaped for safety on Windows"""
401
 
        my_store = store.TransportStore(MemoryTransport(), escaped=True)
 
401
        my_store = store.TransportStore(MemoryTransport(), prefixed=True,
 
402
            escaped=True)
402
403
        # a particularly perverse file-id! :-)
403
 
        self.assertEquals(my_store._escape_file_id('C:<>'), '%43%3a%3c%3e')
 
404
        self.assertEquals(my_store._relpath('C:<>'), 'be/%2543%253a%253c%253e')
404
405
 
405
406
 
406
407
class TestVersionFileStore(TestCaseWithTransport):
433
434
        self._transaction = transactions.ReadOnlyTransaction()
434
435
        vf = self.vfstore.get_weave_or_empty('id', self._transaction)
435
436
        self.assertRaises(errors.ReadOnlyError, vf.add_lines, 'b', [], [])
 
437
 
 
438
    def test___iter__escaped(self):
 
439
        self.vfstore = store.versioned.VersionedFileStore(MemoryTransport(),
 
440
            prefixed=True, escaped=True)
 
441
        self.vfstore.get_scope = self.get_scope
 
442
        self._transaction = transactions.WriteTransaction()
 
443
        vf = self.vfstore.get_weave_or_empty(' ', self._transaction)
 
444
        vf.add_lines('a', [], [])
 
445
        del vf
 
446
        self._transaction.finish()
 
447
        self.assertEqual([' '], list(self.vfstore))