aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_script.py
blob: ad2296efd0ca7e38d00fe4eb994569116337028d (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
from libmproxy import script, flow
import tutils
import shlex
import os
import time


class TCounter:
    count = 0

    def __call__(self, *args, **kwargs):
        self.count += 1


class TScriptContext(TCounter):
    def log(self, msg):
        self.__call__()

class TestScript:
    def test_simple(self):
        s = flow.State()
        fm = flow.FlowMaster(None, s)
        ctx = flow.ScriptContext(fm)

        p = script.Script(shlex.split(tutils.test_data.path("scripts/a.py")+" --var 40", posix=(os.name != "nt")), ctx)
        p.load()

        assert "here" in p.ns
        assert p.run("here") == (True, 41)
        assert p.run("here") == (True, 42)

        ret = p.run("errargs")
        assert not ret[0]
        assert len(ret[1]) == 2

        # Check reload
        p.load()
        assert p.run("here") == (True, 41)

    def test_duplicate_flow(self):
        s = flow.State()
        fm = flow.FlowMaster(None, s)
        fm.load_script([tutils.test_data.path("scripts/duplicate_flow.py")])
        r = tutils.treq()
        fm.handle_request(r)
        assert fm.state.flow_count() == 2
        assert not fm.state.view[0].request.is_replay()
        assert fm.state.view[1].request.is_replay()

    def test_err(self):
        s = flow.State()
        fm = flow.FlowMaster(None, s)
        ctx = flow.ScriptContext(fm)


        s = script.Script(["nonexistent"], ctx)
        tutils.raises(
            "no such file",
            s.load
        )

        s = script.Script([tutils.test_data.path("scripts")], ctx)
        tutils.raises(
            "not a file",
            s.load
        )

        s = script.Script([tutils.test_data.path("scripts/syntaxerr.py")], ctx)
        tutils.raises(
            script.ScriptError,
            s.load
        )

        s = script.Script([tutils.test_data.path("scripts/loaderr.py")], ctx)
        tutils.raises(
            script.ScriptError,
            s.load
        )

    def test_concurrent(self):
        s = flow.State()
        fm = flow.FlowMaster(None, s)
        fm.load_script([tutils.test_data.path("scripts/concurrent_decorator.py")])

        reply = TCounter()
        r1, r2 = tutils.treq(), tutils.treq()
        r1.reply, r2.reply = reply, reply
        t_start = time.time()
        fm.handle_request(r1)
        r1.reply()
        fm.handle_request(r2)
        r2.reply()
        assert reply.count < 2
        assert (time.time() - t_start) < 0.09
        time.sleep(0.2)
        assert reply.count == 2

    def test_concurrent2(self):
        ctx = TScriptContext()
        s = script.Script([tutils.test_data.path("scripts/concurrent_decorator.py")], ctx)
        s.load()
        f = tutils.tflow_full()
        f.error = tutils.terr(f.request)
        f.reply = f.request.reply

        s.run("clientconnect", f)
        s.run("serverconnect", f)
        s.run("response", f)
        s.run("error", f)
        s.run("clientdisconnect", f)
        time.sleep(0.1)
        assert ctx.count == 5

    def test_concurrent_err(self):
        s = script.Script([tutils.test_data.path("scripts/concurrent_decorator_err.py")], TScriptContext())
        tutils.raises(
            "decorator not supported for this method",
            s.load
        )