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
|
#------------------------------------------------------------------------------
# Copyright (c) 2013-2025, 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
from textwrap import dedent
from collections import Counter
import pytest
from enaml.core.declarative_function import (DeclarativeFunction,
BoundDeclarativeMethod)
from utils import compile_source
def test_declarative_function():
"""Test the descriptors and repr of DeclarativeFunction.
"""
def test(a, b=1):
pass
dfunc = DeclarativeFunction(test, '_scope_key')
assert dfunc.__func__ is test
assert dfunc.__key__ == '_scope_key'
assert dfunc._d_func
assert 'declarative function' in repr(dfunc)
with pytest.raises(TypeError) as excinfo:
DeclarativeFunction(1, 1)
assert 'function' in excinfo.exconly()
def test_bound_declarative_method():
"""Test the descriptors and repr of BoundDeclarativeMethod.
"""
def test(a, b=1):
pass
SELF = object()
bdmethod = DeclarativeFunction(test, '_scope_key').__get__(SELF, None)
assert bdmethod.__func__ is test
assert bdmethod.__key__ == '_scope_key'
assert bdmethod.__self__ is SELF
assert 'bound declarative method' in repr(bdmethod)
def test_declarative_function_get_and_call():
"""Test calling DeclarativeFunction and BoundDeclarativeMethod.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func call(arg, kwarg=1):
assert main is self
return main
func call2():
return main
""")
tester = compile_source(source, 'MyWindow')()
bdmethod = tester.call
assert isinstance(bdmethod, BoundDeclarativeMethod)
for i in range(100):
assert bdmethod(1) is tester
assert bdmethod(arg=2) is tester
assert bdmethod(1, kwarg=1) is tester
func = type(tester).call
assert isinstance(func, DeclarativeFunction)
for i in range(100):
assert func(tester, 1) is tester
assert func(tester, arg=1) is tester
assert func(tester, arg=1, kwarg=2) is tester
func = type(tester).call2
assert isinstance(func, DeclarativeFunction)
for i in range(100):
assert func(tester) is tester
assert func(tester) is tester
with pytest.raises(TypeError) as excinfo:
type(tester).call2()
assert 'DeclarativeFunction.__call__()' in excinfo.exconly()
assert '1 argument' in excinfo.exconly()
def test_declarative_function_defaults():
"""Test calling DeclarativeFunction and BoundDeclarativeMethod.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func call(arg, kwarg=1):
return arg, kwarg
""")
tester = compile_source(source, 'MyWindow')()
r = tester.call(2)
assert r == (2, 1)
r = tester.call(2, 3)
assert r == (2, 3)
def test_declarative_function_eq_and_hash():
"""Test that BoundDeclarativeMethod eq works.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func foo(arg):
return arg
func bar():
return main
""")
MyWindow = compile_source(source, 'MyWindow')
tester = MyWindow()
foo = tester.foo
assert tester.foo == foo
assert tester.foo != tester.bar
assert foo != tester.bar
assert hash(foo) == hash(tester.foo)
tester2 = MyWindow()
assert tester2.foo != tester.foo
assert hash(foo) != hash(tester2.foo)
def test_calling_super():
"""Test calling a declarative function using super.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func call(arg, kwarg=1):
return super()
""")
tester = compile_source(source, 'MyWindow')()
with pytest.raises(TypeError) as excinfo:
tester.call(1)
assert 'super()' in excinfo.exconly()
@pytest.mark.parametrize('attribute',
['__builtins__', '_d_storage'])
def test_invoking_broken_dfunc(attribute):
"""Test invoking a declarative function whose one key attribute is missing.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func call(arg, kwarg=1):
return 1
""")
tester = compile_source(source, 'MyWindow')()
if attribute == '__builtins__':
del tester.call.__func__.__globals__['__builtins__']
obj = tester
elif attribute == '_d_storage':
del tester.call.__self__._d_storage
obj = object()
else:
raise RuntimeError('wrong parameter')
exc = KeyError if attribute == '__builtins__' else AttributeError
with pytest.raises(exc) as excinfo:
type(tester).call(obj, 1)
assert attribute in excinfo.exconly()
def test_traversing_bound_method():
"""Test traversing a bound method.
"""
source = dedent("""\
from enaml.widgets.window import Window
enamldef MyWindow(Window): main:
func call(arg, kwarg=1):
return super()
""")
tester = compile_source(source, 'MyWindow')()
assert (Counter(gc.get_referents(tester.call)) ==
Counter([tester.call.__func__, tester, tester.call.__key__] +
([type(tester.call)]))
)
if __name__ == '__main__':
test_bound_declarative_method()
test_declarative_function()
test_declarative_function_get_and_call()
|