mitmproxy/test/test_examples.py

20 lines
631 B
Python
Raw Normal View History

2014-05-15 12:37:05 +00:00
import glob
2014-07-26 09:51:27 +00:00
from libmproxy import utils, script
2014-05-15 12:37:05 +00:00
from libmproxy.proxy import config
import tservers
2014-07-26 09:51:27 +00:00
def test_load_scripts():
example_dir = utils.Data("libmproxy").path("../examples")
scripts = glob.glob("%s/*.py" % example_dir)
tmaster = tservers.TestMaster(config.ProxyConfig())
2014-05-15 12:37:05 +00:00
2014-07-26 09:51:27 +00:00
for f in scripts:
2014-11-15 22:10:25 +00:00
if "har_extractor" in f:
2014-12-24 00:39:38 +00:00
f += " -"
if "iframe_injector" in f:
f += " foo" # one argument required
2014-07-26 09:51:27 +00:00
if "modify_response_body" in f:
f += " foo bar" # two arguments required
2014-12-01 02:36:04 +00:00
s = script.Script(f, tmaster) # Loads the script file.
s.unload()