e69745adc8
Fixed #99 : SheerkaQueryManager: I can manage contains predicate when filtering objects Fixed #97 : ERROR: list indices must be integers or slices, not Concept Fixed #96 : SequenceNodeParser: SequenceNodeParser must correctly handle concept definition Fixed #95 : ResolveAmbiguity must not remove concepts that do not require evaluation Fixed #94 : Concepts with the same key are lost when new ontology Fixed #93 : Introduce BuiltinConcepts.EVAL_GLOBAL_TRUTH_REQUESTED Fixed #92 : ExpressionParser: Implement compile_disjunctions() Fixed #91 : Implement get_concepts_complexity(context, concepts, concept_parts) Fixed #90 : ResolveAmbiguity : where predicate is not used to resolve ambiguity Fixed #89 : ResolveAmbiguityEvaluator: Concepts embedded in ConceptNode are not resolved Fixed #88: SyaNodeParser: Parse multiple parameters when some of the are not recognized Fixed #87: SyaNodeParser : Parse the multiple parameters
50 lines
2.2 KiB
Python
50 lines
2.2 KiB
Python
import pytest
|
|
|
|
from core.builtin_concepts import BuiltinConcepts, ReturnValueConcept, UserInputConcept
|
|
from core.concept import Concept
|
|
from evaluators.PrepareEvalGlobalTruthEvaluator import PrepareEvalGlobalTruthEvaluator
|
|
|
|
from tests.TestUsingMemoryBasedSheerka import TestUsingMemoryBasedSheerka
|
|
|
|
r = ReturnValueConcept
|
|
|
|
|
|
class TestPrepareEvalGlobalTruthEvaluator(TestUsingMemoryBasedSheerka):
|
|
|
|
@pytest.mark.parametrize("ret_val, expected", [
|
|
(r("name", True, UserInputConcept("global_truth(1 + 1)")), True),
|
|
(r("name", True, UserInputConcept(" global_truth(1 + 1) ")), True),
|
|
(r("name", True, UserInputConcept("global_truth()")), False),
|
|
(r("name", True, UserInputConcept("1+1")), False),
|
|
(r("name", True, UserInputConcept("")), False),
|
|
(r("name", True, UserInputConcept("global_truth(")), False),
|
|
(r("name", True, UserInputConcept(")")), False),
|
|
(r("name", True, UserInputConcept([])), False),
|
|
(r("name", True, Concept("foo")), False),
|
|
(r("name", True, "not a concept"), False),
|
|
(r("name", False, UserInputConcept("global_truth(1 + 1)")), False),
|
|
])
|
|
def test_i_can_match(self, ret_val, expected):
|
|
context = self.get_context()
|
|
assert PrepareEvalGlobalTruthEvaluator().matches(context, ret_val) == expected
|
|
|
|
@pytest.mark.parametrize("ret_val, expected", [
|
|
(r("name", True, UserInputConcept("global_truth(1 + 1)")), "1 + 1"),
|
|
(r("name", True, UserInputConcept(" global_truth( 1 + 1 ) ")), "1 + 1"),
|
|
])
|
|
def test_i_can_eval(self, ret_val, expected):
|
|
context = self.get_context()
|
|
sheerka = context.sheerka
|
|
|
|
prepare_evaluator = PrepareEvalGlobalTruthEvaluator()
|
|
prepare_evaluator.matches(context, ret_val)
|
|
res = prepare_evaluator.eval(context, ret_val)
|
|
|
|
assert res.status
|
|
assert sheerka.isinstance(res.body, BuiltinConcepts.USER_INPUT)
|
|
assert res.body.body == expected
|
|
|
|
assert BuiltinConcepts.EVAL_GLOBAL_TRUTH_REQUESTED in context.protected_hints
|
|
assert BuiltinConcepts.EVAL_BODY_REQUESTED in context.protected_hints
|
|
assert BuiltinConcepts.RETURN_BODY_REQUESTED in context.protected_hints
|