├── .github ├── ISSUE_TEMPLATE │ ├── 01-bug-report.yml │ ├── 02-feature-request.yml │ ├── 03-question.yml │ ├── 04-blank.yml │ └── config.yml ├── actions │ └── utilities │ │ └── check_stderr.py ├── dependabot.yml └── workflows │ └── ci_build_test_pr.yaml ├── .gitignore ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── ci_build_pipelines ├── publish-restler.yml ├── stages │ ├── build │ │ ├── build.yml │ │ └── steps │ │ │ └── restlerfullbuild.yml │ └── test │ │ ├── steps │ │ ├── compilerFunctionalTests.yml │ │ ├── engineUnitTests.yml │ │ └── quickStartTests.yml │ │ └── test.yml └── variables │ └── version-variables.yml ├── demo_server ├── Dockerfile ├── README.md ├── demo_server │ ├── app.py │ ├── db.py │ ├── db.sqlite │ ├── routers │ │ ├── blog.py │ │ └── doc.py │ └── schemas.py ├── requirements.txt └── swagger.json ├── docker └── Dockerfile ├── docs ├── contributor-guide │ ├── Contributing.md │ ├── DeveloperGuide.md │ ├── EngineGettingStarted.md │ └── PullRequestTemplate.md └── user-guide │ ├── Annotations.md │ ├── Authentication.md │ ├── BestPractices.md │ ├── BugBuckets.md │ ├── Checkers.md │ ├── CompilerConfig.md │ ├── Compiling.md │ ├── Examples.md │ ├── FAQ.md │ ├── Fuzzing.md │ ├── FuzzingDictionary.md │ ├── GettingStartedWorkflow.dot │ ├── GettingStartedWorkflow.png │ ├── ImprovingCoverage.md │ ├── Links.md │ ├── QuickStart.md │ ├── RESTler-arch.png │ ├── Replay.md │ ├── ResultsAnalyzer.md │ ├── SettingsFile.md │ ├── Telemetry.md │ ├── Testing.md │ ├── TutorialDemoServer.md │ └── icse2019.bib ├── global.json ├── restler-quick-start.py ├── restler ├── .vscode │ └── settings.json ├── __init__.py ├── checkers │ ├── README.md │ ├── __init__.py │ ├── body_schema_fuzzer.py │ ├── checker_base.py │ ├── checker_log.py │ ├── demo_checker.py │ ├── examples_checker.py │ ├── invalid_dynamic_object_checker.py │ ├── invalid_value_checker.py │ ├── invalid_value_checker_value_gen.py │ ├── leakage_rule_checker.py │ ├── namespace_rule_checker.py │ ├── payload_body_bucketing.py │ ├── payload_body_checker.py │ ├── resource_hierarchy_checker.py │ ├── response_analyzer.py │ └── use_after_free_checker.py ├── end_to_end_tests │ ├── baselines │ │ └── mutated_swagger_coverage_failures.txt │ └── test_quick_start.py ├── engine │ ├── __init__.py │ ├── bug_bucketing.py │ ├── core │ │ ├── __init__.py │ │ ├── async_request_utilities.py │ │ ├── driver.py │ │ ├── fuzzer.py │ │ ├── fuzzing_monitor.py │ │ ├── fuzzing_requests.py │ │ ├── postprocessing.py │ │ ├── preprocessing.py │ │ ├── renderings_monitor.py │ │ ├── request_utilities.py │ │ ├── requests.py │ │ ├── retry_handler.py │ │ ├── sequences.py │ │ └── status_codes_monitor.py │ ├── dependencies.py │ ├── errors.py │ ├── fuzzing_parameters │ │ ├── body_schema.py │ │ ├── fuzzing_config.py │ │ ├── fuzzing_utils.py │ │ ├── param_combinations.py │ │ ├── parameter_schema.py │ │ ├── request_examples.py │ │ ├── request_params.py │ │ └── request_schema_parser.py │ ├── mime │ │ ├── __init__.py │ │ └── multipart_formdata.py │ ├── primitives.py │ └── transport_layer │ │ ├── __init__.py │ │ ├── messaging.py │ │ └── response.py ├── requirements.txt ├── restler.py ├── restler_settings.py ├── test_servers │ ├── README.md │ ├── __init__.py │ ├── log_parser.py │ ├── parsed_requests.py │ ├── resource_base.py │ ├── test_server_base.py │ ├── test_socket.py │ └── unit_test_server │ │ ├── __init__.py │ │ ├── unit_test_resources.py │ │ └── unit_test_server.py ├── unit_tests │ ├── __init__.py │ ├── authentication_test_files │ │ ├── authentication_token.txt │ │ ├── token_cmd_authentication_settings.json │ │ ├── token_location_authentication_settings.json │ │ ├── token_module_authentication_data_settings.json │ │ ├── token_module_authentication_settings.json │ │ ├── unit_test_server_auth.py │ │ └── unit_test_server_auth_module.py │ ├── grammar_schema_test_files │ │ ├── README.txt │ │ ├── demo_server_grammar.json │ │ ├── demo_server_grammar.py │ │ ├── null_test_example_grammar.json │ │ ├── null_test_example_grammar.py │ │ ├── null_test_swagger.json │ │ ├── readonly_test_grammar.json │ │ ├── readonly_test_grammar.py │ │ ├── readonly_test_swagger.json │ │ ├── simple_swagger_all_param_data_types.json │ │ ├── simple_swagger_all_param_data_types_grammar.json │ │ ├── simple_swagger_all_param_data_types_grammar.py │ │ ├── simple_swagger_all_param_data_types_local_examples.json │ │ ├── simple_swagger_all_param_data_types_local_examples_grammar.json │ │ ├── simple_swagger_all_param_data_types_local_examples_grammar.py │ │ ├── simple_swagger_all_param_types.json │ │ ├── simple_swagger_all_param_types_dict.json │ │ ├── simple_swagger_all_param_types_grammar.json │ │ ├── simple_swagger_all_param_types_grammar.py │ │ ├── simple_swagger_annotations.json │ │ ├── simple_swagger_annotations_uuid4_suffix.json │ │ ├── simple_swagger_annotations_uuid4_suffix.py │ │ ├── simple_swagger_with_annotations_grammar.json │ │ ├── simple_swagger_with_annotations_grammar.py │ │ ├── substitute_body_regression_test_grammar.json │ │ ├── substitute_body_regression_test_grammar.py │ │ ├── uuidsuffix_test_grammar.json │ │ ├── uuidsuffix_test_grammar.py │ │ └── uuidsuffix_test_swagger.json │ ├── log_baseline_test_files │ │ ├── Bug_Buckets_Json │ │ │ ├── Bugs_Bucket_AsJson.json │ │ │ ├── InvalidDynamicObjectChecker_20x_1.json │ │ │ └── UseAfterFreeChecker_20x_1.json │ │ ├── ab_flaky_b_all_combinations_speccov.json │ │ ├── ab_flaky_b_all_combinations_testing_log.txt │ │ ├── ab_flaky_b_grammar.py │ │ ├── abc_dict.json │ │ ├── abc_smoke_test_invalid_b_testing_log.txt │ │ ├── abc_smoke_test_settings_prefix_cache.json │ │ ├── abc_smoke_test_testing_log.txt │ │ ├── abc_smoke_test_testing_log_all_combinations.txt │ │ ├── abc_smoke_test_trace_data_baseline.txt │ │ ├── abc_test_grammar.py │ │ ├── abc_test_grammar_combinations.py │ │ ├── abc_test_grammar_invalid_b.py │ │ ├── abc_test_grammar_without_responses.py │ │ ├── always_render_full_seq_settings.json │ │ ├── checkers_bug_buckets.txt │ │ ├── checkers_gc_log.txt │ │ ├── checkers_testing_log.txt │ │ ├── create_once_gc_log.txt │ │ ├── create_once_pre_log.txt │ │ ├── create_once_testing_log.txt │ │ ├── custom_value_gen.py │ │ ├── dynamic_obj_dict.json │ │ ├── examples_gc_log.txt │ │ ├── examples_testing_log.txt │ │ ├── fuzz_testing_log.txt │ │ ├── gc_test_dict.json │ │ ├── gc_test_grammar.py │ │ ├── gc_test_settings.json │ │ ├── invalidvalue_advanced_bug_buckets.txt │ │ ├── invalidvalue_advanced_testing_log.txt │ │ ├── invalidvalue_bug_buckets.txt │ │ ├── invalidvalue_gc_log.txt │ │ ├── invalidvalue_testing_log.txt │ │ ├── multidict_gc_log.txt │ │ ├── multidict_testing_log.txt │ │ ├── payloadbody_advanced_testing_log.txt │ │ ├── payloadbody_bug_buckets.txt │ │ ├── payloadbody_gc_log.txt │ │ ├── payloadbody_testing_log.txt │ │ ├── replay_sanity_test_for_tracedb.replay.txt │ │ ├── smoke_test_gc_log.txt │ │ ├── smoke_test_testing_log.txt │ │ ├── test_dict.json │ │ ├── test_dict2.json │ │ ├── test_dynamic_obj_writer.py │ │ ├── test_fuzz_settings.json │ │ ├── test_gc_during_main_loop_settings.json │ │ ├── test_grammar.json │ │ ├── test_grammar.py │ │ ├── test_grammar_body.json │ │ ├── test_grammar_body.py │ │ ├── test_grammar_bugs.py │ │ ├── test_invalid_value_checker_settings.json │ │ ├── test_one_schema_settings.json │ │ ├── test_settings_createonce.json │ │ ├── test_settings_multidict.json │ │ ├── trace_data_baseline.ndjson │ │ ├── trace_data_baseline_checkers.ndjson │ │ ├── trace_data_replay_baseline.ndjson │ │ ├── trace_db_text_serializer.py │ │ ├── value_gen_dict.json │ │ ├── value_gen_settings.json │ │ ├── value_gen_test_grammar.py │ │ └── value_gen_testing_log.txt │ ├── pytest.ini │ ├── restler_user_settings.json │ ├── test_auth_parser.py │ ├── test_basic_functionality_end_to_end.py │ ├── test_candidate_values.py │ ├── test_grammar_schema_parser.py │ ├── test_log_parsers.py │ ├── test_logs │ │ ├── bug_buckets.txt │ │ ├── bug_buckets2.txt │ │ ├── bug_buckets3.txt │ │ ├── bug_buckets4.txt │ │ ├── bug_buckets_bad.txt │ │ ├── fuzzing_log.txt │ │ ├── fuzzing_log_2.txt │ │ ├── fuzzing_log_3.txt │ │ ├── fuzzing_log_bad.txt │ │ ├── gc_log.txt │ │ ├── gc_log_2.txt │ │ └── gc_log_bad.txt │ ├── test_restler_settings.py │ ├── test_retry_handler.py │ └── test_test_server.py └── utils │ ├── __init__.py │ ├── formatting.py │ ├── hooks.py │ ├── import_utilities.py │ ├── logger.py │ ├── logging │ ├── ndjson_serializer.py │ ├── serializer_base.py │ └── trace_db.py │ ├── network_logs │ └── diff_network_logs.py │ └── saver.py ├── src ├── Restler.sln ├── ResultsAnalyzer │ ├── Analyze │ │ ├── Buckets.fs │ │ ├── Main.fs │ │ └── Types.fs │ ├── Common │ │ ├── Abstractions.fs │ │ ├── Http.fs │ │ ├── Log.fs │ │ └── Utilities.fs │ ├── Convert.fs │ ├── Diff │ │ ├── Diff.fs │ │ ├── DiffHttp.fs │ │ ├── DiffLines.fs │ │ └── Main.fs │ ├── Overview.fs │ ├── OverviewDiff.fs │ ├── Program.fs │ ├── ResultsAnalyzer.fsproj │ ├── Timing.fs │ └── packages.lock.json ├── compiler │ ├── Restler.Compiler.Test │ │ ├── CodeGeneratorTests.fs │ │ ├── ConfigTests.fs │ │ ├── DependencyTests.fs │ │ ├── DictionaryTests.fs │ │ ├── ExampleTests.fs │ │ ├── JsonGrammarTests.fs │ │ ├── RealWorldTests.fs │ │ ├── ReferencesTests.fs │ │ ├── Restler.Compiler.Test.fsproj │ │ ├── SchemaTests.fs │ │ ├── SwaggerSpecs.fs │ │ ├── TestUtilities.fs │ │ ├── baselines │ │ │ ├── dependencyTests │ │ │ │ ├── header_deps_grammar.py │ │ │ │ ├── header_response_writer_annotation_grammar.py │ │ │ │ ├── header_response_writer_grammar.py │ │ │ │ ├── ordering_test_grammar.py │ │ │ │ ├── path_annotation_grammar.py │ │ │ │ ├── path_in_dictionary_payload_grammar.py │ │ │ │ ├── soft_delete_test_grammar1.py │ │ │ │ └── soft_delete_test_grammar2.py │ │ │ ├── dictionaryTests │ │ │ │ ├── customPayloadContentType_grammar.py │ │ │ │ ├── customPayloadDict_ValueGeneratorTemplate.py │ │ │ │ ├── customPayloadHeaderContentType_grammar.py │ │ │ │ └── quoted_primitives_grammar.py │ │ │ ├── exampleTests │ │ │ │ ├── array_example_grammar.py │ │ │ │ └── body_param_exactCopy_grammar.py │ │ │ ├── grammarTests │ │ │ │ ├── required_params_grammar.json │ │ │ │ ├── required_params_grammar.py │ │ │ │ └── required_params_grammar_requiredonly.py │ │ │ └── schemaTests │ │ │ │ ├── path_param_substrings_grammar.json │ │ │ │ ├── path_param_substrings_grammar.py │ │ │ │ ├── xMsPaths_grammar.json │ │ │ │ └── xMsPaths_grammar.py │ │ ├── packages.lock.json │ │ └── swagger │ │ │ ├── annotationTests │ │ │ ├── globalAnnotations.json │ │ │ ├── localAnnotations.json │ │ │ ├── pathAnnotation.json │ │ │ └── pathAnnotationInSeparateFile.json │ │ │ ├── array_example.json │ │ │ ├── array_example_annotations.json │ │ │ ├── array_example_external.json │ │ │ ├── configTests │ │ │ ├── dict1.json │ │ │ ├── dict2.json │ │ │ ├── exampleConfigTestConfig1.json │ │ │ ├── exampleConfigTestConfig2.json │ │ │ ├── exampleConfigTestPut.json │ │ │ ├── maindict.json │ │ │ ├── restlerEngineSettings.json │ │ │ ├── swagger1.json │ │ │ ├── swagger2.json │ │ │ └── swagger3.json │ │ │ ├── demo_server.json │ │ │ ├── dependencyTests │ │ │ ├── array_dep_multiple_items.json │ │ │ ├── body_dependency_cycles.json │ │ │ ├── examples │ │ │ │ ├── create_application_gateway.json │ │ │ │ ├── create_network_interface.json │ │ │ │ ├── create_subnet.json │ │ │ │ └── create_vnet_with_subnet.json │ │ │ ├── frontend_port_id.json │ │ │ ├── header_deps.json │ │ │ ├── header_deps_annotations.json │ │ │ ├── inconsistent_casing_paths.json │ │ │ ├── input_producer_annotations.json │ │ │ ├── input_producer_dict.json │ │ │ ├── input_producer_spec.json │ │ │ ├── ip_configurations_get.json │ │ │ ├── lowercase_paths.json │ │ │ ├── nested_objects_naming.json │ │ │ ├── ordering_test.json │ │ │ ├── ordering_test_annotations.json │ │ │ ├── ordering_test_anntations.json │ │ │ ├── post_patch_dependency.json │ │ │ ├── response_headers.json │ │ │ ├── response_headers_annotations.json │ │ │ ├── same_body_dep.json │ │ │ ├── same_body_dep_annotations.json │ │ │ ├── simple_api_soft_delete.json │ │ │ ├── simple_api_soft_delete_annotations1.json │ │ │ ├── simple_api_soft_delete_annotations2.json │ │ │ ├── simple_crud_api.json │ │ │ ├── simple_crud_api_annotations.json │ │ │ └── subnet_id.json │ │ │ ├── dict_secgroup_example.json │ │ │ ├── dictionaryTests │ │ │ ├── customPayloadContentTypeSwagger.json │ │ │ ├── customPayloadDict.json │ │ │ ├── customPayloadHeaderRequestTypeDict.json │ │ │ ├── customPayloadRequestTypeDict.json │ │ │ ├── customPayloadSwagger.json │ │ │ ├── dict.json │ │ │ ├── inject_custom_payloads_dict.json │ │ │ ├── multipleIdenticalUuidSuffix.json │ │ │ ├── multipleIdenticalUuidSuffixDict.json │ │ │ ├── no_params.json │ │ │ ├── pathDictionaryPayload.json │ │ │ └── serializationTestDict.json │ │ │ ├── empty_array_example.json │ │ │ ├── exactCopy │ │ │ ├── array_example.json │ │ │ ├── examples.json │ │ │ └── make_order_post.json │ │ │ ├── exampleTests │ │ │ ├── body_param.json │ │ │ ├── body_param_example.json │ │ │ ├── example_int_openapi3.yml │ │ │ ├── optional_params.json │ │ │ └── optional_params_example.json │ │ │ ├── example_config_file.json │ │ │ ├── example_demo.json │ │ │ ├── example_demo1.json │ │ │ ├── example_demo1.yaml │ │ │ ├── example_demo_dictionary.json │ │ │ ├── examples │ │ │ ├── ApplicationSecurityGroupCreate.json │ │ │ ├── headers_example.json │ │ │ ├── inline_payload_examples.json │ │ │ ├── make_big_order.json │ │ │ ├── make_order.json │ │ │ ├── make_order1.json │ │ │ ├── make_order2.json │ │ │ ├── make_order_descriptions.json │ │ │ ├── make_order_empty_descriptions.json │ │ │ └── make_order_tags.json │ │ │ ├── get_path_dependencies.json │ │ │ ├── grammarTests │ │ │ └── required_params.json │ │ │ ├── headers.json │ │ │ ├── headers_dict.json │ │ │ ├── inline_examples.json │ │ │ ├── linksTests │ │ │ ├── annotations.json │ │ │ ├── etag_with_annotations.json │ │ │ ├── etag_with_links.json │ │ │ ├── soft_delete.json │ │ │ ├── soft_delete_with_links.json │ │ │ ├── widgets_with_annotations.yaml │ │ │ └── widgets_with_links.yaml │ │ │ ├── object_example.json │ │ │ ├── put_createorupdate.json │ │ │ ├── referencesTests │ │ │ ├── circular_array.json │ │ │ ├── circular_path.json │ │ │ ├── first.json │ │ │ ├── multiple_circular_paths.json │ │ │ ├── second.json │ │ │ └── second_reordered.json │ │ │ ├── schemaTests │ │ │ ├── additionalProperties.yml │ │ │ ├── global_path_parameters.json │ │ │ ├── large_json_body.json │ │ │ ├── openapi3_examples.json │ │ │ ├── openapi3_requestbody.json │ │ │ ├── path_param_substrings.json │ │ │ ├── requiredHeader.yml │ │ │ ├── swagger_escape_characters.json │ │ │ ├── xMsPaths.json │ │ │ ├── xMsPaths_annotations.json │ │ │ ├── xMsPaths_dict.json │ │ │ └── xMsPaths_examples.json │ │ │ └── secgroup_example.json │ ├── Restler.Compiler │ │ ├── AccessPaths.fs │ │ ├── Annotations.fs │ │ ├── ApiResourceTypes.fs │ │ ├── CodeGenerator.fs │ │ ├── Compiler.fs │ │ ├── Config.fs │ │ ├── Dependencies.fs │ │ ├── DependencyAnalysisTypes.fs │ │ ├── Dictionary.fs │ │ ├── Examples.fs │ │ ├── Grammar.fs │ │ ├── Restler.Compiler.fsproj │ │ ├── RestlerEngineSettings.fs │ │ ├── Swagger.fs │ │ ├── SwaggerSpecPreprocessor.fs │ │ ├── SwaggerVisitors.fs │ │ ├── Telemetry.fs │ │ ├── Utilities.fs │ │ ├── Workflow.fs │ │ ├── XMsPaths.fs │ │ └── packages.lock.json │ └── Restler.CompilerExe │ │ ├── Program.fs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Restler.CompilerExe.fsproj │ │ └── packages.lock.json └── driver │ ├── Files.fs │ ├── LogCollection.fs │ ├── Program.fs │ ├── Restler.Driver.fsproj │ ├── SpecCoverage.fs │ ├── TaskResults.fs │ ├── Telemetry.fs │ ├── Types.fs │ ├── packages.lock.json │ └── runtimeconfig.template.json └── utilities ├── grammar └── update_restler_grammar.py └── speccovparsing ├── diff_speccov.py └── sum_speccov.py /.github/ISSUE_TEMPLATE/01-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/ISSUE_TEMPLATE/01-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/ISSUE_TEMPLATE/02-feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/ISSUE_TEMPLATE/03-question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/ISSUE_TEMPLATE/04-blank.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | 3 | -------------------------------------------------------------------------------- /.github/actions/utilities/check_stderr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/actions/utilities/check_stderr.py -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci_build_test_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.github/workflows/ci_build_test_pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ci_build_pipelines/publish-restler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/publish-restler.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/build/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/build/build.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/build/steps/restlerfullbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/build/steps/restlerfullbuild.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/test/steps/compilerFunctionalTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/test/steps/compilerFunctionalTests.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/test/steps/engineUnitTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/test/steps/engineUnitTests.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/test/steps/quickStartTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/test/steps/quickStartTests.yml -------------------------------------------------------------------------------- /ci_build_pipelines/stages/test/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/stages/test/test.yml -------------------------------------------------------------------------------- /ci_build_pipelines/variables/version-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/ci_build_pipelines/variables/version-variables.yml -------------------------------------------------------------------------------- /demo_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/Dockerfile -------------------------------------------------------------------------------- /demo_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/README.md -------------------------------------------------------------------------------- /demo_server/demo_server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/app.py -------------------------------------------------------------------------------- /demo_server/demo_server/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/db.py -------------------------------------------------------------------------------- /demo_server/demo_server/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/db.sqlite -------------------------------------------------------------------------------- /demo_server/demo_server/routers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/routers/blog.py -------------------------------------------------------------------------------- /demo_server/demo_server/routers/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/routers/doc.py -------------------------------------------------------------------------------- /demo_server/demo_server/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/demo_server/schemas.py -------------------------------------------------------------------------------- /demo_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/requirements.txt -------------------------------------------------------------------------------- /demo_server/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/demo_server/swagger.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/contributor-guide/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/contributor-guide/Contributing.md -------------------------------------------------------------------------------- /docs/contributor-guide/DeveloperGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/contributor-guide/DeveloperGuide.md -------------------------------------------------------------------------------- /docs/contributor-guide/EngineGettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/contributor-guide/EngineGettingStarted.md -------------------------------------------------------------------------------- /docs/contributor-guide/PullRequestTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/contributor-guide/PullRequestTemplate.md -------------------------------------------------------------------------------- /docs/user-guide/Annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Annotations.md -------------------------------------------------------------------------------- /docs/user-guide/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Authentication.md -------------------------------------------------------------------------------- /docs/user-guide/BestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/BestPractices.md -------------------------------------------------------------------------------- /docs/user-guide/BugBuckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/BugBuckets.md -------------------------------------------------------------------------------- /docs/user-guide/Checkers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Checkers.md -------------------------------------------------------------------------------- /docs/user-guide/CompilerConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/CompilerConfig.md -------------------------------------------------------------------------------- /docs/user-guide/Compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Compiling.md -------------------------------------------------------------------------------- /docs/user-guide/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Examples.md -------------------------------------------------------------------------------- /docs/user-guide/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/FAQ.md -------------------------------------------------------------------------------- /docs/user-guide/Fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Fuzzing.md -------------------------------------------------------------------------------- /docs/user-guide/FuzzingDictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/FuzzingDictionary.md -------------------------------------------------------------------------------- /docs/user-guide/GettingStartedWorkflow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/GettingStartedWorkflow.dot -------------------------------------------------------------------------------- /docs/user-guide/GettingStartedWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/GettingStartedWorkflow.png -------------------------------------------------------------------------------- /docs/user-guide/ImprovingCoverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/ImprovingCoverage.md -------------------------------------------------------------------------------- /docs/user-guide/Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Links.md -------------------------------------------------------------------------------- /docs/user-guide/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/QuickStart.md -------------------------------------------------------------------------------- /docs/user-guide/RESTler-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/RESTler-arch.png -------------------------------------------------------------------------------- /docs/user-guide/Replay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Replay.md -------------------------------------------------------------------------------- /docs/user-guide/ResultsAnalyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/ResultsAnalyzer.md -------------------------------------------------------------------------------- /docs/user-guide/SettingsFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/SettingsFile.md -------------------------------------------------------------------------------- /docs/user-guide/Telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Telemetry.md -------------------------------------------------------------------------------- /docs/user-guide/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/Testing.md -------------------------------------------------------------------------------- /docs/user-guide/TutorialDemoServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/TutorialDemoServer.md -------------------------------------------------------------------------------- /docs/user-guide/icse2019.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/docs/user-guide/icse2019.bib -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/global.json -------------------------------------------------------------------------------- /restler-quick-start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler-quick-start.py -------------------------------------------------------------------------------- /restler/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/.vscode/settings.json -------------------------------------------------------------------------------- /restler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/checkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/README.md -------------------------------------------------------------------------------- /restler/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/__init__.py -------------------------------------------------------------------------------- /restler/checkers/body_schema_fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/body_schema_fuzzer.py -------------------------------------------------------------------------------- /restler/checkers/checker_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/checker_base.py -------------------------------------------------------------------------------- /restler/checkers/checker_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/checker_log.py -------------------------------------------------------------------------------- /restler/checkers/demo_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/demo_checker.py -------------------------------------------------------------------------------- /restler/checkers/examples_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/examples_checker.py -------------------------------------------------------------------------------- /restler/checkers/invalid_dynamic_object_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/invalid_dynamic_object_checker.py -------------------------------------------------------------------------------- /restler/checkers/invalid_value_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/invalid_value_checker.py -------------------------------------------------------------------------------- /restler/checkers/invalid_value_checker_value_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/invalid_value_checker_value_gen.py -------------------------------------------------------------------------------- /restler/checkers/leakage_rule_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/leakage_rule_checker.py -------------------------------------------------------------------------------- /restler/checkers/namespace_rule_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/namespace_rule_checker.py -------------------------------------------------------------------------------- /restler/checkers/payload_body_bucketing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/payload_body_bucketing.py -------------------------------------------------------------------------------- /restler/checkers/payload_body_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/payload_body_checker.py -------------------------------------------------------------------------------- /restler/checkers/resource_hierarchy_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/resource_hierarchy_checker.py -------------------------------------------------------------------------------- /restler/checkers/response_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/response_analyzer.py -------------------------------------------------------------------------------- /restler/checkers/use_after_free_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/checkers/use_after_free_checker.py -------------------------------------------------------------------------------- /restler/end_to_end_tests/baselines/mutated_swagger_coverage_failures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/end_to_end_tests/baselines/mutated_swagger_coverage_failures.txt -------------------------------------------------------------------------------- /restler/end_to_end_tests/test_quick_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/end_to_end_tests/test_quick_start.py -------------------------------------------------------------------------------- /restler/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/engine/bug_bucketing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/bug_bucketing.py -------------------------------------------------------------------------------- /restler/engine/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/engine/core/async_request_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/async_request_utilities.py -------------------------------------------------------------------------------- /restler/engine/core/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/driver.py -------------------------------------------------------------------------------- /restler/engine/core/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/fuzzer.py -------------------------------------------------------------------------------- /restler/engine/core/fuzzing_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/fuzzing_monitor.py -------------------------------------------------------------------------------- /restler/engine/core/fuzzing_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/fuzzing_requests.py -------------------------------------------------------------------------------- /restler/engine/core/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/postprocessing.py -------------------------------------------------------------------------------- /restler/engine/core/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/preprocessing.py -------------------------------------------------------------------------------- /restler/engine/core/renderings_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/renderings_monitor.py -------------------------------------------------------------------------------- /restler/engine/core/request_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/request_utilities.py -------------------------------------------------------------------------------- /restler/engine/core/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/requests.py -------------------------------------------------------------------------------- /restler/engine/core/retry_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/retry_handler.py -------------------------------------------------------------------------------- /restler/engine/core/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/sequences.py -------------------------------------------------------------------------------- /restler/engine/core/status_codes_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/core/status_codes_monitor.py -------------------------------------------------------------------------------- /restler/engine/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/dependencies.py -------------------------------------------------------------------------------- /restler/engine/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/errors.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/body_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/body_schema.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/fuzzing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/fuzzing_config.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/fuzzing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/fuzzing_utils.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/param_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/param_combinations.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/parameter_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/parameter_schema.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/request_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/request_examples.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/request_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/request_params.py -------------------------------------------------------------------------------- /restler/engine/fuzzing_parameters/request_schema_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/fuzzing_parameters/request_schema_parser.py -------------------------------------------------------------------------------- /restler/engine/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/engine/mime/multipart_formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/mime/multipart_formdata.py -------------------------------------------------------------------------------- /restler/engine/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/primitives.py -------------------------------------------------------------------------------- /restler/engine/transport_layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/engine/transport_layer/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/transport_layer/messaging.py -------------------------------------------------------------------------------- /restler/engine/transport_layer/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/engine/transport_layer/response.py -------------------------------------------------------------------------------- /restler/requirements.txt: -------------------------------------------------------------------------------- 1 | applicationinsights 2 | pytest -------------------------------------------------------------------------------- /restler/restler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/restler.py -------------------------------------------------------------------------------- /restler/restler_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/restler_settings.py -------------------------------------------------------------------------------- /restler/test_servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/README.md -------------------------------------------------------------------------------- /restler/test_servers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/__init__.py -------------------------------------------------------------------------------- /restler/test_servers/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/log_parser.py -------------------------------------------------------------------------------- /restler/test_servers/parsed_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/parsed_requests.py -------------------------------------------------------------------------------- /restler/test_servers/resource_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/resource_base.py -------------------------------------------------------------------------------- /restler/test_servers/test_server_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/test_server_base.py -------------------------------------------------------------------------------- /restler/test_servers/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/test_socket.py -------------------------------------------------------------------------------- /restler/test_servers/unit_test_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/test_servers/unit_test_server/unit_test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/unit_test_server/unit_test_resources.py -------------------------------------------------------------------------------- /restler/test_servers/unit_test_server/unit_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/test_servers/unit_test_server/unit_test_server.py -------------------------------------------------------------------------------- /restler/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/authentication_token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/authentication_token.txt -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/token_cmd_authentication_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/token_cmd_authentication_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/token_location_authentication_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/token_location_authentication_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/token_module_authentication_data_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/token_module_authentication_data_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/token_module_authentication_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/token_module_authentication_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/unit_test_server_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/unit_test_server_auth.py -------------------------------------------------------------------------------- /restler/unit_tests/authentication_test_files/unit_test_server_auth_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/authentication_test_files/unit_test_server_auth_module.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/README.txt -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/demo_server_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/demo_server_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/demo_server_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/demo_server_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/null_test_example_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/null_test_example_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/null_test_example_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/null_test_example_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/null_test_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/null_test_swagger.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/readonly_test_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/readonly_test_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/readonly_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/readonly_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/readonly_test_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/readonly_test_swagger.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_data_types_local_examples_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_all_param_types_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations_uuid4_suffix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations_uuid4_suffix.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations_uuid4_suffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_annotations_uuid4_suffix.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_with_annotations_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_with_annotations_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/simple_swagger_with_annotations_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/simple_swagger_with_annotations_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/substitute_body_regression_test_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/substitute_body_regression_test_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/substitute_body_regression_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/substitute_body_regression_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/grammar_schema_test_files/uuidsuffix_test_swagger.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/Bugs_Bucket_AsJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/Bugs_Bucket_AsJson.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/InvalidDynamicObjectChecker_20x_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/InvalidDynamicObjectChecker_20x_1.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/UseAfterFreeChecker_20x_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/Bug_Buckets_Json/UseAfterFreeChecker_20x_1.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/ab_flaky_b_all_combinations_speccov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/ab_flaky_b_all_combinations_speccov.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/ab_flaky_b_all_combinations_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/ab_flaky_b_all_combinations_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/ab_flaky_b_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/ab_flaky_b_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_smoke_test_invalid_b_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_smoke_test_invalid_b_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_smoke_test_settings_prefix_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_smoke_test_settings_prefix_cache.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_smoke_test_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_smoke_test_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_smoke_test_testing_log_all_combinations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_smoke_test_testing_log_all_combinations.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_smoke_test_trace_data_baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_smoke_test_trace_data_baseline.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_test_grammar_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_test_grammar_combinations.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_test_grammar_invalid_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_test_grammar_invalid_b.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/abc_test_grammar_without_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/abc_test_grammar_without_responses.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/always_render_full_seq_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/always_render_full_seq_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/checkers_bug_buckets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/checkers_bug_buckets.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/checkers_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/checkers_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/checkers_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/checkers_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/create_once_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/create_once_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/create_once_pre_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/create_once_pre_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/create_once_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/create_once_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/custom_value_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/custom_value_gen.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/dynamic_obj_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/dynamic_obj_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/examples_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/examples_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/examples_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/examples_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/fuzz_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/fuzz_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/gc_test_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/gc_test_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/gc_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/gc_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/gc_test_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/gc_test_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/invalidvalue_advanced_bug_buckets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/invalidvalue_advanced_bug_buckets.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/invalidvalue_advanced_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/invalidvalue_advanced_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/invalidvalue_bug_buckets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/invalidvalue_bug_buckets.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/invalidvalue_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/invalidvalue_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/invalidvalue_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/invalidvalue_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/multidict_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/multidict_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/multidict_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/multidict_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/payloadbody_advanced_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/payloadbody_advanced_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/payloadbody_bug_buckets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/payloadbody_bug_buckets.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/payloadbody_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/payloadbody_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/payloadbody_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/payloadbody_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/replay_sanity_test_for_tracedb.replay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/replay_sanity_test_for_tracedb.replay.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/smoke_test_gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/smoke_test_gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/smoke_test_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/smoke_test_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_dict2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_dict2.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_dynamic_obj_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_dynamic_obj_writer.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_fuzz_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_fuzz_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_gc_during_main_loop_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_gc_during_main_loop_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_grammar.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_grammar_body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_grammar_body.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_grammar_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_grammar_body.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_grammar_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_grammar_bugs.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_invalid_value_checker_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_invalid_value_checker_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_one_schema_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_one_schema_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_settings_createonce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_settings_createonce.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/test_settings_multidict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/test_settings_multidict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/trace_data_baseline.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/trace_data_baseline.ndjson -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/trace_data_baseline_checkers.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/trace_data_baseline_checkers.ndjson -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/trace_data_replay_baseline.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/trace_data_replay_baseline.ndjson -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/trace_db_text_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/trace_db_text_serializer.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/value_gen_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/value_gen_dict.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/value_gen_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/value_gen_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/value_gen_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/value_gen_test_grammar.py -------------------------------------------------------------------------------- /restler/unit_tests/log_baseline_test_files/value_gen_testing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/log_baseline_test_files/value_gen_testing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | norecursedirs = * -------------------------------------------------------------------------------- /restler/unit_tests/restler_user_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/restler_user_settings.json -------------------------------------------------------------------------------- /restler/unit_tests/test_auth_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_auth_parser.py -------------------------------------------------------------------------------- /restler/unit_tests/test_basic_functionality_end_to_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_basic_functionality_end_to_end.py -------------------------------------------------------------------------------- /restler/unit_tests/test_candidate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_candidate_values.py -------------------------------------------------------------------------------- /restler/unit_tests/test_grammar_schema_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_grammar_schema_parser.py -------------------------------------------------------------------------------- /restler/unit_tests/test_log_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_log_parsers.py -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/bug_buckets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/bug_buckets.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/bug_buckets2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/bug_buckets2.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/bug_buckets3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/bug_buckets3.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/bug_buckets4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/bug_buckets4.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/bug_buckets_bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/bug_buckets_bad.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/fuzzing_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/fuzzing_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/fuzzing_log_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/fuzzing_log_2.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/fuzzing_log_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/fuzzing_log_3.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/fuzzing_log_bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/fuzzing_log_bad.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/gc_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/gc_log.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/gc_log_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/gc_log_2.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_logs/gc_log_bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_logs/gc_log_bad.txt -------------------------------------------------------------------------------- /restler/unit_tests/test_restler_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_restler_settings.py -------------------------------------------------------------------------------- /restler/unit_tests/test_retry_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_retry_handler.py -------------------------------------------------------------------------------- /restler/unit_tests/test_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/unit_tests/test_test_server.py -------------------------------------------------------------------------------- /restler/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restler/utils/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/formatting.py -------------------------------------------------------------------------------- /restler/utils/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/hooks.py -------------------------------------------------------------------------------- /restler/utils/import_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/import_utilities.py -------------------------------------------------------------------------------- /restler/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/logger.py -------------------------------------------------------------------------------- /restler/utils/logging/ndjson_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/logging/ndjson_serializer.py -------------------------------------------------------------------------------- /restler/utils/logging/serializer_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/logging/serializer_base.py -------------------------------------------------------------------------------- /restler/utils/logging/trace_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/logging/trace_db.py -------------------------------------------------------------------------------- /restler/utils/network_logs/diff_network_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/network_logs/diff_network_logs.py -------------------------------------------------------------------------------- /restler/utils/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/restler/utils/saver.py -------------------------------------------------------------------------------- /src/Restler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/Restler.sln -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Analyze/Buckets.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Analyze/Buckets.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Analyze/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Analyze/Main.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Analyze/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Analyze/Types.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Common/Abstractions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Common/Abstractions.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Common/Http.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Common/Http.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Common/Log.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Common/Log.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Common/Utilities.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Common/Utilities.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Convert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Convert.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Diff/Diff.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Diff/Diff.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Diff/DiffHttp.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Diff/DiffHttp.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Diff/DiffLines.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Diff/DiffLines.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Diff/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Diff/Main.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Overview.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Overview.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/OverviewDiff.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/OverviewDiff.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Program.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/ResultsAnalyzer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/ResultsAnalyzer.fsproj -------------------------------------------------------------------------------- /src/ResultsAnalyzer/Timing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/Timing.fs -------------------------------------------------------------------------------- /src/ResultsAnalyzer/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/ResultsAnalyzer/packages.lock.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/CodeGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/CodeGeneratorTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/ConfigTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/ConfigTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/DependencyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/DependencyTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/DictionaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/DictionaryTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/ExampleTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/ExampleTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/JsonGrammarTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/JsonGrammarTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/RealWorldTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/RealWorldTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/ReferencesTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/ReferencesTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/Restler.Compiler.Test.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/Restler.Compiler.Test.fsproj -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/SchemaTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/SchemaTests.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/SwaggerSpecs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/SwaggerSpecs.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/TestUtilities.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/TestUtilities.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_deps_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_deps_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_response_writer_annotation_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_response_writer_annotation_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_response_writer_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/header_response_writer_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/ordering_test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/ordering_test_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/path_annotation_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/path_annotation_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/path_in_dictionary_payload_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/path_in_dictionary_payload_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/soft_delete_test_grammar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/soft_delete_test_grammar1.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dependencyTests/soft_delete_test_grammar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dependencyTests/soft_delete_test_grammar2.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadContentType_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadContentType_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadDict_ValueGeneratorTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadDict_ValueGeneratorTemplate.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadHeaderContentType_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/customPayloadHeaderContentType_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/quoted_primitives_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/dictionaryTests/quoted_primitives_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/exampleTests/array_example_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/exampleTests/array_example_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/exampleTests/body_param_exactCopy_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/exampleTests/body_param_exactCopy_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar_requiredonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/grammarTests/required_params_grammar_requiredonly.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/schemaTests/path_param_substrings_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/schemaTests/path_param_substrings_grammar.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/schemaTests/path_param_substrings_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/schemaTests/path_param_substrings_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/schemaTests/xMsPaths_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/schemaTests/xMsPaths_grammar.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/baselines/schemaTests/xMsPaths_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/baselines/schemaTests/xMsPaths_grammar.py -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/packages.lock.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/annotationTests/globalAnnotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/annotationTests/globalAnnotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/annotationTests/localAnnotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/annotationTests/localAnnotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/annotationTests/pathAnnotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/annotationTests/pathAnnotation.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/annotationTests/pathAnnotationInSeparateFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/annotationTests/pathAnnotationInSeparateFile.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/array_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/array_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/array_example_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/array_example_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/array_example_external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/array_example_external.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/dict1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/dict1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/dict2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/dict2.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestConfig1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestConfig1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestConfig2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestConfig2.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestPut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/exampleConfigTestPut.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/maindict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/maindict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/restlerEngineSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "max_combinations": 20 3 | } 4 | -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/swagger1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/swagger1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/swagger2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/swagger2.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/configTests/swagger3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/configTests/swagger3.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/demo_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/demo_server.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/array_dep_multiple_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/array_dep_multiple_items.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/body_dependency_cycles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/body_dependency_cycles.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_application_gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_application_gateway.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_network_interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_network_interface.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_subnet.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_vnet_with_subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/examples/create_vnet_with_subnet.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/frontend_port_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/frontend_port_id.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/header_deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/header_deps.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/header_deps_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/header_deps_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/inconsistent_casing_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/inconsistent_casing_paths.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_dict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/input_producer_spec.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ip_configurations_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ip_configurations_get.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/lowercase_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/lowercase_paths.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/nested_objects_naming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/nested_objects_naming.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test_anntations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/ordering_test_anntations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/post_patch_dependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/post_patch_dependency.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/response_headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/response_headers.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/response_headers_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/response_headers_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/same_body_dep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/same_body_dep.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/same_body_dep_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/same_body_dep_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete_annotations1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete_annotations1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete_annotations2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_api_soft_delete_annotations2.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_crud_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_crud_api.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_crud_api_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/simple_crud_api_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dependencyTests/subnet_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dependencyTests/subnet_id.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dict_secgroup_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dict_secgroup_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadContentTypeSwagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadContentTypeSwagger.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadDict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadDict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadHeaderRequestTypeDict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadHeaderRequestTypeDict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadRequestTypeDict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadRequestTypeDict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadSwagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/customPayloadSwagger.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/dict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/inject_custom_payloads_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/inject_custom_payloads_dict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/multipleIdenticalUuidSuffix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/multipleIdenticalUuidSuffix.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/multipleIdenticalUuidSuffixDict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/multipleIdenticalUuidSuffixDict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/no_params.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/pathDictionaryPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/pathDictionaryPayload.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/serializationTestDict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/dictionaryTests/serializationTestDict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/empty_array_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/empty_array_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exactCopy/array_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exactCopy/array_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exactCopy/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exactCopy/examples.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exactCopy/make_order_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exactCopy/make_order_post.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exampleTests/body_param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exampleTests/body_param.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exampleTests/body_param_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exampleTests/body_param_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exampleTests/example_int_openapi3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exampleTests/example_int_openapi3.yml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exampleTests/optional_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exampleTests/optional_params.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/exampleTests/optional_params_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/exampleTests/optional_params_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/example_config_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/example_config_file.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/example_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/example_demo.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/example_demo1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/example_demo1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/example_demo1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/example_demo1.yaml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/example_demo_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/example_demo_dictionary.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/ApplicationSecurityGroupCreate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/ApplicationSecurityGroupCreate.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/headers_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/headers_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/inline_payload_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/inline_payload_examples.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_big_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_big_order.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order1.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order2.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order_descriptions.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order_empty_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order_empty_descriptions.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/examples/make_order_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/examples/make_order_tags.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/get_path_dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/get_path_dependencies.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/grammarTests/required_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/grammarTests/required_params.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/headers.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/headers_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/headers_dict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/inline_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/inline_examples.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/etag_with_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/etag_with_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/etag_with_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/etag_with_links.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/soft_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/soft_delete.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/soft_delete_with_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/soft_delete_with_links.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/widgets_with_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/widgets_with_annotations.yaml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/linksTests/widgets_with_links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/linksTests/widgets_with_links.yaml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/object_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/object_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/put_createorupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/put_createorupdate.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/circular_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/circular_array.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/circular_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/circular_path.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/first.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/multiple_circular_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/multiple_circular_paths.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/second.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/second.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/referencesTests/second_reordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/referencesTests/second_reordered.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/additionalProperties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/additionalProperties.yml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/global_path_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/global_path_parameters.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/large_json_body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/large_json_body.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/openapi3_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/openapi3_examples.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/openapi3_requestbody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/openapi3_requestbody.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/path_param_substrings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/path_param_substrings.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/requiredHeader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/requiredHeader.yml -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/swagger_escape_characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/swagger_escape_characters.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_annotations.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_dict.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/schemaTests/xMsPaths_examples.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler.Test/swagger/secgroup_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler.Test/swagger/secgroup_example.json -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/AccessPaths.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/AccessPaths.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Annotations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Annotations.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/ApiResourceTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/ApiResourceTypes.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/CodeGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/CodeGenerator.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Compiler.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Compiler.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Config.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Dependencies.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Dependencies.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/DependencyAnalysisTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/DependencyAnalysisTypes.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Dictionary.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Dictionary.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Examples.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Examples.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Grammar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Grammar.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Restler.Compiler.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Restler.Compiler.fsproj -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/RestlerEngineSettings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/RestlerEngineSettings.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Swagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Swagger.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/SwaggerSpecPreprocessor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/SwaggerSpecPreprocessor.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/SwaggerVisitors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/SwaggerVisitors.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Telemetry.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Telemetry.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Utilities.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Utilities.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/Workflow.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/Workflow.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/XMsPaths.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/XMsPaths.fs -------------------------------------------------------------------------------- /src/compiler/Restler.Compiler/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.Compiler/packages.lock.json -------------------------------------------------------------------------------- /src/compiler/Restler.CompilerExe/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.CompilerExe/Program.fs -------------------------------------------------------------------------------- /src/compiler/Restler.CompilerExe/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.CompilerExe/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/compiler/Restler.CompilerExe/Restler.CompilerExe.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.CompilerExe/Restler.CompilerExe.fsproj -------------------------------------------------------------------------------- /src/compiler/Restler.CompilerExe/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/compiler/Restler.CompilerExe/packages.lock.json -------------------------------------------------------------------------------- /src/driver/Files.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/Files.fs -------------------------------------------------------------------------------- /src/driver/LogCollection.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/LogCollection.fs -------------------------------------------------------------------------------- /src/driver/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/Program.fs -------------------------------------------------------------------------------- /src/driver/Restler.Driver.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/Restler.Driver.fsproj -------------------------------------------------------------------------------- /src/driver/SpecCoverage.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/SpecCoverage.fs -------------------------------------------------------------------------------- /src/driver/TaskResults.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/TaskResults.fs -------------------------------------------------------------------------------- /src/driver/Telemetry.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/Telemetry.fs -------------------------------------------------------------------------------- /src/driver/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/Types.fs -------------------------------------------------------------------------------- /src/driver/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/packages.lock.json -------------------------------------------------------------------------------- /src/driver/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/src/driver/runtimeconfig.template.json -------------------------------------------------------------------------------- /utilities/grammar/update_restler_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/utilities/grammar/update_restler_grammar.py -------------------------------------------------------------------------------- /utilities/speccovparsing/diff_speccov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/utilities/speccovparsing/diff_speccov.py -------------------------------------------------------------------------------- /utilities/speccovparsing/sum_speccov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/restler-fuzzer/HEAD/utilities/speccovparsing/sum_speccov.py --------------------------------------------------------------------------------