~ubuntu-branches/debian/squeeze/protobuf/squeeze

« back to all changes in this revision

Viewing changes to python/google/protobuf/internal/input_stream_test.py

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-06-02 16:19:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602161900-vm176i3ryt35yk91
Tags: 2.0.3-2.2
* Non-maintainer upload.
* Fix FTBFS from -2.1: don't fail when we can't clean up the java build,
  such as when openjdk isn't installed.
* Disable parallel builds, because libtool is made of fail (if binary-arch
  and build-indep run concurrently, we relink a library while it's being
  used; that doesn't work so well).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
#
1
3
# Protocol Buffers - Google's data interchange format
2
 
# Copyright 2008 Google Inc.
 
4
# Copyright 2008 Google Inc.  All rights reserved.
3
5
# http://code.google.com/p/protobuf/
4
6
#
5
 
# Licensed under the Apache License, Version 2.0 (the "License");
6
 
# you may not use this file except in compliance with the License.
7
 
# You may obtain a copy of the License at
8
 
#
9
 
#      http://www.apache.org/licenses/LICENSE-2.0
10
 
#
11
 
# Unless required by applicable law or agreed to in writing, software
12
 
# distributed under the License is distributed on an "AS IS" BASIS,
13
 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
# See the License for the specific language governing permissions and
15
 
# limitations under the License.
 
7
# Redistribution and use in source and binary forms, with or without
 
8
# modification, are permitted provided that the following conditions are
 
9
# met:
 
10
#
 
11
#     * Redistributions of source code must retain the above copyright
 
12
# notice, this list of conditions and the following disclaimer.
 
13
#     * Redistributions in binary form must reproduce the above
 
14
# copyright notice, this list of conditions and the following disclaimer
 
15
# in the documentation and/or other materials provided with the
 
16
# distribution.
 
17
#     * Neither the name of Google Inc. nor the names of its
 
18
# contributors may be used to endorse or promote products derived from
 
19
# this software without specific prior written permission.
 
20
#
 
21
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
22
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
23
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
24
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
25
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
26
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
27
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
28
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
29
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
30
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
31
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
32
 
17
33
"""Test for google.protobuf.internal.input_stream."""
18
34
 
29
45
  def testEndOfStream(self):
30
46
    stream = input_stream.InputStream('abcd')
31
47
    self.assertFalse(stream.EndOfStream())
32
 
    self.assertEqual('abcd', stream.ReadString(10))
 
48
    self.assertEqual('abcd', stream.ReadBytes(10))
33
49
    self.assertTrue(stream.EndOfStream())
34
50
 
35
51
  def testPosition(self):
36
52
    stream = input_stream.InputStream('abcd')
37
53
    self.assertEqual(0, stream.Position())
38
54
    self.assertEqual(0, stream.Position())  # No side-effects.
39
 
    stream.ReadString(1)
 
55
    stream.ReadBytes(1)
40
56
    self.assertEqual(1, stream.Position())
41
 
    stream.ReadString(1)
 
57
    stream.ReadBytes(1)
42
58
    self.assertEqual(2, stream.Position())
43
 
    stream.ReadString(10)
 
59
    stream.ReadBytes(10)
44
60
    self.assertEqual(4, stream.Position())  # Can't go past end of stream.
45
61
 
46
62
  def testGetSubBuffer(self):
84
100
    stream.SkipBytes(1)
85
101
    self.assertRaises(message.DecodeError, stream.SkipBytes, -1)
86
102
 
87
 
  def testReadString(self):
 
103
  def testReadBytes(self):
88
104
    s = 'abcd'
89
105
    # Also test going past the total stream length.
90
106
    for i in range(len(s) + 10):
91
107
      stream = input_stream.InputStream(s)
92
 
      self.assertEqual(s[:i], stream.ReadString(i))
 
108
      self.assertEqual(s[:i], stream.ReadBytes(i))
93
109
      self.assertEqual(min(i, len(s)), stream.Position())
94
110
    stream = input_stream.InputStream(s)
95
 
    self.assertRaises(message.DecodeError, stream.ReadString, -1)
 
111
    self.assertRaises(message.DecodeError, stream.ReadBytes, -1)
96
112
 
97
113
  def EnsureFailureOnEmptyStream(self, input_stream_method):
98
114
    """Helper for integer-parsing tests below.