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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
#------------------------------------------------------------------------------
# Copyright (c) 2018-2024, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
import gc
import sys
from collections import Counter
import pytest
from atom.datastructures.api import sortedmap
from enaml.core.dynamicscope import UserKeyError, DynamicScope
@pytest.fixture
def dynamicscope():
"""Dynamic used for testing.
"""
class NonDataDescriptor(object):
def __init__(self, should_raise=False):
self.should_raise = should_raise
def __get__(self, instance, objtype=None):
if instance is None:
return self
if not self.should_raise:
return instance
else:
raise KeyError()
class ReadOnlyDescriptor(object):
def __get__(self, instance, objtype=None):
return 1
def __set__(self, instance, objtype=None):
raise AttributeError
class WriteOnlyDescriptor(object):
def __set__(self, instance, value, objtype=None):
instance.value = 1
class Owner(object):
def __init__(self):
self._parent = None
self.attribute1 = 1
self._prop2 = 0
self._top = 0
self.should_raise = True
owner = NonDataDescriptor()
prop1 = ReadOnlyDescriptor()
@property
def prop2(self):
return self._prop2
@prop2.setter
def prop2(self, value):
self._prop2 = value
@property
def key_raise(self):
if self.should_raise:
raise KeyError()
non_data_key_raise = NonDataDescriptor(True)
write_only = WriteOnlyDescriptor()
class TopOwner(Owner):
@property
def top(self):
return self._top
@top.setter
def top(self, value):
self._top = 1
class Tracer(object):
"""Tracer for testing.
"""
def __init__(self):
self.traced = []
def dynamic_load(self, owner, name, value):
self.traced.append((owner, name, value))
owner = Owner()
owner.attribute1 = 2
owner._parent = TopOwner()
owner._parent.attribute2 = 1
locs = sortedmap()
locs['a'] = 1
globs = {'b': 2}
builtins = {'c': 3}
change = {'d': 4}
tracer = Tracer()
dynamicscope = DynamicScope(owner, locs, globs, builtins, change, tracer)
dynamicscope['e'] = 5 # Add an entry in the f_writes
return dynamicscope, (owner, locs, globs, builtins, change, tracer)
def test_dynamic_scope_creation():
"""Test handling bad arguments when creating dnamic scope.
"""
owner = object()
locs = sortedmap()
globs = {}
builtins = {}
change = {}
tracer = object()
dynamicscope = DynamicScope(owner, locs, globs, builtins, change, tracer)
referents = gc.get_referents(dynamicscope)
supposed_referents = (
[owner, change, tracer, locs, globs, builtins] +
([type(dynamicscope)])
)
assert len(referents) == len(supposed_referents)
for r in referents:
assert r in supposed_referents
with pytest.raises(TypeError) as excinfo:
DynamicScope(owner, None, globs, builtins)
assert 'mapping' in excinfo.exconly()
with pytest.raises(TypeError) as excinfo:
DynamicScope(owner, locs, None, builtins)
assert 'dict' in excinfo.exconly()
with pytest.raises(TypeError) as excinfo:
DynamicScope(owner, locs, globs, None)
assert 'dict' in excinfo.exconly()
del dynamicscope
gc.collect()
def test_dynamicscope_contains(dynamicscope):
"""Test the contains method.
"""
dynamicscope, _ = dynamicscope
for key in ('a', 'b', 'c', 'e',
'self', 'change', 'nonlocals', '__scope__', '_[tracer]'):
assert key in dynamicscope
assert 'z' not in dynamicscope
with pytest.raises(TypeError):
1 in dynamicscope
def test_dynamicscope_getitem(dynamicscope):
"""Test the getitem method.
"""
dynamicscope, args = dynamicscope
nlocals = dynamicscope['nonlocals']
for key, value in zip(['a', 'b', 'c', 'e', 'self', 'change',
'nonlocals', '__scope__', '_[tracer]'],
[1, 2, 3, 5,
args[0], args[-2],
nlocals, dynamicscope, args[-1]]):
assert dynamicscope[key] == value
with pytest.raises(KeyError):
dynamicscope['z']
with pytest.raises(TypeError) as excinfo:
dynamicscope[1]
assert 'str' in excinfo.exconly()
def test_dynamicscope_get(dynamicscope):
"""Test the get method.
"""
dynamicscope, args = dynamicscope
nlocals = dynamicscope['nonlocals']
for key, value in zip(['a', 'b', 'c', 'e', 'self', 'change',
'nonlocals', '__scope__', '_[tracer]'],
[1, 2, 3, 5,
args[0], args[-2],
nlocals, dynamicscope, args[-1]]):
assert dynamicscope.get(key) == value
assert dynamicscope.get('z') == None
assert dynamicscope.get('z', 'abc') == 'abc'
with pytest.raises(TypeError) as excinfo:
dynamicscope.get(1)
with pytest.raises(TypeError) as excinfo:
dynamicscope.get()
with pytest.raises(TypeError) as excinfo:
dynamicscope.get("name", "default", "extra")
def test_dynamicscope_set(dynamicscope):
"""Test the set method.
"""
dynamicscope, _ = dynamicscope
for key, value in zip(['a', 'b', 'c', 'e'],
[1, 2, 3, 5]):
dynamicscope[key] += 1
assert dynamicscope[key] == value + 1
with pytest.raises(TypeError) as excinfo:
dynamicscope[1] = 1
assert 'str' in excinfo.exconly()
def test_dynamicscope_del(dynamicscope):
"""Test the del method.
"""
dynamicscope, args = dynamicscope
del dynamicscope['e']
assert 'e' not in dynamicscope
with pytest.raises(KeyError):
del dynamicscope['z']
dynamicscope = DynamicScope(*args)
# Test the absence of f_writes
with pytest.raises(KeyError):
del dynamicscope['z']
with pytest.raises(TypeError) as excinfo:
del dynamicscope[1]
assert 'str' in excinfo.exconly()
def test_dynamicscope_mapping(dynamicscope):
"""Test the contains items, keys, value, update, and iter."""
dynamicscope, extra = dynamicscope
owner = extra[0]
change = extra[4]
assert "attribute1" in list(dynamicscope)
keys = {
"a",
"b",
"c",
"e",
"self",
"change",
"attribute1",
"attribute2",
"key_raise",
"non_data_key_raise",
"owner",
"prop1",
"prop2",
"write_only",
"should_raise",
"top"
}
# There is a bunch of __...__ we don't care about'
assert not keys.difference(set(dynamicscope.keys()))
all_keys = list(dynamicscope)
print(all_keys)
assert not keys.difference(set(all_keys))
# These cause errors...
owner.should_raise = False
owner.__class__.non_data_key_raise.should_raise = False
parent = owner._parent
values = list(dynamicscope.values())
for v in (0, 1, 2, 3, 5, owner, change):
assert v in values
dynamicscope.update({"x": "y"})
with pytest.raises(AttributeError):
dynamicscope.update(1) # not mapping
with pytest.raises(TypeError):
dynamicscope.update({1: 2}) # invalid key type
keys.add("x")
assert dict(dynamicscope.items())["x"] == "y"
@pytest.fixture
def nonlocals(dynamicscope):
"""Access the nonlocals of a dynamic scope.
"""
return dynamicscope[0]['nonlocals']
def test_dynamicscope_lifecycle(dynamicscope, nonlocals):
"""Test the repr, traverse, clear etc...
"""
owner, tracer = dynamicscope[1][0], dynamicscope[1][-1]
assert 'Nonlocals[' in repr(nonlocals)
assert (Counter(gc.get_referents(nonlocals)) ==
Counter([owner, tracer] + ([type(nonlocals)]))
)
del dynamicscope
gc.collect()
def test_nonlocals_contains(nonlocals):
"""Test nonlocals contains.
"""
for key in ('attribute1', 'attribute2', 'owner', 'prop2', 'key_raise'):
assert key in nonlocals
with pytest.raises(TypeError):
1 in nonlocals
def test_nonlocals_get(dynamicscope, nonlocals):
"""Test accessing attribute through getattr and getitem
"""
tracer = dynamicscope[1][-1]
assert nonlocals.attribute1 == 2
assert tracer.traced[-1][1] == 'attribute1'
assert nonlocals.attribute2 == 1
assert tracer.traced[-1][1] == 'attribute2'
assert nonlocals.owner
assert tracer.traced[-1][1] == 'owner'
assert nonlocals.prop2 == 0
assert tracer.traced[-1][1] == 'prop2'
with pytest.raises(AttributeError):
nonlocals.unknown
with pytest.raises(UserKeyError):
nonlocals.key_raise
assert nonlocals['attribute1'] == 2
assert nonlocals['attribute2'] == 1
assert nonlocals['owner']
assert nonlocals['prop2'] == 0
with pytest.raises(AttributeError):
nonlocals.unknown
with pytest.raises(UserKeyError):
nonlocals.key_raise
with pytest.raises(UserKeyError):
nonlocals.non_data_key_raise
with pytest.raises(TypeError):
nonlocals[1]
# Test non-readable descriptor
nonlocals.write_only
assert tracer.traced[-1][1] == 'write_only'
def test_nonlocals_set(nonlocals):
"""Test setting attribute through setatttr and setitem.
"""
nonlocals.attribute1 = 3
assert nonlocals.attribute1 == 3
nonlocals['attribute1'] = 4
assert nonlocals.attribute1 == 4
nonlocals.prop2 = 3
assert nonlocals.prop2 == 3
nonlocals['prop2'] = 4
assert nonlocals.prop2 == 4
nonlocals.top = 1
assert nonlocals.top == 1
nonlocals.write_only = 1
del nonlocals.attribute1
assert nonlocals.attribute1 == 1
with pytest.raises(AttributeError):
nonlocals.prop1 = 1
with pytest.raises(AttributeError):
del nonlocals.unknown
# write in the absence of an instance dict
del nonlocals.owner.__dict__
nonlocals.attribute1 = 3
assert nonlocals.attribute1 == 3
with pytest.raises(TypeError):
nonlocals[1] = 1
# Test setting a non-data descriptor
nonlocals.owner = 1
assert nonlocals.owner == 1
def test_nonlocals_call(dynamicscope, nonlocals):
"""Test calling a nonlocals to go up one level.
"""
owner = dynamicscope[1][0]
par_nonlocals = nonlocals(1)
assert par_nonlocals.owner is owner._parent
assert par_nonlocals.attribute1 == 1
with pytest.raises(ValueError):
nonlocals(level=2)
|