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
|
|
|
|
|
2015-03-12 05:57:10 +00:00
|
|
|
|
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 += " -"
|
2014-09-05 13:05:44 +00:00
|
|
|
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
|
2015-03-12 05:57:10 +00:00
|
|
|
try:
|
|
|
|
s = script.Script(f, tmaster) # Loads the script file.
|
|
|
|
except Exception, v:
|
|
|
|
if not "ImportError" in str(v):
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
s.unload()
|