aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_examples.py
blob: deb97b4933f0b5fadb75348bbbcce4e166748fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import glob
from libmproxy import utils, script
from libmproxy.proxy import config
import tservers

def test_load_scripts():
    example_dir = utils.Data("libmproxy").path("../examples")
    scripts = glob.glob("%s/*.py" % example_dir)

    tmaster = tservers.TestMaster(config.ProxyConfig())

    for f in scripts:
        if "har_extractor" in f:
            f += " foo"
        if "iframe_injector" in f:
            f += " foo"  # one argument required
        if "modify_response_body" in f:
            f += " foo bar"  # two arguments required
        s = script.Script(f, tmaster)  # Loads the script file.
        s.unload()