Module clingox.testing.ast
This module provides high-level functions to create unit tests for
AST
s.
Functions
def parse_literal(lit: str) ‑> AST
-
Expand source code
def parse_literal(lit: str) -> AST: """ Parse a literal. """ stm = parse_statement(f":-{lit}.") if stm.body[0].ast_type != ASTType.Literal: raise RuntimeError("syntax error: lit must be a string representing a literal") return stm.body[0]
Parse a literal.
def parse_statement(stm: str) ‑> AST
-
Expand source code
def parse_statement(stm: str) -> AST: """ Parse a statement. """ stms: List[AST] = [] parse_string(stm, stms.append, logger=lambda code, msg: None, message_limit=1) if len(stms) != 2: raise RuntimeError( f"syntax error: stm must contain exactly one statement, {len(stms)} given" ) return cast(AST, stms[1])
Parse a statement.
def parse_term(term: str) ‑> AST
-
Expand source code
def parse_term(term: str) -> AST: """ Parse a term. """ lit = parse_literal(f"atom({term})") return lit.atom.symbol.arguments[0]
Parse a term.
Classes
class ASTTestCase (methodName: str = 'runTest')
-
Expand source code
class ASTTestCase(TestCase): """ Class for comparing with `clingo.ast.AST`s. """ def __init__(self, methodName: str = "runTest"): """ Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name. """ super().__init__(methodName) self.addTypeEqualityFunc(AST, self.assertASTEqual) def assertASTEqual(self, first: AST, second: AST, msg: Any = None): """ Test whether two `clingo.ast.AST`s are equal. """ # pylint: disable=invalid-name self.assertIsInstance(first, AST, "First argument is not an AST") self.assertIsInstance(second, AST, "Second argument is not an AST") self.assertEqual(str(first), str(second), msg) first_repr = pformat(first, hide_location=True) + "\n" second_repr = pformat(second, hide_location=True) + "\n" self.assertEqual(first_repr, second_repr, msg) assert first == second
Class for comparing with
AST
s.Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Ancestors
- unittest.case.TestCase
Methods
def assertASTEqual(self,
first: AST,
second: AST,
msg: Any = None)-
Expand source code
def assertASTEqual(self, first: AST, second: AST, msg: Any = None): """ Test whether two `clingo.ast.AST`s are equal. """ # pylint: disable=invalid-name self.assertIsInstance(first, AST, "First argument is not an AST") self.assertIsInstance(second, AST, "Second argument is not an AST") self.assertEqual(str(first), str(second), msg) first_repr = pformat(first, hide_location=True) + "\n" second_repr = pformat(second, hide_location=True) + "\n" self.assertEqual(first_repr, second_repr, msg) assert first == second
Test whether two
AST
s are equal.