Skip to content

Commit 7a9fdcc

Browse files
committed
Update chainable function registration
1 parent 5be39c8 commit 7a9fdcc

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed

pythonwhat/sct_syntax.py

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
from protowhat.sct_syntax import (
2-
Chain,
3-
EagerChain,
4-
LazyChain,
5-
state_dec_gen,
6-
)
1+
from protowhat.sct_syntax import EagerChain, ExGen, LazyChainStart, state_dec_gen
72
from pythonwhat.checks.check_wrappers import scts
83
from pythonwhat.State import State
94
from pythonwhat.probe import Node, Probe, TEST_NAMES
@@ -32,13 +27,22 @@ def wrapper(*args, **kwargs):
3227
return wrapper
3328

3429

35-
state_dec = state_dec_gen(State)
30+
state_dec = state_dec_gen(sct_dict)
3631

37-
assert LazyChain # todo: __all__?
32+
# todo: __all__?
33+
assert ExGen
34+
assert LazyChainStart
3835

3936

4037
def Ex(state=None):
41-
return EagerChain(state=state or State.root_state)
38+
return EagerChain(state=state or State.root_state, chainable_functions=sct_dict)
39+
40+
41+
def get_chains():
42+
return {
43+
"Ex": ExGen(sct_dict, State.root_state),
44+
"F": LazyChainStart(sct_dict),
45+
}
4246

4347

4448
if include_v1():
@@ -58,7 +62,5 @@ def Ex(state=None):
5862
for k in ["test_or", "test_correct"]:
5963
sct_dict[k] = multi_dec(getattr(test_funcs, k))
6064

61-
Chain.register_functions(sct_dict)
62-
6365
# Prepare check_funcs to be used alone (e.g. test = check_with().check_body())
6466
v2_check_functions = {k: state_dec(v) for k, v in scts.items()}

pythonwhat/test_exercise.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pythonwhat.State import State
22
from pythonwhat.local import run_exercise
3-
from pythonwhat.sct_syntax import Ex
3+
from pythonwhat.sct_syntax import Ex, get_chains
44
from pythonwhat.utils import check_str, check_process
55
from protowhat.Reporter import Reporter
66
from protowhat.failure import TestFail, InstructorError
@@ -37,7 +37,6 @@ def test_exercise(
3737
"""
3838

3939
reporter = Reporter(errors=[error] if error else [])
40-
tree, sct_cntxt = prep_context()
4140

4241
try:
4342
state = State(
@@ -52,6 +51,7 @@ def test_exercise(
5251
)
5352

5453
State.root_state = state
54+
tree, sct_cntxt = prep_context()
5555

5656
# Actually execute SCTs
5757
exec(sct, sct_cntxt)
@@ -94,7 +94,6 @@ def prep_context():
9494
"from inspect import Parameter as param",
9595
"from pythonwhat.signatures import sig_from_params, sig_from_obj",
9696
"from pythonwhat.State import set_converter",
97-
"from pythonwhat.sct_syntax import LazyChain as F, Ex",
9897
]
9998
[exec(line, None, cntxt) for line in imports]
10099

@@ -106,6 +105,7 @@ def prep_context():
106105
tree = None
107106

108107
cntxt.update(v2_check_functions)
108+
cntxt.update(get_chains())
109109
return tree, cntxt
110110

111111

tests/test_check_files.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ def test_file_existence_syntax(temp_py_file):
6767
file_chain = chain.check_file(temp_py_file.name)
6868
assert expected_content in file_chain._state.student_code
6969

70-
LazyChain.register_functions({"check_file": cf.check_file})
7170
with helper.verify_sct(True):
72-
file_chain = chain >> LazyChain().check_file(temp_py_file.name)
71+
file_chain = chain >> LazyChain(
72+
chainable_functions={"check_file": cf.check_file}
73+
).check_file(temp_py_file.name)
7374
assert expected_content in file_chain._state.student_code
7475

7576

tests/test_spec.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ def test_override(k, code):
289289

290290
# Test SCT Ex syntax (copied from sqlwhat) -----------------------------------
291291

292-
from protowhat.sct_syntax import ChainExtender, ChainedCall
293-
from pythonwhat.sct_syntax import Ex, EagerChain, LazyChain, state_dec
292+
from protowhat.sct_syntax import ChainExtender, ChainedCall, LazyChain
293+
from pythonwhat.sct_syntax import Ex, EagerChain, state_dec
294294

295295

296296
@pytest.fixture

tests/test_v2_only.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
def relooooad():
77
import pythonwhat.sct_syntax
8-
pythonwhat.sct_syntax.Chain.registered_functions = {}
98
importlib.reload(pythonwhat.sct_syntax)
109

1110

0 commit comments

Comments
 (0)