~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bencode.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-04 17:12:29 UTC
  • mto: This revision was merged to the branch mainline in revision 4410.
  • Revision ID: john@arbash-meinel.com-20090604171229-kbgfatt63y3u3uh1
Some small tweaks to decoding strings (avoid passing over the length 2x)

Down to 1.1s (from 1.4s) for decoding all of bzr.dev.
Also, favor decoding strings and then lists in _decode_object, since that is the
frequency we have those types inside Revisions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        self._run_check_error(ValueError, '00:')
102
102
        self._run_check_error(ValueError, '35208734823ljdahflajhdf')
103
103
        self._run_check_error(ValueError, '432432432432432:foo')
104
 
        self._run_check_error(ValueError, 'i' + ('1' * 1000) + ':')
 
104
        self._run_check_error(ValueError, ' 1:x') # leading whitespace
 
105
        self._run_check_error(ValueError, '-1:x') # negative
 
106
        self._run_check_error(ValueError, '1 x') # space vs colon
 
107
        self._run_check_error(ValueError, '1x') # missing colon
 
108
        self._run_check_error(ValueError, ('1' * 1000) + ':')
105
109
 
106
110
    def test_list(self):
107
111
        self._check([], 'le')