minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
1.24 kB
import os
from prance import ResolvingParser
from build_graph import parse
from ga.ga_generator import GAGenerator
from utils.auth_util import get_token, SUT
def default_reclimit_handler(limit, parsed_url, recursions=()):
"""Raise prance.util.url.ResolutionError."""
return {
"type": "string",
"name": "Recursive Dependency"
}
def main():
# testing arguments format: swagger address, server address, system under test's name, *args to obtain token
test_args = ['../pet.json', 'http://localhost', SUT.BITBUCKET]
parser = ResolvingParser(test_args[0],
recursion_limit_handler=default_reclimit_handler, backend='openapi-spec-validator')
apis, odg = parse(parser.specification)
odg.draw()
# headers = get_token(SUT.SPREE, "http://192.168.74.135:3000")
# api_fuzzer = APIFuzzer(apis, parser.specification, odg, 'https://demo.traccar.org/api/')
# api_fuzzer = APIFuzzer(apis, parser.specification, odg, 'http://192.168.74.135:3000', pre_defined_headers=headers)
token = get_token(*test_args[2:])
api_fuzzer = GAGenerator(apis, parser.specification, odg, test_args[1], time_budget=10)
api_fuzzer.run()
if __name__ == '__main__':
main()