Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/enginetests.py
blob: 2cb233027ebb11c90c01b7d662d5c921e73b37a0 (plain)
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
# Copyright (C) 2009, Tutorius.org
# Copyright (C) 2009, Michael Janelle-Montcalm <michael.jmontcalm@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
"""
Core Tests

This module contains all the tests that pertain to the usage of the Tutorius
Core. This means that the Event Filters, the Finite State Machine and all the 
related elements and interfaces are tested here.

Usage of actions and event filters is tested, but not the concrete actions
and event filters. Those are in their separate test module

"""

import unittest

from copy import deepcopy

from sugar.tutorius.tutorial import Tutorial
from sugar.tutorius.engine import TutorialRunner

from actiontests import CountAction, FakeEventFilter

class MockProbeMgr(object):
    def __init__(self):
        self.action = None
        self.event = None
        self.cB = None

    def doCB(self):
        self.cB(self.event)

    currentActivity = property(fget=lambda s:s, fset=lambda s, v: v)

    def install(self, action, block=False):
        self.action = action

    def update(self, action, newaction, block=False):
        self.action = newaction

    def uninstall(self, action, block=False):
        self.action = None

    def subscribe(self, event, callback):
        self.event = event
        self.cB = callback
        return str(event)

    def unsubscribe(self, address):
        self.event = address

class TutorialRunnerTest(unittest.TestCase):
    """
    This class needs to test the TutorialRunner
    """
    def setUp(self):
        self.pM = MockProbeMgr()
        self.runner = TutorialRunner(self.pM)

    def tearDown(self):
        self.runner = None
        self.pM = None

    
if __name__ == "__main__":
    unittest.main()