File: pyketest.py

package info (click to toggle)
pyke 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,196 kB
  • ctags: 1,159
  • sloc: python: 12,866; sh: 446; xml: 203; sql: 39; makefile: 5
file content (66 lines) | stat: -rw-r--r-- 2,326 bytes parent folder | download | duplicates (3)
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
# pyketest.py

from __future__ import with_statement
import types
import unittest
from pyke import knowledge_engine
from pyke import krb_traceback

def mk_engine(*paths):
    if isinstance(self.paths, types.StringTypes):
        self.paths = (self.paths,)
    return knowledge_engine.engine(*paths)

class pyketest(unittest.TestCase):
    # Need to set: engine
    tmp_facts = ()      # sequence of (fb_name, fact_name, fact_arg...)
    rb_names_to_activate = ('test',)
    def activate(self):
        for tmp_fact in self.tmp_facts:
            fb = tmp_fact[0]
            name = tmp_fact[1]
            args = tmp_fact[2:]
            self.tmp_fact(fb, name, *args)
        if hasattr(self, 'add_tmp_facts'): self.add_tmp_facts()
        self.engine.activate(*self.rb_names_to_activate)
    def add_fact(fb, name, *args):
        self.engine.add_universal_fact(fb, name, args)
    def tmp_fact(fb, name, *args):
        self.engine.add_case_specific_fact(fb, name, args)
    def tearDown(self):
        self.engine.reset()

class fc_tests(pyketest):
    def runTest(self):
        self.activate()

class bc_tests(pyketest):
    rb_name = None      # defaults to self.rb_names_to_activate[0]
    # Need to set: goal, num_return
    plan_args = None
    plan_kws = None
    def __init__(self, methodName = 'runTest'):
        super(bc_tests, self).__init__(methodName)
        if self.rb_name is None: self.rb_name = self.rb_names_to_activate[0]
    def setUp(self):
        try:
            self.activate()
        except:
            krb_traceback.print_exc()
            raise
    def bc_test(self, *args):
        ans = []
        with self.engine.prove_n(self.rb_name, self.goal, args,
                                 self.num_return) as gen:
            for ret_args, plan in gen:
                if plan_args is None and plan_kws is None:
                    self.assert_(plan is None, "unexpected plan")
                    ans.append(ret_args)
                else:
                    self.assert_(plan is not None, "expected plan")
                    if plan_args is None: plan_ans = plan(**plan_kws)
                    elif plan_kws is None: plan_ans = plan(*plan_args)
                    else: plan_ans = plan(*plan_args, **plan_vars)
                    ans.append((ret_args, plan_ans))
        return ans