Minor housekeeping - unused code, nocover directives.

95% test coverage.
This commit is contained in:
Aldo Cortesi 2011-02-24 15:44:08 +13:00
parent 79039eb5d2
commit 57f96c5fe0
4 changed files with 3 additions and 27 deletions

View File

@ -390,7 +390,9 @@ class FlowMaster(controller.Master):
self.stickycookie_state = False
def _runscript(self, f, script):
return f.run_script(script)
#begin nocover
raise NotImplementedError
#end nocover
def set_response_script(self, s):
self.scripts["response"] = s

View File

@ -434,13 +434,3 @@ def dummy_cert(certdir, ca, commonname):
)
if ret: return None
return certpath
def mkdir_p(path):
try:
os.makedirs(path)
except OSError as exc:
if exc.errno == errno.EEXIST:
pass
else:
raise

View File

@ -71,11 +71,6 @@ if __name__ == '__main__':
"Recorder",
"Options controlling recorder behavior"
)
group.add_option(
"-w", "--store", action="store",
type = "str", dest="cache", default=None,
help = "Session store location"
)
group.add_option(
"-C", "--cookies", action="append",
type = "str", dest="cookies", default=[],
@ -86,14 +81,6 @@ if __name__ == '__main__':
options, args = parser.parse_args()
if options.cache is not None:
options.cache = os.path.expanduser(options.cache)
if options.cache is not None:
utils.mkdir_p(options.cache)
if os.path.exists(options.cache + "/index.txt"):
print >> sys.stderr, "ERROR: data already recorded in %s"%options.cache
sys.exit(1)
config = proxy.process_certificate_option_group(parser, options)
server = proxy.ProxyServer(config, options.port, options.addr)
m = console.ConsoleMaster(server, options)

View File

@ -311,9 +311,6 @@ class udummy_cert(libpry.AutoTree):
tests = [
uformat_timestamp(),
uisBin(),