blob: a3577b9b56ccb371d619f1c37e128404957ef27d [file] [log] [blame] [edit]
import sys
import atheris
with atheris.instrument_imports():
import httplib2
import tests
@atheris.instrument_func
def TestOneInput(input_bytes):
http = httplib2.Http()
ib = b"HTTP/1.0 200 OK\r\n" + input_bytes
with tests.server_const_bytes(ib) as uri:
http.request(uri)
def main():
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
atheris.Fuzz()
if __name__ == "__main__":
main()