File: test_bytes_jy.py

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (262 lines) | stat: -rw-r--r-- 9,558 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# -*- coding: utf-8 -*-
#
# Tests against problems we have seen in Jython's implementation of
# buffer, bytes, bytearray, and memoryview to prevent possible
# regression as well as integration with Java.

import unittest
import test.test_support


class ByteArraySubclassTest(unittest.TestCase):

    def test_len(self):
        class Sub(bytearray): pass
        s = Sub("abc123")
        self.assertEqual(len(s), 6)


class BytesOperationsTest(unittest.TestCase):
    # Tests additional to the CPython library, on bytes/str

    def test_irepeat(self) :

        def check_irepeat(a, n) :
            # Check in-place multiplication (repeats)
            b = bytearray(a)
            b *= n
            self.assertEquals(b, bytearray(a*n))

        def irepeat_export(a, n) :
            # In-place multiplication with export mostly raises BufferError
            b = bytearray(a)
            with memoryview(b) as m:
                b *= n
            # If it doesn't raise, it gets the right answer
            self.assertEquals(b, bytearray(a*n))

        for a in [b'', b'a', b'hello'] :
            check_irepeat(a, 7)
            check_irepeat(a, 1)
            check_irepeat(a, 0)
            check_irepeat(a, -1) # -ve treated as 0

        # Resizing with exports should raise an exception
        self.assertRaises(BufferError, irepeat_export, b'a', 5)
        self.assertRaises(BufferError, irepeat_export, b'hello', 3)
        self.assertRaises(BufferError, irepeat_export, b'hello', 0)
        self.assertRaises(BufferError, irepeat_export, b'hello', -1)

        # These don't raise an exception (CPython 2.7.6, 3.4.1)
        irepeat_export(b'a', 1)
        irepeat_export(b'hello', 1)
        for n in range(-1, 3) :
            irepeat_export(b'', n)

    # The following test_is* tests supplement string_tests for non-ascii examples.
    # The principle is to choose some character codes that are letters, digits
    # or spaces in Unicode but not in ASCII and check they are *not* categorised
    # as such in a byte context.

    def checkequal(self, expected, obj, methodname, *args):
        "check that object.method() returns expected result"
        for B in (bytes, bytearray):
            obj = B(obj)
            realresult = getattr(obj, methodname)()
            grumble = "%r.%s() returned %r" % (obj, methodname, realresult)
            self.assertEqual(expected, realresult, grumble)
            # print grumble, 'x' if realresult != expected else '.'

    LOWER = b'\xe0\xe7\xe9\xff' # Uppercase in Latin-1 but not ascii
    UPPER = b'\xc0\xc7\xc9\xdd' # Lowercase in Latin-1 but not ascii
    DIGIT = b'\xb9\xb2\xb3'     # sup 1, 2, 3: numeric in Python (not Java)
    SPACE = b'\x85\xa0'         # NEXT LINE, NBSP: space in unicode (not in str/bytes)

    def test_isalpha(self):
        for c in self.UPPER + self.LOWER:
            self.checkequal(False, c, 'isalpha')
            self.checkequal(False, b'a' + c + b'Z', 'isalpha')

    def test_isdigit(self):
        for c in self.DIGIT:
            self.checkequal(False, c, 'isdigit')
            self.checkequal(False, b'1' + c + b'3', 'isdigit')

    def test_islower(self):
        for c in self.LOWER:
            self.checkequal(False, c, 'islower')
        for c in self.UPPER:
            self.checkequal(True, b'a' + c + b'z', 'islower')

    def test_isupper(self):
        for c in self.UPPER:
            self.checkequal(False, c, 'isupper')
        for c in self.LOWER:
            self.checkequal(True, b'A' + c + b'Z', 'isupper')

    def test_isspace(self):
        for c in self.SPACE:
            self.checkequal(False, c, 'isspace')
            self.checkequal(False, b'\t' + c + b' ', 'isspace')

    def test_isalnum(self):
        for c in self.UPPER + self.LOWER + self.DIGIT:
            self.checkequal(False, c, 'isalnum')
            self.checkequal(False, b'a' + c + b'3', 'isalnum')

    def test_istitle(self):
        for c in self.UPPER:
            # c should be an un-cased character (effectively a space)
            self.checkequal(False, c, 'istitle')
            self.checkequal(True, b'A' + c + b'Titlecased Line', 'istitle')
            self.checkequal(True, b'A' + c + b' Titlecased Line', 'istitle')
            self.checkequal(True, b'A ' + c + b'Titlecased Line', 'istitle')
        for c in self.LOWER:
            # c should be an un-cased character (effectively a space)
            self.checkequal(True, b'A' + c + b'Titlecased Line', 'istitle')
            self.checkequal(True, b'A ' + c + b' Titlecased Line', 'istitle')

    # The following case-twiddling tests supplement string_tests for
    # non-ascii examples, using characters that are upper/lower-case
    # in latin-1 but uncased in ascii.

    def test_upper(self):
        self.checkequal(b"WAS LOWER:" + self.LOWER,
                        b"was lower:" + self.LOWER, 'upper')

    def test_lower(self):
        self.checkequal(b"was upper:" + self.UPPER,
                        b"WAS UPPER:" + self.UPPER, 'lower')

    def test_capitalize(self):
        for c in self.LOWER:
            self.checkequal(c + b"abcde",
                            c + b"AbCdE", 'capitalize')

    def test_swapcase(self):
        self.checkequal(b"WAS lower:" + self.LOWER,
                        b"was LOWER:" + self.LOWER, 'swapcase')
        self.checkequal(b"was UPPER:" + self.UPPER,
                        b"WAS upper:" + self.UPPER, 'swapcase')

    def test_title(self):
        utitle = u"Le Dîner À Étretat"
        title = utitle.encode('latin-1')
        lower = utitle.lower().encode('latin-1')
        upper = utitle.upper().encode('latin-1')
        # Check we treat an accented character as un-cased (=space)
        self.checkequal(u"Le DîNer à éTretat".encode('latin-1'),
                        lower, 'title')
        self.checkequal(u"Le DÎNer À ÉTretat".encode('latin-1'),
                        upper, 'title')
        self.checkequal(u"Le DîNer À ÉTretat".encode('latin-1'),
                        title, 'title')

    # *strip() tests to supplement string_tests with non-ascii examples,
    # using characters that are spaces in latin-1 but not in ascii.

    def test_strip(self):
        for c in self.SPACE:
            # These should not be stripped at left or right because of c
            sp = b" \t "
            s = c + sp + b"hello" + sp + c
            self.checkequal( s, s, 'strip')
            self.checkequal( s, sp+s+sp, 'strip')
            self.checkequal( sp+s, sp+s, 'rstrip')
            self.checkequal( sp+s, sp+s+sp, 'rstrip')
            self.checkequal( s+sp, s+sp, 'lstrip')
            self.checkequal( s+sp, sp+s+sp, 'lstrip')

    def test_split(self):
        for c in self.SPACE:
            # These should not be split at c
            s = b"AAA" + c + b"BBB"
            self.assertEqual(1, len(s.split()), "split made in " + repr(s))
            self.assertEqual(1, len(s.rsplit()), "rsplit made in " + repr(s))
            s = bytearray(s)
            self.assertEqual(1, len(s.split()), "split made in " + repr(s))
            self.assertEqual(1, len(s.rsplit()), "rsplit made in " + repr(s))


class BufferOperationsTest(unittest.TestCase):
    # Tests additional to the CPython library, on buffer

    def test_repr(self):
        # Exact form of buffer.__repr__
        text = u"Le dîner à Étretat".encode('latin-1')
        buf = buffer(text)
        expected = r"<read-only buffer for 0x[0-9a-fA-F]+, size -1, offset 0 at 0x[0-9a-fA-F]+>"
        self.assertRegexpMatches(repr(buf), expected)
        self.assertRegexpMatches(buf.__repr__(), expected)

    def test_str(self):
        # Exact form of buffer.__str__
        text = u"Le dîner à Étretat".encode('latin-1')
        buf = buffer(text)
        expected = text
        self.assertEqual(str(buf), expected)
        self.assertEqual(buf.__str__(), expected)

    def test_add_memoryview(self):
        b = buffer(b"abc")
        # add memoryview
        c = b + memoryview('xyz')
        self.assertEqual(str(c), 'abcxyz')

    def test_add_bytearray(self):
        b = buffer(b"abc")
        # add bytearray
        b += bytearray('xyz')
        self.assertEqual(str(b), 'abcxyz')

    def test_iadd_memoryview(self):
        b = buffer(b"abc")
        # concatenate memoryview
        b += memoryview('xyz')
        self.assertEqual(str(b), 'abcxyz')

    def test_iadd_bytearray(self):
        b = buffer(b"abc")
        # concatenate bytearray
        b += bytearray('xyz')
        self.assertEqual(str(b), 'abcxyz')


class ByteArrayTest(unittest.TestCase):
    # Tests additional to the CPython library, on bytearray

    def test_add_memoryview(self):
        b = bytearray(b"abc")
        # add memoryview
        c = b + memoryview('xyz')
        self.assertEqual(str(c), 'abcxyz')

    def test_add_buffer(self):
        b = bytearray(b"abc")
        # add buffer
        c = b + buffer('xyz')
        self.assertEqual(str(c), 'abcxyz')

    def test_iadd_memoryview(self):
        b = bytearray(b"abc")
        # concatenate memoryview
        b += memoryview('xyz')
        self.assertEqual(str(b), 'abcxyz')

    def test_iadd_buffer(self):
        b = bytearray(b"abc")
        # concatenate buffer
        b += buffer('xyz')
        self.assertEqual(str(b), 'abcxyz')

def test_main():
    test.test_support.run_unittest(
            ByteArraySubclassTest,
            BytesOperationsTest,
            BufferOperationsTest,
            ByteArrayTest
        )


if __name__ == "__main__":
    test_main()