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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
from rpython.rtyper.lltypesystem import rffi
from pypy.interpreter.error import OperationError
from pypy.module.cpyext.test.test_api import BaseApiTest, raises_w
from pypy.module.cpyext.test.test_cpyext import AppTestCpythonExtensionBase
from pypy.module.cpyext.sequence import (
PySequence_Fast, PySequence_Contains, PySequence_Index,
PySequence_GetItem, PySequence_SetItem, PySequence_DelItem)
from pypy.module.cpyext.pyobject import get_w_obj_and_decref, from_ref
from pypy.module.cpyext.state import State
import pytest
class TestSequence(BaseApiTest):
def test_check(self, space, api):
assert api.PySequence_Check(space.newlist([]))
assert not api.PySequence_Check(space.newdict())
def test_sequence_api(self, space, api):
w_tup = space.wrap((1, 2, 3, 4))
assert api.PySequence_Fast(w_tup, "message") is w_tup
w_l = space.wrap([1, 2, 3, 4])
assert api.PySequence_Fast(w_l, "message") is w_l
py_result = api.PySequence_Fast_GET_ITEM(w_l, 1)
w_result = from_ref(space, py_result)
assert space.int_w(w_result) == 2
assert api.PySequence_Fast_GET_SIZE(w_l) == 4
w_set = space.wrap(set((1, 2, 3, 4)))
w_seq = api.PySequence_Fast(w_set, "message")
assert space.type(w_seq) is space.w_tuple
assert space.len_w(w_seq) == 4
w_seq = api.PySequence_Tuple(w_set)
assert space.type(w_seq) is space.w_tuple
assert sorted(space.unwrap(w_seq)) == [1, 2, 3, 4]
w_seq = api.PySequence_List(w_set)
assert space.type(w_seq) is space.w_list
assert sorted(space.unwrap(w_seq)) == [1, 2, 3, 4]
def test_repeat(self, space, api):
def test(seq, count):
w_seq = space.wrap(seq)
w_repeated = api.PySequence_Repeat(w_seq, count)
assert space.eq_w(w_repeated, space.wrap(seq * count))
test((1, 2, 3, 4), 3)
test([1, 2, 3, 4], 3)
def test_concat(self, space, api):
w_t1 = space.wrap(range(4))
w_t2 = space.wrap(range(4, 8))
assert space.unwrap(api.PySequence_Concat(w_t1, w_t2)) == range(8)
def test_inplace_concat(self, space, api):
w_t1 = space.wrap(range(4))
w_t2 = space.wrap(range(4, 8))
w_t3 = api.PySequence_InPlaceConcat(w_t1, w_t2)
assert space.unwrap(w_t3) == range(8)
assert space.unwrap(w_t1) == range(8)
def test_inplace_repeat(self, space, api):
w_t1 = space.wrap(range(2))
w_t2 = api.PySequence_InPlaceRepeat(w_t1, 3)
assert space.unwrap(w_t2) == [0, 1, 0, 1, 0, 1]
def test_exception(self, space):
message = rffi.str2charp("message")
with pytest.raises(OperationError) as excinfo:
PySequence_Fast(space, space.wrap(3), message)
assert excinfo.value.match(space, space.w_TypeError)
assert space.text_w(excinfo.value.get_w_value(space)) == "message"
rffi.free_charp(message)
def test_get_slice(self, space, api):
w_t = space.wrap([1, 2, 3, 4, 5])
assert space.unwrap(api.PySequence_GetSlice(w_t, 2, 4)) == [3, 4]
assert space.unwrap(api.PySequence_GetSlice(w_t, 1, -1)) == [2, 3, 4]
assert api.PySequence_DelSlice(w_t, 1, 4) == 0
assert space.eq_w(w_t, space.wrap([1, 5]))
assert api.PySequence_SetSlice(w_t, 1, 1, space.wrap((3,))) == 0
assert space.eq_w(w_t, space.wrap([1, 3, 5]))
def test_get_slice_fast(self, space, api):
w_t = space.wrap([1, 2, 3, 4, 5])
api.PyList_GetItem(w_t, 0) # converts to cpy strategy
assert space.unwrap(api.PySequence_GetSlice(w_t, 2, 4)) == [3, 4]
assert space.unwrap(api.PySequence_GetSlice(w_t, 1, -1)) == [2, 3, 4]
assert api.PySequence_DelSlice(w_t, 1, 4) == 0
assert space.eq_w(w_t, space.wrap([1, 5]))
assert api.PySequence_SetSlice(w_t, 1, 1, space.wrap((3,))) == 0
assert space.eq_w(w_t, space.wrap([1, 3, 5]))
def test_iter(self, space, api):
w_t = space.wrap((1, 2))
w_iter = api.PySeqIter_New(w_t)
assert space.unwrap(space.next(w_iter)) == 1
assert space.unwrap(space.next(w_iter)) == 2
exc = pytest.raises(OperationError, space.next, w_iter)
assert exc.value.match(space, space.w_StopIteration)
def test_contains(self, space):
w_t = space.wrap((1, 'ha'))
assert PySequence_Contains(space, w_t, space.wrap(u'ha'))
assert not PySequence_Contains(space, w_t, space.wrap(2))
with raises_w(space, TypeError):
PySequence_Contains(space, space.w_None, space.wrap(2))
def test_setitem(self, space, api):
state = space.fromcache(State)
w_value = space.wrap(42)
l = api.PyList_New(1)
result = api.PySequence_SetItem(l, 0, w_value)
assert result != -1
assert space.eq_w(space.getitem(l, space.wrap(0)), w_value)
with raises_w(space, IndexError):
PySequence_SetItem(space, l, 3, w_value)
t = state.C.PyTuple_New(1)
api.PyTuple_SetItem(t, 0, l)
with raises_w(space, TypeError):
PySequence_SetItem(space, t, 0, w_value)
with raises_w(space, TypeError):
PySequence_SetItem(space, space.newdict(), 0, w_value)
def test_delitem(self, space, api):
w_l = space.wrap([1, 2, 3, 4])
result = api.PySequence_DelItem(w_l, 2)
assert result == 0
assert space.eq_w(w_l, space.wrap([1, 2, 4]))
with raises_w(space, IndexError):
PySequence_DelItem(space, w_l, 3)
def test_getitem(self, space, api):
thelist = [8, 7, 6, 5, 4, 3, 2, 1]
w_l = space.wrap(thelist)
py_result = api.PySequence_GetItem(w_l, 4)
result = get_w_obj_and_decref(space, py_result)
assert space.is_true(space.eq(result, space.wrap(4)))
py_result = api.PySequence_ITEM(w_l, 4)
result = get_w_obj_and_decref(space, py_result)
assert space.is_true(space.eq(result, space.wrap(4)))
with raises_w(space, IndexError):
PySequence_GetItem(space, w_l, 9000)
def test_index(self, space, api):
thelist = [9, 8, 7, 6, 5, 4, 3, 2, 1]
w_l = space.wrap(thelist)
w_tofind = space.wrap(5)
result = api.PySequence_Index(w_l, w_tofind)
assert result == thelist.index(5)
w_tofind = space.wrap(9001)
with raises_w(space, ValueError):
PySequence_Index(space, w_l, w_tofind)
w_gen = space.appexec([], """():
return (x ** 2 for x in range(40))""")
w_tofind = space.wrap(16)
result = api.PySequence_Index(w_gen, w_tofind)
assert result == 4
def test_sequence_getitem(self, space, api):
# PySequence_GetItem() is defined to return a new reference.
# When it happens to be called on a list or tuple, it returns
# a new reference that is also kept alive by the fact that it
# lives in the list/tuple. Some code like PyArg_ParseTuple()
# relies on this fact: it decrefs the result of
# PySequence_GetItem() but then expects it to stay alive. Meh.
# Here, we check that we try hard not to break this kind of
# code: if written naively, it could return a fresh PyIntObject,
# for example.
w1 = space.wrap((41, 42, 43))
p1 = api.PySequence_GetItem(w1, 1)
p2 = api.PySequence_GetItem(w1, 1)
assert p1 == p2
assert p1.c_ob_refcnt > 1
#
w1 = space.wrap([41, 42, 43])
p1 = api.PySequence_GetItem(w1, 1)
p2 = api.PySequence_GetItem(w1, 1)
assert p1 == p2
assert p1.c_ob_refcnt > 1
p1 = api.PySequence_GetItem(w1, -1)
p2 = api.PySequence_GetItem(w1, 2)
assert p1 == p2
class AppTestSetObject(AppTestCpythonExtensionBase):
def test_sequence_macro_cast(self):
module = self.import_extension('foo', [
("test_macro_cast", "METH_NOARGS",
"""
PyObject *o = PyList_New(0);
PyListObject* l;
PyList_Append(o, o);
l = (PyListObject*)o;
PySequence_Fast_GET_ITEM(o, 0);
PySequence_Fast_GET_ITEM(l, 0);
PySequence_Fast_GET_SIZE(o);
PySequence_Fast_GET_SIZE(l);
PySequence_ITEM(o, 0);
PySequence_ITEM(l, 0);
return o;
"""
)
])
class TestCPyListStrategy(BaseApiTest):
def test_getitem_setitem(self, space, api):
w_l = space.wrap([1, 2, 3, 4])
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
assert space.int_w(space.len(w_l)) == 4
assert space.int_w(space.getitem(w_l, space.wrap(1))) == 2
assert space.int_w(space.getitem(w_l, space.wrap(0))) == 1
e = pytest.raises(OperationError, space.getitem, w_l, space.wrap(15))
assert "list index out of range" in e.value.errorstr(space)
assert space.int_w(space.getitem(w_l, space.wrap(-1))) == 4
space.setitem(w_l, space.wrap(1), space.wrap(13))
assert space.int_w(space.getitem(w_l, space.wrap(1))) == 13
def test_manipulations(self, space, api):
w = space.wrap
w_l = w([1, 2, 3, 4])
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
space.call_method(w_l, 'insert', w(0), w(0))
assert space.int_w(space.len(w_l)) == 5
assert space.int_w(space.getitem(w_l, w(3))) == 3
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
space.call_method(w_l, 'sort')
assert space.int_w(space.len(w_l)) == 5
assert space.int_w(space.getitem(w_l, w(0))) == 0
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
w_t = space.wrap(space.fixedview(w_l))
assert space.int_w(space.len(w_t)) == 5
assert space.int_w(space.getitem(w_t, w(0))) == 0
w_l2 = space.wrap(space.listview(w_t))
assert space.int_w(space.len(w_l2)) == 5
assert space.int_w(space.getitem(w_l2, w(0))) == 0
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
w_sum = space.add(w_l, w_l)
assert space.int_w(space.len(w_sum)) == 10
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
w_prod = space.mul(w_l, space.wrap(2))
assert space.int_w(space.len(w_prod)) == 10
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
w_l.inplace_mul(2)
assert space.int_w(space.len(w_l)) == 10
def test_getstorage_copy(self, space, api):
w = space.wrap
w_l = w([1, 2, 3, 4])
api.PyList_GetItem(w_l, 0) # converts to cpy strategy
w_l1 = w([])
space.setitem(w_l1, space.newslice(w(0), w(0), w(1)), w_l)
assert map(space.unwrap, space.unpackiterable(w_l1)) == [1, 2, 3, 4]
class AppTestSequenceObject(AppTestCpythonExtensionBase):
def test_fast(self):
module = self.import_extension('foo', [
("test_fast_sequence", "METH_VARARGS",
"""
int size, i;
PyTypeObject * common_type;
PyObject *foo, **objects;
PyObject * seq = PyTuple_GetItem(args, 0);
if (seq == NULL)
Py_RETURN_NONE;
foo = PySequence_Fast(seq, "some string");
objects = PySequence_Fast_ITEMS(foo);
if (objects == NULL)
return NULL;
size = PySequence_Fast_GET_SIZE(foo);
for (i = 0; i < size; ++i) {
if (objects[i] != PySequence_Fast_GET_ITEM(foo, i))
return PyBool_FromLong(0);
}
common_type = size > 0 ? Py_TYPE(objects[0]) : NULL;
for (i = 1; i < size; ++i) {
if (Py_TYPE(objects[i]) != common_type) {
common_type = NULL;
break;
}
}
Py_DECREF(foo);
if (common_type == NULL)
return PyBool_FromLong(0);
Py_DECREF(common_type);
return PyBool_FromLong(1);
""")])
s = [1, 2, 3, 4]
assert module.test_fast_sequence(s[0:-1])
assert module.test_fast_sequence(s[::-1])
s = (1, 2, 3, 4)
assert module.test_fast_sequence(s[0:-1])
assert module.test_fast_sequence(s[::-1])
s = (1, 2) # specialized tuple
assert module.test_fast_sequence(s[0:-1])
assert module.test_fast_sequence(s[::-1])
s = "1234"
assert module.test_fast_sequence(s[0:-1])
assert module.test_fast_sequence(s[::-1])
def test_fast_keyerror(self):
module = self.import_extension('foo', [
("test_fast_sequence", "METH_VARARGS",
"""
PyObject *foo;
PyObject * seq = PyTuple_GetItem(args, 0);
if (seq == NULL)
Py_RETURN_NONE;
foo = PySequence_Fast(seq, "Could not convert object to sequence");
if (foo != NULL)
{
return foo;
}
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
PyErr_Clear();
return PyBool_FromLong(1);
}
return NULL;
""")])
class Map(object):
def __len__(self):
return 1
def __getitem__(self, index):
raise KeyError()
assert module.test_fast_sequence(Map()) is True
def test_getitem_c(self):
module = self.import_extension('foo', [
("dict_assignment", "METH_VARARGS",
"""
PyObject *cls = PyTuple_GetItem(args, 0);
PyObject *func = PyTuple_GetItem(args, 1);
if (cls == NULL)
return NULL;
if (func == NULL)
return NULL;
/* Assign the func to the cls.__dict__ */
if (PyObject_SetAttrString(cls, "__getitem__", func) != 0){
return NULL;
}
Py_RETURN_NONE;
"""),
("test_get_item", "METH_VARARGS",
"""
PyObject *obj, *result=NULL;
int i;
if (PyArg_ParseTuple(args, "Oi:test_get_item", &obj, &i)) {
result = PySequence_GetItem(obj, i);
};
return result;
"""),
])
class A(object):
pass
def getitem(*args):
return 42
module.dict_assignment(A, getitem)
a = A()
assert a[12] == 42
assert module.test_get_item(a, 0) == 42
assert module.test_get_item(b'a', 0) == ord('a')
e = raises(IndexError, module.test_get_item, b'a', -2)
assert "bytes index out of range" in str(e.value)
raises(IndexError, module.test_get_item, b'a', 1)
|