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
|
""" Test refcounting and behavior of SCXX.
"""
from __future__ import absolute_import, print_function
import sys
from numpy.testing import (TestCase, dec, assert_, assert_raises,
run_module_suite)
from scipy.weave import inline_tools
class TestDictConstruct(TestCase):
#------------------------------------------------------------------------
# Check that construction from basic types is allowed and have correct
# reference counts
#------------------------------------------------------------------------
@dec.slow
def test_empty(self):
# strange int value used to try and make sure refcount is 2.
code = """
py::dict val;
return_val = val;
"""
res = inline_tools.inline(code)
assert_(sys.getrefcount(res) == 2)
assert_(res == {})
class TestDictHasKey(TestCase):
@dec.slow
def test_obj(self):
class Foo:
pass
key = Foo()
a = {}
a[key] = 12345
code = """
return_val = a.has_key(key);
"""
res = inline_tools.inline(code,['a','key'])
assert_(res)
@dec.slow
def test_int(self):
a = {}
a[1234] = 12345
code = """
return_val = a.has_key(1234);
"""
res = inline_tools.inline(code,['a'])
assert_(res)
@dec.slow
def test_double(self):
a = {}
a[1234.] = 12345
code = """
return_val = a.has_key(1234.);
"""
res = inline_tools.inline(code,['a'])
assert_(res)
@dec.slow
def test_complex(self):
a = {}
a[1+1j] = 12345
key = 1+1j
code = """
return_val = a.has_key(key);
"""
res = inline_tools.inline(code,['a','key'])
assert_(res)
@dec.slow
def test_string(self):
a = {}
a["b"] = 12345
code = """
return_val = a.has_key("b");
"""
res = inline_tools.inline(code,['a'])
assert_(res)
@dec.slow
def test_std_string(self):
a = {}
a["b"] = 12345
key_name = "b"
code = """
return_val = a.has_key(key_name);
"""
res = inline_tools.inline(code,['a','key_name'])
assert_(res)
@dec.slow
def test_string_fail(self):
a = {}
a["b"] = 12345
code = """
return_val = a.has_key("c");
"""
res = inline_tools.inline(code,['a'])
assert_(not res)
class TestDictGetItemOp(TestCase):
def generic_get(self,code,args=['a']):
a = {}
a['b'] = 12345
res = inline_tools.inline(code,args)
assert_(res == a['b'])
@dec.slow
def test_char(self):
self.generic_get('return_val = a["b"];')
@dec.knownfailureif(True)
@dec.slow
def test_char_fail(self):
# We can't through a KeyError for dicts on RHS of
# = but not on LHS. Not sure how to deal with this.
assert_raises(KeyError, self.generic_get, 'return_val = a["c"];')
@dec.slow
def test_string(self):
self.generic_get('return_val = a[std::string("b")];')
@dec.slow
def test_obj(self):
code = """
py::object name = "b";
return_val = a[name];
"""
self.generic_get(code,['a'])
@dec.knownfailureif(True)
@dec.slow
def test_obj_fail(self):
# We can't through a KeyError for dicts on RHS of
# = but not on LHS. Not sure how to deal with this.
code = """
py::object name = "c";
return_val = a[name];
"""
assert_raises(KeyError, self.generic_get, code, ['a'])
class TestDictSetOperator(TestCase):
def generic_new(self,key,val):
# test that value is set correctly and that reference counts
# on dict, key, and val are being handled correctly.
a = {}
# call once to handle mysterious addition of one ref count
# on first call to inline.
inline_tools.inline("a[key] = val;",['a','key','val'])
assert_(a[key] == val)
before = sys.getrefcount(a), sys.getrefcount(key), sys.getrefcount(val)
inline_tools.inline("a[key] = val;",['a','key','val'])
assert_(a[key] == val)
after = sys.getrefcount(a), sys.getrefcount(key), sys.getrefcount(val)
assert_(before == after)
def generic_overwrite(self,key,val):
a = {}
overwritten = 1
a[key] = overwritten # put an item in the dict to be overwritten
# call once to handle mysterious addition of one ref count
# on first call to inline.
before_overwritten = sys.getrefcount(overwritten)
inline_tools.inline("a[key] = val;",['a','key','val'])
assert_(a[key] == val)
before = sys.getrefcount(a), sys.getrefcount(key), sys.getrefcount(val)
inline_tools.inline("a[key] = val;",['a','key','val'])
assert_(a[key] == val)
after = sys.getrefcount(a), sys.getrefcount(key), sys.getrefcount(val)
after_overwritten = sys.getrefcount(overwritten)
assert_(before == after)
assert_(before_overwritten == after_overwritten)
@dec.slow
def test_new_int_int(self):
key,val = 1234,12345
self.generic_new(key,val)
@dec.slow
def test_new_double_int(self):
key,val = 1234.,12345
self.generic_new(key,val)
@dec.slow
def test_new_std_string_int(self):
key,val = "hello",12345
self.generic_new(key,val)
@dec.slow
def test_new_complex_int(self):
key,val = 1+1j,12345
self.generic_new(key,val)
@dec.slow
def test_new_obj_int(self):
class Foo:
pass
key,val = Foo(),12345
self.generic_new(key,val)
@dec.slow
def test_overwrite_int_int(self):
key,val = 1234,12345
self.generic_overwrite(key,val)
@dec.slow
def test_overwrite_double_int(self):
key,val = 1234.,12345
self.generic_overwrite(key,val)
@dec.slow
def test_overwrite_std_string_int(self):
key,val = "hello",12345
self.generic_overwrite(key,val)
@dec.slow
def test_overwrite_complex_int(self):
key,val = 1+1j,12345
self.generic_overwrite(key,val)
@dec.slow
def test_overwrite_obj_int(self):
class Foo:
pass
key,val = Foo(),12345
self.generic_overwrite(key,val)
class TestDictDel(TestCase):
def generic(self,key):
# test that value is set correctly and that reference counts
# on dict, key, are being handled correctly. after deletion,
# the keys refcount should be one less than before.
a = {}
a[key] = 1
inline_tools.inline("a.del(key);",['a','key'])
assert_(key not in a)
a[key] = 1
before = sys.getrefcount(a), sys.getrefcount(key)
inline_tools.inline("a.del(key);",['a','key'])
assert_(key not in a)
after = sys.getrefcount(a), sys.getrefcount(key)
assert_(before[0] == after[0])
assert_(before[1] == after[1] + 1)
@dec.slow
def test_int(self):
key = 1234
self.generic(key)
@dec.slow
def test_double(self):
key = 1234.
self.generic(key)
@dec.slow
def test_std_string(self):
key = "hello"
self.generic(key)
@dec.slow
def test_complex(self):
key = 1+1j
self.generic(key)
@dec.slow
def test_obj(self):
class Foo:
pass
key = Foo()
self.generic(key)
class TestDictOthers(TestCase):
@dec.slow
def test_clear(self):
a = {}
a["hello"] = 1
inline_tools.inline("a.clear();",['a'])
assert_(not a)
@dec.slow
def test_items(self):
a = {}
a["hello"] = 1
items = inline_tools.inline("return_val = a.items();",['a'])
assert_(items == a.items())
@dec.slow
def test_values(self):
a = {}
a["hello"] = 1
values = inline_tools.inline("return_val = a.values();",['a'])
assert_(values == a.values())
@dec.slow
def test_keys(self):
a = {}
a["hello"] = 1
keys = inline_tools.inline("return_val = a.keys();",['a'])
assert_(keys == a.keys())
@dec.slow
def test_update(self):
a,b = {},{}
a["hello"] = 1
b["hello"] = 2
inline_tools.inline("a.update(b);",['a','b'])
assert_(a == b)
if __name__ == "__main__":
run_module_suite()
|