├── .bazelrc ├── .bazelversion ├── .clang-format ├── .gcloudignore ├── .gitignore ├── BUILD ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPER.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── VERSION ├── WORKSPACE ├── api ├── README.md ├── VERSION ├── envoy │ └── v12 │ │ └── http │ │ ├── backend_auth │ │ ├── BUILD │ │ └── config.proto │ │ ├── common │ │ ├── BUILD │ │ └── base.proto │ │ ├── grpc_metadata_scrubber │ │ ├── BUILD │ │ └── config.proto │ │ ├── header_sanitizer │ │ ├── BUILD │ │ └── config.proto │ │ ├── path_rewrite │ │ ├── BUILD │ │ └── config.proto │ │ └── service_control │ │ ├── BUILD │ │ ├── config.proto │ │ └── requirement.proto └── scripts │ ├── go_proto_gen.sh │ └── update_version.sh ├── bazel ├── BUILD ├── bazel_rules_python.bzl ├── googleapis.bzl ├── grpc.bzl ├── repositories.bzl ├── service_control.bzl └── zlib.BUILD ├── doc ├── architecture.md ├── esp-v2-on-cloudrun.md ├── esp-v2-on-k8s.md ├── images │ ├── api-gateway-deployment.jpg │ ├── architecture.png │ ├── filters.png │ └── sidecar-deployment.jpg └── use-cases.md ├── docker ├── Dockerfile-envoy ├── Dockerfile-gcsrunner.tmpl ├── Dockerfile-prow-env ├── Dockerfile-proxy.tmpl ├── Dockerfile-serverless.tmpl ├── cloudbuild.yaml ├── generic │ └── start_proxy.py ├── licenses │ ├── LICENSE │ ├── README.md │ ├── extract-licenses.sh │ └── others │ │ └── docker-alpine-glibc │ │ └── LICENSE └── serverless │ ├── env_start_proxy.py │ └── gcloud_build_image ├── envoy_build_config ├── BUILD ├── WORKSPACE └── extensions_build_config.bzl ├── examples ├── BUILD ├── README.md ├── auth │ ├── envoy_config.json │ ├── openapi_swagger.json │ └── service_config_generated.json ├── dynamic_routing │ ├── envoy_config.json │ ├── openapi_swagger.json │ └── service_config_generated.json ├── grpc_dynamic_routing │ ├── api_descriptor.pb │ ├── envoy_config.json │ ├── grpc-test.proto │ ├── grpc-test.yaml │ └── service_config_generated.json ├── service_control │ ├── envoy_config.json │ ├── openapi_swagger.json │ └── service_config_generated.json └── testdata │ ├── README.md │ ├── route_match │ ├── envoy_config.json │ ├── openapi_swagger.json │ └── service_config_generated.json │ └── sidecar_backend │ ├── envoy_config.json │ ├── openapi_swagger.json │ └── service_config_generated.json ├── go.mod ├── go.sum ├── package.json ├── prow ├── .bazelrc ├── README.md ├── continuous-build.sh ├── e2e-anthos-cloud-run-anthos-cloud-run-http-bookstore.sh ├── e2e-cloud-run-app-engine-http-bookstore.sh ├── e2e-cloud-run-cloud-function-http-bookstore.sh ├── e2e-cloud-run-cloud-run-grpc-echo.sh ├── e2e-cloud-run-cloud-run-http-bookstore.sh ├── e2e-gcloud-build-image.sh ├── e2e-tight_grpc_echo_managed_long_run.sh ├── e2e-tight_grpc_interop_managed_long_run.sh ├── e2e-tight_http_bookstore_managed_long_run.sh ├── e2e-tight_http_bookstore_managed_using_sa_cred_long_run.sh ├── gcpproxy-api-regression.sh ├── gcpproxy-build.sh ├── gcpproxy-coverage.sh ├── gcpproxy-e2e.sh ├── gcpproxy-presubmit.sh ├── janitor.sh ├── presubmit-asan.sh ├── presubmit-tsan.sh └── utils │ └── prow_test_utils.sh ├── scripts ├── all-utilities.sh ├── cloud-build-docker.sh ├── docker_make.sh ├── format-examples.sh ├── release │ ├── release-changelog.sh │ ├── release-new-branch.sh │ ├── release-publish.sh │ ├── release-qualify.sh │ ├── release-show.sh │ ├── release-stable.sh │ ├── release-tag-git.sh │ └── validate_release.py ├── robot-release.sh └── setup-clang-asan.sh ├── src ├── api_proxy │ ├── README.md │ ├── path_matcher │ │ ├── BUILD │ │ ├── http_template.cc │ │ ├── http_template.h │ │ ├── http_template_fuzz_test.cc │ │ ├── http_template_test.cc │ │ ├── path_matcher.cc │ │ ├── path_matcher.h │ │ ├── path_matcher_node.cc │ │ ├── path_matcher_node.h │ │ ├── path_matcher_test.cc │ │ ├── variable_binding_utils.cc │ │ ├── variable_binding_utils.h │ │ └── variable_binding_utils_test.cc │ ├── service_control │ │ ├── BUILD │ │ ├── check_response_convert_utils.cc │ │ ├── check_response_convert_utils.h │ │ ├── check_response_convert_utils_test.cc │ │ ├── logs_metrics_loader.cc │ │ ├── logs_metrics_loader.h │ │ ├── logs_metrics_loader_test.cc │ │ ├── request_builder.cc │ │ ├── request_builder.h │ │ ├── request_builder_test.cc │ │ ├── request_info.h │ │ └── testdata │ │ │ ├── allocate_quota_request.golden │ │ │ ├── allocate_quota_request_android_ios.golden │ │ │ ├── allocate_quota_request_no_method_name.golden │ │ │ ├── allocate_quota_request_without_api_key.golden │ │ │ ├── allocate_quota_request_without_api_key_projectid.golden │ │ │ ├── check_request.golden │ │ │ ├── check_request_android_ios.golden │ │ │ ├── check_request_no_api_key.golden │ │ │ ├── report_request.golden │ │ │ ├── report_request_by_consumer.golden │ │ │ ├── report_request_empty_optional.golden │ │ │ ├── report_request_failed.golden │ │ │ ├── report_request_failed_bad_api_key.golden │ │ │ └── report_request_failed_grpc_status.golden │ └── utils │ │ ├── BUILD │ │ ├── version.cc │ │ ├── version.h │ │ ├── version_macro_template.sh │ │ └── version_test.cc ├── envoy │ ├── BUILD │ ├── README.md │ ├── http │ │ ├── backend_auth │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── config_parser.h │ │ │ ├── config_parser_impl.cc │ │ │ ├── config_parser_impl.h │ │ │ ├── config_parser_impl_test.cc │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ ├── filter_config.h │ │ │ ├── filter_config_impl.h │ │ │ ├── filter_factory.cc │ │ │ ├── filter_test.cc │ │ │ └── mocks.h │ │ ├── grpc_metadata_scrubber │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ ├── filter_config.h │ │ │ ├── filter_factory.cc │ │ │ └── filter_test.cc │ │ ├── header_sanitizer │ │ │ ├── BUILD │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ └── filter_factory.cc │ │ ├── path_rewrite │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── config_parser.h │ │ │ ├── config_parser_impl.cc │ │ │ ├── config_parser_impl.h │ │ │ ├── config_parser_impl_test.cc │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ ├── filter_config.h │ │ │ ├── filter_factory.cc │ │ │ ├── filter_test.cc │ │ │ └── mocks.h │ │ └── service_control │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── client_cache.cc │ │ │ ├── client_cache.h │ │ │ ├── client_cache_test.cc │ │ │ ├── config_parser.cc │ │ │ ├── config_parser.h │ │ │ ├── config_parser_test.cc │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ ├── filter_config.h │ │ │ ├── filter_factory.cc │ │ │ ├── filter_fuzz_test.cc │ │ │ ├── filter_stats.cc │ │ │ ├── filter_stats.h │ │ │ ├── filter_stats_test.cc │ │ │ ├── filter_test.cc │ │ │ ├── handler.h │ │ │ ├── handler_impl.cc │ │ │ ├── handler_impl.h │ │ │ ├── handler_impl_test.cc │ │ │ ├── handler_utils.cc │ │ │ ├── handler_utils.h │ │ │ ├── handler_utils_test.cc │ │ │ ├── http_call.cc │ │ │ ├── http_call.h │ │ │ ├── http_call_test.cc │ │ │ ├── mocks.h │ │ │ ├── parsing_forwarded_header_fuzz_test.cc │ │ │ ├── service_control_call.h │ │ │ ├── service_control_call_impl.cc │ │ │ ├── service_control_call_impl.h │ │ │ └── service_control_callback_func.h │ ├── token │ │ ├── BUILD │ │ ├── iam_token_info.cc │ │ ├── iam_token_info.h │ │ ├── iam_token_info_fuzz_test.cc │ │ ├── iam_token_info_test.cc │ │ ├── imds_token_info.cc │ │ ├── imds_token_info.h │ │ ├── imds_token_info_fuzz_test.cc │ │ ├── imds_token_info_test.cc │ │ ├── mocks.h │ │ ├── token_info.h │ │ ├── token_subscriber.cc │ │ ├── token_subscriber.h │ │ ├── token_subscriber_factory.h │ │ ├── token_subscriber_factory_impl.h │ │ └── token_subscriber_test.cc │ └── utils │ │ ├── BUILD │ │ ├── filter_state_utils.cc │ │ ├── filter_state_utils.h │ │ ├── filter_state_utils_test.cc │ │ ├── http_header_utils.cc │ │ ├── http_header_utils.h │ │ ├── http_header_utils_test.cc │ │ ├── json_struct.cc │ │ ├── json_struct.h │ │ ├── json_struct_fuzz_test.cc │ │ ├── json_struct_test.cc │ │ ├── rc_detail_utils.cc │ │ ├── rc_detail_utils.h │ │ └── rc_detail_utils_test.cc └── go │ ├── README.md │ ├── bootstrap │ ├── admin.go │ ├── admin_test.go │ ├── ads │ │ ├── bootstrap.go │ │ ├── bootstrap_test.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ └── flags_test.go │ │ └── main │ │ │ └── main.go │ ├── layer_runtime.go │ ├── node.go │ └── static │ │ ├── bootstrap.go │ │ └── bootstrap_test.go │ ├── commonflags │ ├── flags.go │ └── flags_test.go │ ├── configgenerator │ ├── cluster_generator.go │ ├── clustergen │ │ ├── clustergen.go │ │ ├── clustergentest │ │ │ └── clustergentest.go │ │ ├── helpers │ │ │ ├── backend.go │ │ │ ├── dns.go │ │ │ ├── doc.go │ │ │ ├── health.go │ │ │ ├── service_control.go │ │ │ ├── service_control_test.go │ │ │ ├── tls.go │ │ │ └── tls_test.go │ │ ├── iam.go │ │ ├── iam_test.go │ │ ├── imds.go │ │ ├── imds_test.go │ │ ├── jwt_authn.go │ │ ├── jwt_authn_test.go │ │ ├── local_backend.go │ │ ├── local_backend_test.go │ │ ├── remote_backend.go │ │ ├── remote_backend_test.go │ │ ├── service_control.go │ │ ├── service_control_test.go │ │ ├── token_agent.go │ │ └── token_agent_test.go │ ├── filter_generator.go │ ├── filtergen │ │ ├── backend_auth.go │ │ ├── backend_auth_test.go │ │ ├── compressor.go │ │ ├── compressor_test.go │ │ ├── cors.go │ │ ├── cors_test.go │ │ ├── filtergen.go │ │ ├── filtergentest │ │ │ └── filtergentest.go │ │ ├── grpc_metadata_scrubber.go │ │ ├── grpc_metadata_scrubber_test.go │ │ ├── grpc_transcoder.go │ │ ├── grpc_transcoder_test.go │ │ ├── grpc_web.go │ │ ├── header_sanitizer.go │ │ ├── health_check.go │ │ ├── health_check_test.go │ │ ├── helpers │ │ │ └── access_token.go │ │ ├── http_connection_manager.go │ │ ├── http_connection_manager_test.go │ │ ├── jwt_authn.go │ │ ├── jwt_authn_test.go │ │ ├── path_rewrite.go │ │ ├── path_rewrite_test.go │ │ ├── router.go │ │ ├── service_control.go │ │ ├── service_control_test.go │ │ ├── util.go │ │ └── util_test.go │ ├── listener_generator.go │ ├── listener_generator_test.go │ ├── route_generator.go │ ├── route_generator_test.go │ └── routegen │ │ ├── deny_all.go │ │ ├── deny_invalid_method.go │ │ ├── deny_invalid_method_test.go │ │ ├── direct_response_cors.go │ │ ├── direct_response_cors_test.go │ │ ├── direct_response_health_check.go │ │ ├── direct_response_health_check_test.go │ │ ├── helpers │ │ ├── backend_route.go │ │ ├── deadline.go │ │ ├── deadline_test.go │ │ ├── doc.go │ │ ├── hsts.go │ │ ├── operation_name.go │ │ └── retry.go │ │ ├── proxy_backend.go │ │ ├── proxy_backend_test.go │ │ ├── proxy_cors.go │ │ ├── proxy_cors_test.go │ │ ├── routegen.go │ │ ├── routegentest │ │ └── routegentest.go │ │ ├── util.go │ │ └── utils_test.go │ ├── configinfo │ ├── method_info.go │ ├── service_info.go │ └── service_info_test.go │ ├── configmanager │ ├── config_manager.go │ ├── config_manager_test.go │ ├── flags │ │ ├── flags.go │ │ └── flags_test.go │ ├── main │ │ └── server.go │ └── testdata │ │ ├── test_fetch_listeners.go │ │ └── test_fixed_mode_dynamic_routing.go │ ├── gcsrunner │ ├── fetch_config.go │ ├── fetch_config_test.go │ ├── main │ │ └── runner.go │ ├── serviceaccount.go │ ├── start_envoy.go │ └── start_envoy_test.go │ ├── metadata │ ├── metadata_fetcher.go │ ├── metadata_fetcher_test.go │ └── metadata_fetcher_test_util.go │ ├── options │ ├── adsbootstrapper.go │ ├── common.go │ └── configgenerator.go │ ├── serviceconfig │ ├── rollout_id_change_detector.go │ ├── rollout_id_change_fetcher_test.go │ ├── service_config_fetcher.go │ └── service_config_fetcher_test.go │ ├── tokengenerator │ ├── token_generator.go │ └── token_generator_test.go │ ├── tracing │ ├── tracing.go │ └── tracing_test.go │ └── util │ ├── discovery.go │ ├── httppattern │ ├── sort.go │ ├── sort_impl.go │ ├── sort_test.go │ ├── uri_template.go │ ├── uri_template_parser.go │ ├── uri_template_parser_test.go │ ├── uri_template_test.go │ └── util.go │ ├── httptest_util.go │ ├── load_assignment.go │ ├── marshal.go │ ├── marshal_test.go │ ├── regex.go │ ├── regex_test.go │ ├── request.go │ ├── request_test.go │ ├── testdata │ └── fake_key.go │ ├── time.go │ ├── transport_socket.go │ ├── transport_socket_test.go │ ├── url_util.go │ ├── url_util_test.go │ ├── util.go │ ├── util_test.go │ └── xds_name.go ├── tests ├── e2e │ ├── client │ │ ├── apiproxy_bookstore_key_restriction_test.py │ │ ├── apiproxy_bookstore_quota_test.py │ │ ├── apiproxy_bookstore_test.py │ │ ├── apiproxy_client.py │ │ ├── apiproxy_transcoding_fuzz_test.py │ │ ├── grpc │ │ │ └── grpc_stress_input.py │ │ ├── h2load_runner.py │ │ ├── jwt_client.go │ │ ├── utils.py │ │ ├── wrk_runner.py │ │ └── wrk_script.lua.temp │ ├── scripts │ │ ├── cloud-run │ │ │ ├── deploy.sh │ │ │ └── utilities.sh │ │ ├── gen-auth-token.sh │ │ ├── gke │ │ │ ├── deploy.sh │ │ │ └── utilities.sh │ │ ├── linux-grpc-test-long-run.sh │ │ ├── linux-install-wrk.sh │ │ ├── linux-test-kb-long-run.sh │ │ ├── prow-utilities.sh │ │ └── test-grpc-interop.sh │ └── testdata │ │ ├── bookstore │ │ ├── 35k.json │ │ ├── gke │ │ │ └── http-bookstore.yaml.template │ │ ├── key_restriction_test.json.template │ │ ├── negative_test_data.json.temp │ │ └── test_data.json.temp │ │ ├── bookstore_grpc │ │ └── gke │ │ │ └── bookstore.yaml │ │ ├── grpc_echo │ │ ├── gke │ │ │ └── grpc-echo.yaml.template │ │ ├── grpc_echo.json │ │ ├── grpc_echostream.json │ │ ├── grpc_large_report.json │ │ └── grpc_test_data.json │ │ └── grpc_interop │ │ └── gke │ │ └── grpc-interop.yaml.template ├── endpoints │ ├── bookstore │ │ ├── app_template.yaml │ │ ├── bookstore.Dockerfile │ │ ├── bookstore_swagger_template.json │ │ ├── http_bookstore.js │ │ ├── package-lock.json │ │ └── package.json │ ├── bookstore_grpc │ │ ├── Dockerfile │ │ ├── client │ │ │ ├── client.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── client_main.go │ │ ├── proto │ │ │ ├── BUILD │ │ │ ├── api_config_auth.yaml │ │ │ ├── api_descriptor.pb │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── bookstore.pb.go │ │ │ │ └── bookstore.proto │ │ │ └── v2 │ │ │ │ ├── BUILD │ │ │ │ ├── bookstore_v2.pb.go │ │ │ │ └── bookstore_v2.proto │ │ └── server │ │ │ └── server.go │ ├── echo │ │ ├── Dockerfile │ │ ├── client │ │ │ └── client.go │ │ ├── client_main.go │ │ └── server │ │ │ └── app.go │ ├── grpc_echo │ │ ├── BUILD │ │ ├── Dockerfile.tmpl │ │ ├── client-test-lib.cc │ │ ├── client-test-lib.h │ │ ├── client │ │ │ └── client.go │ │ ├── grpc-test-client.cc │ │ ├── grpc-test-dynamic-routing.tmpl.yaml │ │ ├── grpc-test-server.cc │ │ ├── grpc-test.yaml │ │ ├── linux-build-grpc-docker.sh │ │ └── proto │ │ │ ├── api_descriptor.pb │ │ │ └── grpc-test.proto │ ├── grpc_interop │ │ ├── grpc-interop.yaml │ │ └── proto │ │ │ ├── BUILD │ │ │ ├── api_descriptor.pb │ │ │ └── test_service.proto │ └── health_check │ │ └── server.go ├── env │ ├── components │ │ ├── cert.go │ │ ├── cmd.go │ │ ├── config_manager.go │ │ ├── dns_resolver.go │ │ ├── echo_http_server.go │ │ ├── envoy.go │ │ ├── fake_stackdriver_server.go │ │ ├── grpc_echo_grpc_server.go │ │ ├── grpc_interop_grpc_server.go │ │ ├── health_check_helpers.go │ │ ├── health_check_helpers_test.go │ │ ├── health_check_registry.go │ │ ├── health_check_registry_test.go │ │ ├── mock_iam.go │ │ ├── mock_jwt_provider.go │ │ ├── mock_metadata.go │ │ ├── mock_metadata_test.go │ │ ├── mock_service_control.go │ │ ├── mock_service_control_test.go │ │ ├── mock_service_management.go │ │ ├── mock_service_management_test.go │ │ ├── retry_handler.go │ │ └── stats_verifier.go │ ├── env.go │ ├── platform │ │ ├── backend.go │ │ ├── files.go │ │ ├── network.go │ │ └── ports.go │ └── testdata │ │ ├── BUILD │ │ ├── cert.conf │ │ ├── client.crt │ │ ├── client.key │ │ ├── downstream_client.crt │ │ ├── downstream_client.key │ │ ├── fake_echo_service_config.go │ │ ├── fake_echo_service_config_for_dynamic_routing.go │ │ ├── fake_grpc_bookstore_service_config.go │ │ ├── fake_grpc_bookstore_service_config_dynamic_routing.go │ │ ├── fake_grpc_echo_service_config.go │ │ ├── fake_grpc_echo_service_config_for_dynamic_routing.go │ │ ├── fake_grpc_interop_service_config.go │ │ ├── fake_jwt.go │ │ ├── fake_service_config_map.go │ │ ├── json_config_parser.go │ │ ├── logs_metrics.pb.txt │ │ ├── mismatch.crt │ │ ├── mismatch.key │ │ ├── proxy.crt │ │ ├── proxy.key │ │ ├── roots.pem │ │ ├── server.crt │ │ ├── server.key │ │ └── service_config_for_fixed_dynamic_routing.json ├── fuzz │ ├── BUILD │ ├── README.md │ ├── corpus │ │ ├── BUILD │ │ ├── auth_token │ │ │ ├── invalid-simple.prototxt │ │ │ └── valid-realistic.prototxt │ │ ├── backend_routing_filter │ │ │ ├── crash-bad-path-translation.prototxt │ │ │ ├── crash-invalid-binding-query-params.prototxt │ │ │ ├── missing-path.prototxt │ │ │ ├── valid-append-query-params.prototxt │ │ │ ├── valid-append-simple.prototxt │ │ │ ├── valid-const-query-params.prototxt │ │ │ └── valid-const-simple.prototxt │ │ ├── http_template │ │ │ ├── custom_verb.prototxt │ │ │ ├── error.prototxt │ │ │ ├── more_variable.prototxt │ │ │ ├── parse_test.prototxt │ │ │ ├── parse_verb.prototxt │ │ │ └── variable_and_custom_verb.prototxt │ │ ├── iam_token_info │ │ │ ├── invalid-imds-access-token.prototxt │ │ │ ├── invalid-url.prototxt │ │ │ ├── valid-access-token-simple.prototxt │ │ │ ├── valid-id-token-simple.prototxt │ │ │ ├── valid-with-delegates.prototxt │ │ │ └── valid-with-scopes.prototxt │ │ ├── imds_token_info │ │ │ ├── invalid-url.prototxt │ │ │ ├── valid-access-token-simple.prototxt │ │ │ ├── valid-id-token-simple.prototxt │ │ │ └── valid-url.prototxt │ │ ├── json_struct │ │ │ ├── missing-one-key.prototxt │ │ │ ├── multiple-types.prototxt │ │ │ ├── nan.prototxt │ │ │ ├── valid-multiple-keys.prototxt │ │ │ └── valid-one-key.prototxt │ │ ├── parsing_forwarded_header │ │ │ ├── good1.prototxt │ │ │ └── good2.prototxt │ │ └── service_control_filter │ │ │ ├── all-metrics.prototxt │ │ │ ├── bad-check.prototxt │ │ │ ├── bad-quota.prototxt │ │ │ ├── crash-api-key-header.prototxt │ │ │ ├── crash-bad-service-control-uri.prototxt │ │ │ ├── crash-downstream-address-pipe.prototxt │ │ │ ├── crash-log-request-headers.prototxt │ │ │ ├── crash-missing-sc-uri.prototxt │ │ │ ├── crash-negative-timeout.prototxt │ │ │ ├── crash-response-code-overflow.prototxt │ │ │ ├── crash-sa-token-generator-null-token.prototxt │ │ │ ├── invalid-network-address.prototxt │ │ │ ├── sc-retries.prototxt │ │ │ ├── valid-request-complex.prototxt │ │ │ └── valid-request.prototxt │ └── structured_inputs │ │ ├── BUILD │ │ ├── auth_token.proto │ │ ├── http_template.proto │ │ ├── iam_token_info.proto │ │ ├── imds_token_info.proto │ │ ├── json_struct.proto │ │ ├── parsing_forwarded_header.proto │ │ └── service_control_filter.proto ├── integration_test │ ├── access_log_test │ │ └── access_log_test.go │ ├── add_headers_test │ │ └── add_headers_test.go │ ├── auth_pkey_cache_test │ │ └── auth_pkey_cache_test.go │ ├── backend_auth_disable_auth_test │ │ └── backend_auth_disable_auth_test.go │ ├── backend_auth_using_iam_test │ │ └── backend_auth_using_iam_test.go │ ├── backend_auth_using_imds_test │ │ └── backend_auth_using_imds_test.go │ ├── backend_circuit_breaker_test │ │ └── backend_circuit_breaker_test.go │ ├── backend_protocol_test │ │ └── backend_protocol_test.go │ ├── backend_retry_test │ │ └── backend_retry_test.go │ ├── client_cancellation_test │ │ └── client_cancellation_test.go │ ├── compression_test │ │ └── compression_test.go │ ├── cors_integration_test │ │ └── cors_integration_test.go │ ├── dns_resolver_test │ │ └── dns_resolver_test.go │ ├── dynamic_routing_integration_test │ │ └── dynamic_routing_integration_test.go │ ├── generated_header_prefix_test │ │ └── generated_header_prefix_test.go │ ├── grpc_deadline_test │ │ └── grpc_deadline_test.go │ ├── grpc_errors_test │ │ └── grpc_errors_test.go │ ├── grpc_fallback_test │ │ └── grpc_fallback_test.go │ ├── grpc_health_check_test │ │ └── grpc_health_check_test.go │ ├── grpc_integration_test │ │ └── grpc_integration_test.go │ ├── grpc_interop_test │ │ └── grpc_interop_test.go │ ├── grpc_ministress_test │ │ └── grpc_ministress_test.go │ ├── grpc_streaming_test │ │ └── grpc_streaming_test.go │ ├── http1_deadline_test │ │ └── http1_deadline_test.go │ ├── http1_integration_test │ │ └── http1_integration_test.go │ ├── http_method_override_test │ │ └── http_method_override_test.go │ ├── iam_imds_data_path_test │ │ └── iam_imds_data_path_test.go │ ├── jwt_auth_integration_test │ │ └── jwt_auth_integration_test.go │ ├── jwt_locations_test │ │ └── jwt_locations_test.go │ ├── managed_service_config_test │ │ └── managed_service_config_test.go │ ├── multi_grpc_services_test │ │ └── multi_grpc_services_test.go │ ├── non_gcp_test │ │ └── non_gcp_test.go │ ├── opencensus_tracing_test │ │ └── opencensus_tracing_test.go │ ├── report_gcp_attributes_test │ │ └── report_gcp_attributes_test.go │ ├── service_control_access_token_test │ │ └── service_control_access_token_test.go │ ├── service_control_apikey_location_test │ │ └── service_control_apikey_location_test.go │ ├── service_control_apikey_restriction_test │ │ └── service_control_apikey_restriction_test.go │ ├── service_control_auth_fail_test │ │ └── service_control_auth_fail_test.go │ ├── service_control_basic_test │ │ └── service_control_basic_test.go │ ├── service_control_cache_test │ │ └── service_control_cache_test.go │ ├── service_control_check_fail_test │ │ └── service_control_check_fail_test.go │ ├── service_control_check_network_fail_test │ │ └── service_control_check_network_fail_test.go │ ├── service_control_check_server_fail_test │ │ └── service_control_check_server_fail_test.go │ ├── service_control_credential_id_test │ │ └── service_control_credential_id_test.go │ ├── service_control_failed_request_report_test │ │ └── service_control_failed_request_report_test.go │ ├── service_control_http_method_test │ │ └── service_control_http_method_test.go │ ├── service_control_http_path_test │ │ └── service_control_http_path_test.go │ ├── service_control_log_test │ │ └── service_control_log_test.go │ ├── service_control_protocol_test │ │ └── service_control_protocol_test.go │ ├── service_control_quota_test │ │ └── service_control_quota_test.go │ ├── service_control_report_network_fail_test │ │ └── service_control_report_network_fail_test.go │ ├── service_control_response_code_test │ │ └── service_control_response_code_test.go │ ├── service_control_retry_timeout_test │ │ └── service_control_retry_timeout_test.go │ ├── service_control_skip_test │ │ └── service_control_skip_test.go │ ├── statistics_test │ │ └── statistics_test.go │ ├── transcoding_bindings_test │ │ └── transcoding_bindings_test.go │ ├── transcoding_errors_test │ │ └── transcoding_errors_test.go │ ├── transcoding_options_test │ │ └── transcoding_options_test.go │ ├── transport_security_test │ │ └── transport_security_test.go │ └── websocket_test │ │ └── websocket_test.go ├── start_proxy │ ├── __init__.py │ ├── env_start_proxy_test.py │ └── start_proxy_test.py └── utils │ ├── args.go │ ├── diff.go │ ├── diff_test.go │ ├── error.go │ ├── handler.go │ ├── http.go │ ├── service_account.go │ ├── service_control_utils.go │ ├── service_control_utils_test.go │ ├── stats_fetcher.go │ ├── status.go │ ├── time.go │ └── version.go └── third_party ├── golang_internal ├── LICENSE ├── README.md └── oauth2.go └── tools ├── coverage ├── README.md ├── cpp_fuzz.sh ├── cpp_unit.sh └── gen_coverage.sh ├── gcrgc ├── LICENSE ├── README.md └── gcrgc.sh └── spelling ├── LICENSE ├── README.md ├── check_spelling.sh ├── spelling_skip_files.txt └── spelling_whitelist_words.txt /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.1.0 2 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/.clang-format -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/BUILD -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.53.0 2 | -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/WORKSPACE -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/README.md -------------------------------------------------------------------------------- /api/VERSION: -------------------------------------------------------------------------------- 1 | v12 2 | -------------------------------------------------------------------------------- /api/envoy/v12/http/backend_auth/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/backend_auth/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/backend_auth/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/backend_auth/config.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/common/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/common/base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/common/base.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/grpc_metadata_scrubber/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/grpc_metadata_scrubber/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/grpc_metadata_scrubber/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/grpc_metadata_scrubber/config.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/header_sanitizer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/header_sanitizer/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/header_sanitizer/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/header_sanitizer/config.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/path_rewrite/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/path_rewrite/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/path_rewrite/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/path_rewrite/config.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/service_control/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/service_control/BUILD -------------------------------------------------------------------------------- /api/envoy/v12/http/service_control/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/service_control/config.proto -------------------------------------------------------------------------------- /api/envoy/v12/http/service_control/requirement.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/envoy/v12/http/service_control/requirement.proto -------------------------------------------------------------------------------- /api/scripts/go_proto_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/scripts/go_proto_gen.sh -------------------------------------------------------------------------------- /api/scripts/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/api/scripts/update_version.sh -------------------------------------------------------------------------------- /bazel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/BUILD -------------------------------------------------------------------------------- /bazel/bazel_rules_python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/bazel_rules_python.bzl -------------------------------------------------------------------------------- /bazel/googleapis.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/googleapis.bzl -------------------------------------------------------------------------------- /bazel/grpc.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/grpc.bzl -------------------------------------------------------------------------------- /bazel/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/repositories.bzl -------------------------------------------------------------------------------- /bazel/service_control.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/service_control.bzl -------------------------------------------------------------------------------- /bazel/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/bazel/zlib.BUILD -------------------------------------------------------------------------------- /doc/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/architecture.md -------------------------------------------------------------------------------- /doc/esp-v2-on-cloudrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/esp-v2-on-cloudrun.md -------------------------------------------------------------------------------- /doc/esp-v2-on-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/esp-v2-on-k8s.md -------------------------------------------------------------------------------- /doc/images/api-gateway-deployment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/images/api-gateway-deployment.jpg -------------------------------------------------------------------------------- /doc/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/images/architecture.png -------------------------------------------------------------------------------- /doc/images/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/images/filters.png -------------------------------------------------------------------------------- /doc/images/sidecar-deployment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/images/sidecar-deployment.jpg -------------------------------------------------------------------------------- /doc/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/doc/use-cases.md -------------------------------------------------------------------------------- /docker/Dockerfile-envoy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/Dockerfile-envoy -------------------------------------------------------------------------------- /docker/Dockerfile-gcsrunner.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/Dockerfile-gcsrunner.tmpl -------------------------------------------------------------------------------- /docker/Dockerfile-prow-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/Dockerfile-prow-env -------------------------------------------------------------------------------- /docker/Dockerfile-proxy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/Dockerfile-proxy.tmpl -------------------------------------------------------------------------------- /docker/Dockerfile-serverless.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/Dockerfile-serverless.tmpl -------------------------------------------------------------------------------- /docker/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/cloudbuild.yaml -------------------------------------------------------------------------------- /docker/generic/start_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/generic/start_proxy.py -------------------------------------------------------------------------------- /docker/licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/licenses/LICENSE -------------------------------------------------------------------------------- /docker/licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/licenses/README.md -------------------------------------------------------------------------------- /docker/licenses/extract-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/licenses/extract-licenses.sh -------------------------------------------------------------------------------- /docker/licenses/others/docker-alpine-glibc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/licenses/others/docker-alpine-glibc/LICENSE -------------------------------------------------------------------------------- /docker/serverless/env_start_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/serverless/env_start_proxy.py -------------------------------------------------------------------------------- /docker/serverless/gcloud_build_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/docker/serverless/gcloud_build_image -------------------------------------------------------------------------------- /envoy_build_config/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/envoy_build_config/BUILD -------------------------------------------------------------------------------- /envoy_build_config/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/envoy_build_config/WORKSPACE -------------------------------------------------------------------------------- /envoy_build_config/extensions_build_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/envoy_build_config/extensions_build_config.bzl -------------------------------------------------------------------------------- /examples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/BUILD -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/auth/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/auth/envoy_config.json -------------------------------------------------------------------------------- /examples/auth/openapi_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/auth/openapi_swagger.json -------------------------------------------------------------------------------- /examples/auth/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/auth/service_config_generated.json -------------------------------------------------------------------------------- /examples/dynamic_routing/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/dynamic_routing/envoy_config.json -------------------------------------------------------------------------------- /examples/dynamic_routing/openapi_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/dynamic_routing/openapi_swagger.json -------------------------------------------------------------------------------- /examples/dynamic_routing/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/dynamic_routing/service_config_generated.json -------------------------------------------------------------------------------- /examples/grpc_dynamic_routing/api_descriptor.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/grpc_dynamic_routing/api_descriptor.pb -------------------------------------------------------------------------------- /examples/grpc_dynamic_routing/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/grpc_dynamic_routing/envoy_config.json -------------------------------------------------------------------------------- /examples/grpc_dynamic_routing/grpc-test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/grpc_dynamic_routing/grpc-test.proto -------------------------------------------------------------------------------- /examples/grpc_dynamic_routing/grpc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/grpc_dynamic_routing/grpc-test.yaml -------------------------------------------------------------------------------- /examples/grpc_dynamic_routing/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/grpc_dynamic_routing/service_config_generated.json -------------------------------------------------------------------------------- /examples/service_control/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/service_control/envoy_config.json -------------------------------------------------------------------------------- /examples/service_control/openapi_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/service_control/openapi_swagger.json -------------------------------------------------------------------------------- /examples/service_control/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/service_control/service_config_generated.json -------------------------------------------------------------------------------- /examples/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/README.md -------------------------------------------------------------------------------- /examples/testdata/route_match/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/route_match/envoy_config.json -------------------------------------------------------------------------------- /examples/testdata/route_match/openapi_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/route_match/openapi_swagger.json -------------------------------------------------------------------------------- /examples/testdata/route_match/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/route_match/service_config_generated.json -------------------------------------------------------------------------------- /examples/testdata/sidecar_backend/envoy_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/sidecar_backend/envoy_config.json -------------------------------------------------------------------------------- /examples/testdata/sidecar_backend/openapi_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/sidecar_backend/openapi_swagger.json -------------------------------------------------------------------------------- /examples/testdata/sidecar_backend/service_config_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/examples/testdata/sidecar_backend/service_config_generated.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/go.sum -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/package.json -------------------------------------------------------------------------------- /prow/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/.bazelrc -------------------------------------------------------------------------------- /prow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/README.md -------------------------------------------------------------------------------- /prow/continuous-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/continuous-build.sh -------------------------------------------------------------------------------- /prow/e2e-anthos-cloud-run-anthos-cloud-run-http-bookstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-anthos-cloud-run-anthos-cloud-run-http-bookstore.sh -------------------------------------------------------------------------------- /prow/e2e-cloud-run-app-engine-http-bookstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-cloud-run-app-engine-http-bookstore.sh -------------------------------------------------------------------------------- /prow/e2e-cloud-run-cloud-function-http-bookstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-cloud-run-cloud-function-http-bookstore.sh -------------------------------------------------------------------------------- /prow/e2e-cloud-run-cloud-run-grpc-echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-cloud-run-cloud-run-grpc-echo.sh -------------------------------------------------------------------------------- /prow/e2e-cloud-run-cloud-run-http-bookstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-cloud-run-cloud-run-http-bookstore.sh -------------------------------------------------------------------------------- /prow/e2e-gcloud-build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-gcloud-build-image.sh -------------------------------------------------------------------------------- /prow/e2e-tight_grpc_echo_managed_long_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-tight_grpc_echo_managed_long_run.sh -------------------------------------------------------------------------------- /prow/e2e-tight_grpc_interop_managed_long_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-tight_grpc_interop_managed_long_run.sh -------------------------------------------------------------------------------- /prow/e2e-tight_http_bookstore_managed_long_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-tight_http_bookstore_managed_long_run.sh -------------------------------------------------------------------------------- /prow/e2e-tight_http_bookstore_managed_using_sa_cred_long_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/e2e-tight_http_bookstore_managed_using_sa_cred_long_run.sh -------------------------------------------------------------------------------- /prow/gcpproxy-api-regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/gcpproxy-api-regression.sh -------------------------------------------------------------------------------- /prow/gcpproxy-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/gcpproxy-build.sh -------------------------------------------------------------------------------- /prow/gcpproxy-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/gcpproxy-coverage.sh -------------------------------------------------------------------------------- /prow/gcpproxy-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/gcpproxy-e2e.sh -------------------------------------------------------------------------------- /prow/gcpproxy-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/gcpproxy-presubmit.sh -------------------------------------------------------------------------------- /prow/janitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/janitor.sh -------------------------------------------------------------------------------- /prow/presubmit-asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/presubmit-asan.sh -------------------------------------------------------------------------------- /prow/presubmit-tsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/presubmit-tsan.sh -------------------------------------------------------------------------------- /prow/utils/prow_test_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/prow/utils/prow_test_utils.sh -------------------------------------------------------------------------------- /scripts/all-utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/all-utilities.sh -------------------------------------------------------------------------------- /scripts/cloud-build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/cloud-build-docker.sh -------------------------------------------------------------------------------- /scripts/docker_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/docker_make.sh -------------------------------------------------------------------------------- /scripts/format-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/format-examples.sh -------------------------------------------------------------------------------- /scripts/release/release-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-changelog.sh -------------------------------------------------------------------------------- /scripts/release/release-new-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-new-branch.sh -------------------------------------------------------------------------------- /scripts/release/release-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-publish.sh -------------------------------------------------------------------------------- /scripts/release/release-qualify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-qualify.sh -------------------------------------------------------------------------------- /scripts/release/release-show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-show.sh -------------------------------------------------------------------------------- /scripts/release/release-stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-stable.sh -------------------------------------------------------------------------------- /scripts/release/release-tag-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/release-tag-git.sh -------------------------------------------------------------------------------- /scripts/release/validate_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/release/validate_release.py -------------------------------------------------------------------------------- /scripts/robot-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/robot-release.sh -------------------------------------------------------------------------------- /scripts/setup-clang-asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/scripts/setup-clang-asan.sh -------------------------------------------------------------------------------- /src/api_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/README.md -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/BUILD -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/http_template.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/http_template.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/http_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/http_template.h -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/http_template_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/http_template_fuzz_test.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/http_template_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/http_template_test.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/path_matcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/path_matcher.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/path_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/path_matcher.h -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/path_matcher_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/path_matcher_node.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/path_matcher_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/path_matcher_node.h -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/path_matcher_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/path_matcher_test.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/variable_binding_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/variable_binding_utils.cc -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/variable_binding_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/variable_binding_utils.h -------------------------------------------------------------------------------- /src/api_proxy/path_matcher/variable_binding_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/path_matcher/variable_binding_utils_test.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/BUILD -------------------------------------------------------------------------------- /src/api_proxy/service_control/check_response_convert_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/check_response_convert_utils.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/check_response_convert_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/check_response_convert_utils.h -------------------------------------------------------------------------------- /src/api_proxy/service_control/check_response_convert_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/check_response_convert_utils_test.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/logs_metrics_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/logs_metrics_loader.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/logs_metrics_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/logs_metrics_loader.h -------------------------------------------------------------------------------- /src/api_proxy/service_control/logs_metrics_loader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/logs_metrics_loader_test.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/request_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/request_builder.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/request_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/request_builder.h -------------------------------------------------------------------------------- /src/api_proxy/service_control/request_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/request_builder_test.cc -------------------------------------------------------------------------------- /src/api_proxy/service_control/request_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/request_info.h -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/allocate_quota_request.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/allocate_quota_request.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/allocate_quota_request_android_ios.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/allocate_quota_request_android_ios.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/allocate_quota_request_no_method_name.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/allocate_quota_request_no_method_name.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/allocate_quota_request_without_api_key.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/allocate_quota_request_without_api_key.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/allocate_quota_request_without_api_key_projectid.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/allocate_quota_request_without_api_key_projectid.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/check_request.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/check_request.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/check_request_android_ios.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/check_request_android_ios.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/check_request_no_api_key.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/check_request_no_api_key.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request_by_consumer.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request_by_consumer.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request_empty_optional.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request_empty_optional.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request_failed.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request_failed.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request_failed_bad_api_key.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request_failed_bad_api_key.golden -------------------------------------------------------------------------------- /src/api_proxy/service_control/testdata/report_request_failed_grpc_status.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/service_control/testdata/report_request_failed_grpc_status.golden -------------------------------------------------------------------------------- /src/api_proxy/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/utils/BUILD -------------------------------------------------------------------------------- /src/api_proxy/utils/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/utils/version.cc -------------------------------------------------------------------------------- /src/api_proxy/utils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/utils/version.h -------------------------------------------------------------------------------- /src/api_proxy/utils/version_macro_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/utils/version_macro_template.sh -------------------------------------------------------------------------------- /src/api_proxy/utils/version_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/api_proxy/utils/version_test.cc -------------------------------------------------------------------------------- /src/envoy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/BUILD -------------------------------------------------------------------------------- /src/envoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/README.md -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/BUILD -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/README.md -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/config_parser.h -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/config_parser_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/config_parser_impl.cc -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/config_parser_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/config_parser_impl.h -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/config_parser_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/config_parser_impl_test.cc -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter.cc -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter.h -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter_config.h -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter_config_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter_config_impl.h -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter_factory.cc -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/filter_test.cc -------------------------------------------------------------------------------- /src/envoy/http/backend_auth/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/backend_auth/mocks.h -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/BUILD -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/README.md -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/filter.cc -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/filter.h -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/filter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/filter_config.h -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/filter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/filter_factory.cc -------------------------------------------------------------------------------- /src/envoy/http/grpc_metadata_scrubber/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/grpc_metadata_scrubber/filter_test.cc -------------------------------------------------------------------------------- /src/envoy/http/header_sanitizer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/header_sanitizer/BUILD -------------------------------------------------------------------------------- /src/envoy/http/header_sanitizer/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/header_sanitizer/filter.cc -------------------------------------------------------------------------------- /src/envoy/http/header_sanitizer/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/header_sanitizer/filter.h -------------------------------------------------------------------------------- /src/envoy/http/header_sanitizer/filter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/header_sanitizer/filter_factory.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/BUILD -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/README.md -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/config_parser.h -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/config_parser_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/config_parser_impl.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/config_parser_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/config_parser_impl.h -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/config_parser_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/config_parser_impl_test.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/filter.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/filter.h -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/filter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/filter_config.h -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/filter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/filter_factory.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/filter_test.cc -------------------------------------------------------------------------------- /src/envoy/http/path_rewrite/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/path_rewrite/mocks.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/BUILD -------------------------------------------------------------------------------- /src/envoy/http/service_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/README.md -------------------------------------------------------------------------------- /src/envoy/http/service_control/client_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/client_cache.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/client_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/client_cache.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/client_cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/client_cache_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/config_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/config_parser.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/config_parser.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/config_parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/config_parser_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_config.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_factory.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_fuzz_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_stats.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_stats.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_stats_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_stats_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/filter_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_impl.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_impl.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_impl_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_utils.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_utils.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/handler_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/handler_utils_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/http_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/http_call.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/http_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/http_call.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/http_call_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/http_call_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/mocks.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/parsing_forwarded_header_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/parsing_forwarded_header_fuzz_test.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/service_control_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/service_control_call.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/service_control_call_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/service_control_call_impl.cc -------------------------------------------------------------------------------- /src/envoy/http/service_control/service_control_call_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/service_control_call_impl.h -------------------------------------------------------------------------------- /src/envoy/http/service_control/service_control_callback_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/http/service_control/service_control_callback_func.h -------------------------------------------------------------------------------- /src/envoy/token/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/BUILD -------------------------------------------------------------------------------- /src/envoy/token/iam_token_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/iam_token_info.cc -------------------------------------------------------------------------------- /src/envoy/token/iam_token_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/iam_token_info.h -------------------------------------------------------------------------------- /src/envoy/token/iam_token_info_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/iam_token_info_fuzz_test.cc -------------------------------------------------------------------------------- /src/envoy/token/iam_token_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/iam_token_info_test.cc -------------------------------------------------------------------------------- /src/envoy/token/imds_token_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/imds_token_info.cc -------------------------------------------------------------------------------- /src/envoy/token/imds_token_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/imds_token_info.h -------------------------------------------------------------------------------- /src/envoy/token/imds_token_info_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/imds_token_info_fuzz_test.cc -------------------------------------------------------------------------------- /src/envoy/token/imds_token_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/imds_token_info_test.cc -------------------------------------------------------------------------------- /src/envoy/token/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/mocks.h -------------------------------------------------------------------------------- /src/envoy/token/token_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_info.h -------------------------------------------------------------------------------- /src/envoy/token/token_subscriber.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_subscriber.cc -------------------------------------------------------------------------------- /src/envoy/token/token_subscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_subscriber.h -------------------------------------------------------------------------------- /src/envoy/token/token_subscriber_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_subscriber_factory.h -------------------------------------------------------------------------------- /src/envoy/token/token_subscriber_factory_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_subscriber_factory_impl.h -------------------------------------------------------------------------------- /src/envoy/token/token_subscriber_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/token/token_subscriber_test.cc -------------------------------------------------------------------------------- /src/envoy/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/BUILD -------------------------------------------------------------------------------- /src/envoy/utils/filter_state_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/filter_state_utils.cc -------------------------------------------------------------------------------- /src/envoy/utils/filter_state_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/filter_state_utils.h -------------------------------------------------------------------------------- /src/envoy/utils/filter_state_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/filter_state_utils_test.cc -------------------------------------------------------------------------------- /src/envoy/utils/http_header_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/http_header_utils.cc -------------------------------------------------------------------------------- /src/envoy/utils/http_header_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/http_header_utils.h -------------------------------------------------------------------------------- /src/envoy/utils/http_header_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/http_header_utils_test.cc -------------------------------------------------------------------------------- /src/envoy/utils/json_struct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/json_struct.cc -------------------------------------------------------------------------------- /src/envoy/utils/json_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/json_struct.h -------------------------------------------------------------------------------- /src/envoy/utils/json_struct_fuzz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/json_struct_fuzz_test.cc -------------------------------------------------------------------------------- /src/envoy/utils/json_struct_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/json_struct_test.cc -------------------------------------------------------------------------------- /src/envoy/utils/rc_detail_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/rc_detail_utils.cc -------------------------------------------------------------------------------- /src/envoy/utils/rc_detail_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/rc_detail_utils.h -------------------------------------------------------------------------------- /src/envoy/utils/rc_detail_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/envoy/utils/rc_detail_utils_test.cc -------------------------------------------------------------------------------- /src/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/README.md -------------------------------------------------------------------------------- /src/go/bootstrap/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/admin.go -------------------------------------------------------------------------------- /src/go/bootstrap/admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/admin_test.go -------------------------------------------------------------------------------- /src/go/bootstrap/ads/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/ads/bootstrap.go -------------------------------------------------------------------------------- /src/go/bootstrap/ads/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/ads/bootstrap_test.go -------------------------------------------------------------------------------- /src/go/bootstrap/ads/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/ads/flags/flags.go -------------------------------------------------------------------------------- /src/go/bootstrap/ads/flags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/ads/flags/flags_test.go -------------------------------------------------------------------------------- /src/go/bootstrap/ads/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/ads/main/main.go -------------------------------------------------------------------------------- /src/go/bootstrap/layer_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/layer_runtime.go -------------------------------------------------------------------------------- /src/go/bootstrap/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/node.go -------------------------------------------------------------------------------- /src/go/bootstrap/static/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/static/bootstrap.go -------------------------------------------------------------------------------- /src/go/bootstrap/static/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/bootstrap/static/bootstrap_test.go -------------------------------------------------------------------------------- /src/go/commonflags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/commonflags/flags.go -------------------------------------------------------------------------------- /src/go/commonflags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/commonflags/flags_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/cluster_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/cluster_generator.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/clustergen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/clustergen.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/clustergentest/clustergentest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/clustergentest/clustergentest.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/backend.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/dns.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/doc.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/health.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/service_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/service_control.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/service_control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/service_control_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/tls.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/helpers/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/helpers/tls_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/iam.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/iam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/iam_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/imds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/imds.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/imds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/imds_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/jwt_authn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/jwt_authn.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/jwt_authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/jwt_authn_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/local_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/local_backend.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/local_backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/local_backend_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/remote_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/remote_backend.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/remote_backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/remote_backend_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/service_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/service_control.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/service_control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/service_control_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/token_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/token_agent.go -------------------------------------------------------------------------------- /src/go/configgenerator/clustergen/token_agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/clustergen/token_agent_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filter_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filter_generator.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/backend_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/backend_auth.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/backend_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/backend_auth_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/compressor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/compressor.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/compressor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/compressor_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/cors.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/cors_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/filtergen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/filtergen.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/filtergentest/filtergentest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/filtergentest/filtergentest.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/grpc_metadata_scrubber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/grpc_metadata_scrubber.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/grpc_metadata_scrubber_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/grpc_metadata_scrubber_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/grpc_transcoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/grpc_transcoder.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/grpc_transcoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/grpc_transcoder_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/grpc_web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/grpc_web.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/header_sanitizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/header_sanitizer.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/health_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/health_check.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/health_check_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/helpers/access_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/helpers/access_token.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/http_connection_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/http_connection_manager.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/http_connection_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/http_connection_manager_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/jwt_authn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/jwt_authn.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/jwt_authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/jwt_authn_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/path_rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/path_rewrite.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/path_rewrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/path_rewrite_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/router.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/service_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/service_control.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/service_control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/service_control_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/util.go -------------------------------------------------------------------------------- /src/go/configgenerator/filtergen/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/filtergen/util_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/listener_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/listener_generator.go -------------------------------------------------------------------------------- /src/go/configgenerator/listener_generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/listener_generator_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/route_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/route_generator.go -------------------------------------------------------------------------------- /src/go/configgenerator/route_generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/route_generator_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/deny_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/deny_all.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/deny_invalid_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/deny_invalid_method.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/deny_invalid_method_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/deny_invalid_method_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/direct_response_cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/direct_response_cors.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/direct_response_cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/direct_response_cors_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/direct_response_health_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/direct_response_health_check.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/direct_response_health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/direct_response_health_check_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/backend_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/backend_route.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/deadline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/deadline.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/deadline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/deadline_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/doc.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/hsts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/hsts.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/operation_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/operation_name.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/helpers/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/helpers/retry.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/proxy_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/proxy_backend.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/proxy_backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/proxy_backend_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/proxy_cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/proxy_cors.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/proxy_cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/proxy_cors_test.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/routegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/routegen.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/routegentest/routegentest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/routegentest/routegentest.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/util.go -------------------------------------------------------------------------------- /src/go/configgenerator/routegen/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configgenerator/routegen/utils_test.go -------------------------------------------------------------------------------- /src/go/configinfo/method_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configinfo/method_info.go -------------------------------------------------------------------------------- /src/go/configinfo/service_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configinfo/service_info.go -------------------------------------------------------------------------------- /src/go/configinfo/service_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configinfo/service_info_test.go -------------------------------------------------------------------------------- /src/go/configmanager/config_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/config_manager.go -------------------------------------------------------------------------------- /src/go/configmanager/config_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/config_manager_test.go -------------------------------------------------------------------------------- /src/go/configmanager/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/flags/flags.go -------------------------------------------------------------------------------- /src/go/configmanager/flags/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/flags/flags_test.go -------------------------------------------------------------------------------- /src/go/configmanager/main/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/main/server.go -------------------------------------------------------------------------------- /src/go/configmanager/testdata/test_fetch_listeners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/testdata/test_fetch_listeners.go -------------------------------------------------------------------------------- /src/go/configmanager/testdata/test_fixed_mode_dynamic_routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/configmanager/testdata/test_fixed_mode_dynamic_routing.go -------------------------------------------------------------------------------- /src/go/gcsrunner/fetch_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/fetch_config.go -------------------------------------------------------------------------------- /src/go/gcsrunner/fetch_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/fetch_config_test.go -------------------------------------------------------------------------------- /src/go/gcsrunner/main/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/main/runner.go -------------------------------------------------------------------------------- /src/go/gcsrunner/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/serviceaccount.go -------------------------------------------------------------------------------- /src/go/gcsrunner/start_envoy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/start_envoy.go -------------------------------------------------------------------------------- /src/go/gcsrunner/start_envoy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/gcsrunner/start_envoy_test.go -------------------------------------------------------------------------------- /src/go/metadata/metadata_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/metadata/metadata_fetcher.go -------------------------------------------------------------------------------- /src/go/metadata/metadata_fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/metadata/metadata_fetcher_test.go -------------------------------------------------------------------------------- /src/go/metadata/metadata_fetcher_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/metadata/metadata_fetcher_test_util.go -------------------------------------------------------------------------------- /src/go/options/adsbootstrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/options/adsbootstrapper.go -------------------------------------------------------------------------------- /src/go/options/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/options/common.go -------------------------------------------------------------------------------- /src/go/options/configgenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/options/configgenerator.go -------------------------------------------------------------------------------- /src/go/serviceconfig/rollout_id_change_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/serviceconfig/rollout_id_change_detector.go -------------------------------------------------------------------------------- /src/go/serviceconfig/rollout_id_change_fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/serviceconfig/rollout_id_change_fetcher_test.go -------------------------------------------------------------------------------- /src/go/serviceconfig/service_config_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/serviceconfig/service_config_fetcher.go -------------------------------------------------------------------------------- /src/go/serviceconfig/service_config_fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/serviceconfig/service_config_fetcher_test.go -------------------------------------------------------------------------------- /src/go/tokengenerator/token_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/tokengenerator/token_generator.go -------------------------------------------------------------------------------- /src/go/tokengenerator/token_generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/tokengenerator/token_generator_test.go -------------------------------------------------------------------------------- /src/go/tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/tracing/tracing.go -------------------------------------------------------------------------------- /src/go/tracing/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/tracing/tracing_test.go -------------------------------------------------------------------------------- /src/go/util/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/discovery.go -------------------------------------------------------------------------------- /src/go/util/httppattern/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/sort.go -------------------------------------------------------------------------------- /src/go/util/httppattern/sort_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/sort_impl.go -------------------------------------------------------------------------------- /src/go/util/httppattern/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/sort_test.go -------------------------------------------------------------------------------- /src/go/util/httppattern/uri_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/uri_template.go -------------------------------------------------------------------------------- /src/go/util/httppattern/uri_template_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/uri_template_parser.go -------------------------------------------------------------------------------- /src/go/util/httppattern/uri_template_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/uri_template_parser_test.go -------------------------------------------------------------------------------- /src/go/util/httppattern/uri_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/uri_template_test.go -------------------------------------------------------------------------------- /src/go/util/httppattern/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httppattern/util.go -------------------------------------------------------------------------------- /src/go/util/httptest_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/httptest_util.go -------------------------------------------------------------------------------- /src/go/util/load_assignment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/load_assignment.go -------------------------------------------------------------------------------- /src/go/util/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/marshal.go -------------------------------------------------------------------------------- /src/go/util/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/marshal_test.go -------------------------------------------------------------------------------- /src/go/util/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/regex.go -------------------------------------------------------------------------------- /src/go/util/regex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/regex_test.go -------------------------------------------------------------------------------- /src/go/util/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/request.go -------------------------------------------------------------------------------- /src/go/util/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/request_test.go -------------------------------------------------------------------------------- /src/go/util/testdata/fake_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/testdata/fake_key.go -------------------------------------------------------------------------------- /src/go/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/time.go -------------------------------------------------------------------------------- /src/go/util/transport_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/transport_socket.go -------------------------------------------------------------------------------- /src/go/util/transport_socket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/transport_socket_test.go -------------------------------------------------------------------------------- /src/go/util/url_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/url_util.go -------------------------------------------------------------------------------- /src/go/util/url_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/url_util_test.go -------------------------------------------------------------------------------- /src/go/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/util.go -------------------------------------------------------------------------------- /src/go/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/util_test.go -------------------------------------------------------------------------------- /src/go/util/xds_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/src/go/util/xds_name.go -------------------------------------------------------------------------------- /tests/e2e/client/apiproxy_bookstore_key_restriction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/apiproxy_bookstore_key_restriction_test.py -------------------------------------------------------------------------------- /tests/e2e/client/apiproxy_bookstore_quota_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/apiproxy_bookstore_quota_test.py -------------------------------------------------------------------------------- /tests/e2e/client/apiproxy_bookstore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/apiproxy_bookstore_test.py -------------------------------------------------------------------------------- /tests/e2e/client/apiproxy_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/apiproxy_client.py -------------------------------------------------------------------------------- /tests/e2e/client/apiproxy_transcoding_fuzz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/apiproxy_transcoding_fuzz_test.py -------------------------------------------------------------------------------- /tests/e2e/client/grpc/grpc_stress_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/grpc/grpc_stress_input.py -------------------------------------------------------------------------------- /tests/e2e/client/h2load_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/h2load_runner.py -------------------------------------------------------------------------------- /tests/e2e/client/jwt_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/jwt_client.go -------------------------------------------------------------------------------- /tests/e2e/client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/utils.py -------------------------------------------------------------------------------- /tests/e2e/client/wrk_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/wrk_runner.py -------------------------------------------------------------------------------- /tests/e2e/client/wrk_script.lua.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/client/wrk_script.lua.temp -------------------------------------------------------------------------------- /tests/e2e/scripts/cloud-run/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/cloud-run/deploy.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/cloud-run/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/cloud-run/utilities.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/gen-auth-token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/gen-auth-token.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/gke/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/gke/deploy.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/gke/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/gke/utilities.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/linux-grpc-test-long-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/linux-grpc-test-long-run.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/linux-install-wrk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/linux-install-wrk.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/linux-test-kb-long-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/linux-test-kb-long-run.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/prow-utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/prow-utilities.sh -------------------------------------------------------------------------------- /tests/e2e/scripts/test-grpc-interop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/scripts/test-grpc-interop.sh -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore/35k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore/35k.json -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore/gke/http-bookstore.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore/gke/http-bookstore.yaml.template -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore/key_restriction_test.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore/key_restriction_test.json.template -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore/negative_test_data.json.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore/negative_test_data.json.temp -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore/test_data.json.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore/test_data.json.temp -------------------------------------------------------------------------------- /tests/e2e/testdata/bookstore_grpc/gke/bookstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/bookstore_grpc/gke/bookstore.yaml -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_echo/gke/grpc-echo.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/grpc_echo/gke/grpc-echo.yaml.template -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_echo/grpc_echo.json: -------------------------------------------------------------------------------- 1 | { "text": "aGVsbG8=" } 2 | -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_echo/grpc_echostream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/grpc_echo/grpc_echostream.json -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_echo/grpc_large_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/grpc_echo/grpc_large_report.json -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_echo/grpc_test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/grpc_echo/grpc_test_data.json -------------------------------------------------------------------------------- /tests/e2e/testdata/grpc_interop/gke/grpc-interop.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/e2e/testdata/grpc_interop/gke/grpc-interop.yaml.template -------------------------------------------------------------------------------- /tests/endpoints/bookstore/app_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/app_template.yaml -------------------------------------------------------------------------------- /tests/endpoints/bookstore/bookstore.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/bookstore.Dockerfile -------------------------------------------------------------------------------- /tests/endpoints/bookstore/bookstore_swagger_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/bookstore_swagger_template.json -------------------------------------------------------------------------------- /tests/endpoints/bookstore/http_bookstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/http_bookstore.js -------------------------------------------------------------------------------- /tests/endpoints/bookstore/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/package-lock.json -------------------------------------------------------------------------------- /tests/endpoints/bookstore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore/package.json -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/Dockerfile -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/client/client.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/client/util.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/client/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/client/util_test.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/client_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/client_main.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/BUILD -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/api_config_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/api_config_auth.yaml -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/api_descriptor.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/api_descriptor.pb -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v1/BUILD -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v1/bookstore.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v1/bookstore.pb.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v1/bookstore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v1/bookstore.proto -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v2/BUILD -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v2/bookstore_v2.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v2/bookstore_v2.pb.go -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/proto/v2/bookstore_v2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/proto/v2/bookstore_v2.proto -------------------------------------------------------------------------------- /tests/endpoints/bookstore_grpc/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/bookstore_grpc/server/server.go -------------------------------------------------------------------------------- /tests/endpoints/echo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/echo/Dockerfile -------------------------------------------------------------------------------- /tests/endpoints/echo/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/echo/client/client.go -------------------------------------------------------------------------------- /tests/endpoints/echo/client_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/echo/client_main.go -------------------------------------------------------------------------------- /tests/endpoints/echo/server/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/echo/server/app.go -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/BUILD -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/Dockerfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/Dockerfile.tmpl -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/client-test-lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/client-test-lib.cc -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/client-test-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/client-test-lib.h -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/client/client.go -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/grpc-test-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/grpc-test-client.cc -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/grpc-test-dynamic-routing.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/grpc-test-dynamic-routing.tmpl.yaml -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/grpc-test-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/grpc-test-server.cc -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/grpc-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/grpc-test.yaml -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/linux-build-grpc-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/linux-build-grpc-docker.sh -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/proto/api_descriptor.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/proto/api_descriptor.pb -------------------------------------------------------------------------------- /tests/endpoints/grpc_echo/proto/grpc-test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_echo/proto/grpc-test.proto -------------------------------------------------------------------------------- /tests/endpoints/grpc_interop/grpc-interop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_interop/grpc-interop.yaml -------------------------------------------------------------------------------- /tests/endpoints/grpc_interop/proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_interop/proto/BUILD -------------------------------------------------------------------------------- /tests/endpoints/grpc_interop/proto/api_descriptor.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_interop/proto/api_descriptor.pb -------------------------------------------------------------------------------- /tests/endpoints/grpc_interop/proto/test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/grpc_interop/proto/test_service.proto -------------------------------------------------------------------------------- /tests/endpoints/health_check/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/endpoints/health_check/server.go -------------------------------------------------------------------------------- /tests/env/components/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/cert.go -------------------------------------------------------------------------------- /tests/env/components/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/cmd.go -------------------------------------------------------------------------------- /tests/env/components/config_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/config_manager.go -------------------------------------------------------------------------------- /tests/env/components/dns_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/dns_resolver.go -------------------------------------------------------------------------------- /tests/env/components/echo_http_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/echo_http_server.go -------------------------------------------------------------------------------- /tests/env/components/envoy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/envoy.go -------------------------------------------------------------------------------- /tests/env/components/fake_stackdriver_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/fake_stackdriver_server.go -------------------------------------------------------------------------------- /tests/env/components/grpc_echo_grpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/grpc_echo_grpc_server.go -------------------------------------------------------------------------------- /tests/env/components/grpc_interop_grpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/grpc_interop_grpc_server.go -------------------------------------------------------------------------------- /tests/env/components/health_check_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/health_check_helpers.go -------------------------------------------------------------------------------- /tests/env/components/health_check_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/health_check_helpers_test.go -------------------------------------------------------------------------------- /tests/env/components/health_check_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/health_check_registry.go -------------------------------------------------------------------------------- /tests/env/components/health_check_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/health_check_registry_test.go -------------------------------------------------------------------------------- /tests/env/components/mock_iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_iam.go -------------------------------------------------------------------------------- /tests/env/components/mock_jwt_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_jwt_provider.go -------------------------------------------------------------------------------- /tests/env/components/mock_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_metadata.go -------------------------------------------------------------------------------- /tests/env/components/mock_metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_metadata_test.go -------------------------------------------------------------------------------- /tests/env/components/mock_service_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_service_control.go -------------------------------------------------------------------------------- /tests/env/components/mock_service_control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_service_control_test.go -------------------------------------------------------------------------------- /tests/env/components/mock_service_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_service_management.go -------------------------------------------------------------------------------- /tests/env/components/mock_service_management_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/mock_service_management_test.go -------------------------------------------------------------------------------- /tests/env/components/retry_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/retry_handler.go -------------------------------------------------------------------------------- /tests/env/components/stats_verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/components/stats_verifier.go -------------------------------------------------------------------------------- /tests/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/env.go -------------------------------------------------------------------------------- /tests/env/platform/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/platform/backend.go -------------------------------------------------------------------------------- /tests/env/platform/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/platform/files.go -------------------------------------------------------------------------------- /tests/env/platform/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/platform/network.go -------------------------------------------------------------------------------- /tests/env/platform/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/platform/ports.go -------------------------------------------------------------------------------- /tests/env/testdata/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/BUILD -------------------------------------------------------------------------------- /tests/env/testdata/cert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/cert.conf -------------------------------------------------------------------------------- /tests/env/testdata/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/client.crt -------------------------------------------------------------------------------- /tests/env/testdata/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/client.key -------------------------------------------------------------------------------- /tests/env/testdata/downstream_client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/downstream_client.crt -------------------------------------------------------------------------------- /tests/env/testdata/downstream_client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/downstream_client.key -------------------------------------------------------------------------------- /tests/env/testdata/fake_echo_service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_echo_service_config.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_echo_service_config_for_dynamic_routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_echo_service_config_for_dynamic_routing.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_grpc_bookstore_service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_grpc_bookstore_service_config.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_grpc_bookstore_service_config_dynamic_routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_grpc_bookstore_service_config_dynamic_routing.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_grpc_echo_service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_grpc_echo_service_config.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_grpc_echo_service_config_for_dynamic_routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_grpc_echo_service_config_for_dynamic_routing.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_grpc_interop_service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_grpc_interop_service_config.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_jwt.go -------------------------------------------------------------------------------- /tests/env/testdata/fake_service_config_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/fake_service_config_map.go -------------------------------------------------------------------------------- /tests/env/testdata/json_config_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/json_config_parser.go -------------------------------------------------------------------------------- /tests/env/testdata/logs_metrics.pb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/logs_metrics.pb.txt -------------------------------------------------------------------------------- /tests/env/testdata/mismatch.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/mismatch.crt -------------------------------------------------------------------------------- /tests/env/testdata/mismatch.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/mismatch.key -------------------------------------------------------------------------------- /tests/env/testdata/proxy.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/proxy.crt -------------------------------------------------------------------------------- /tests/env/testdata/proxy.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/proxy.key -------------------------------------------------------------------------------- /tests/env/testdata/roots.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/roots.pem -------------------------------------------------------------------------------- /tests/env/testdata/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/server.crt -------------------------------------------------------------------------------- /tests/env/testdata/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/server.key -------------------------------------------------------------------------------- /tests/env/testdata/service_config_for_fixed_dynamic_routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/env/testdata/service_config_for_fixed_dynamic_routing.json -------------------------------------------------------------------------------- /tests/fuzz/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/BUILD -------------------------------------------------------------------------------- /tests/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/README.md -------------------------------------------------------------------------------- /tests/fuzz/corpus/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/BUILD -------------------------------------------------------------------------------- /tests/fuzz/corpus/auth_token/invalid-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/auth_token/invalid-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/auth_token/valid-realistic.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/auth_token/valid-realistic.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/crash-bad-path-translation.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/crash-bad-path-translation.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/crash-invalid-binding-query-params.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/crash-invalid-binding-query-params.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/missing-path.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/missing-path.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/valid-append-query-params.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/valid-append-query-params.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/valid-append-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/valid-append-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/valid-const-query-params.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/valid-const-query-params.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/backend_routing_filter/valid-const-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/backend_routing_filter/valid-const-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/custom_verb.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/custom_verb.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/error.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/error.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/more_variable.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/more_variable.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/parse_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/parse_test.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/parse_verb.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/parse_verb.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/http_template/variable_and_custom_verb.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/http_template/variable_and_custom_verb.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/invalid-imds-access-token.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/invalid-imds-access-token.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/invalid-url.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/invalid-url.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/valid-access-token-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/valid-access-token-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/valid-id-token-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/valid-id-token-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/valid-with-delegates.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/valid-with-delegates.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/iam_token_info/valid-with-scopes.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/iam_token_info/valid-with-scopes.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/imds_token_info/invalid-url.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/imds_token_info/invalid-url.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/imds_token_info/valid-access-token-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/imds_token_info/valid-access-token-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/imds_token_info/valid-id-token-simple.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/imds_token_info/valid-id-token-simple.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/imds_token_info/valid-url.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/imds_token_info/valid-url.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/json_struct/missing-one-key.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/json_struct/missing-one-key.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/json_struct/multiple-types.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/json_struct/multiple-types.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/json_struct/nan.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/json_struct/nan.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/json_struct/valid-multiple-keys.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/json_struct/valid-multiple-keys.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/json_struct/valid-one-key.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/json_struct/valid-one-key.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/parsing_forwarded_header/good1.prototxt: -------------------------------------------------------------------------------- 1 | values: "for=1.2.3.4" 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/parsing_forwarded_header/good2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/parsing_forwarded_header/good2.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/all-metrics.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/all-metrics.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/bad-check.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/bad-check.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/bad-quota.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/bad-quota.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-api-key-header.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-api-key-header.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-bad-service-control-uri.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-bad-service-control-uri.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-downstream-address-pipe.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-downstream-address-pipe.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-log-request-headers.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-log-request-headers.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-missing-sc-uri.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-missing-sc-uri.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-negative-timeout.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-negative-timeout.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-response-code-overflow.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-response-code-overflow.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/crash-sa-token-generator-null-token.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/crash-sa-token-generator-null-token.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/invalid-network-address.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/invalid-network-address.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/sc-retries.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/sc-retries.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/valid-request-complex.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/valid-request-complex.prototxt -------------------------------------------------------------------------------- /tests/fuzz/corpus/service_control_filter/valid-request.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/corpus/service_control_filter/valid-request.prototxt -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/BUILD -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/auth_token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/auth_token.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/http_template.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/http_template.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/iam_token_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/iam_token_info.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/imds_token_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/imds_token_info.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/json_struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/json_struct.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/parsing_forwarded_header.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/parsing_forwarded_header.proto -------------------------------------------------------------------------------- /tests/fuzz/structured_inputs/service_control_filter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/fuzz/structured_inputs/service_control_filter.proto -------------------------------------------------------------------------------- /tests/integration_test/access_log_test/access_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/access_log_test/access_log_test.go -------------------------------------------------------------------------------- /tests/integration_test/add_headers_test/add_headers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/add_headers_test/add_headers_test.go -------------------------------------------------------------------------------- /tests/integration_test/auth_pkey_cache_test/auth_pkey_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/auth_pkey_cache_test/auth_pkey_cache_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_auth_disable_auth_test/backend_auth_disable_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_auth_disable_auth_test/backend_auth_disable_auth_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_auth_using_iam_test/backend_auth_using_iam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_auth_using_iam_test/backend_auth_using_iam_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_auth_using_imds_test/backend_auth_using_imds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_auth_using_imds_test/backend_auth_using_imds_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_circuit_breaker_test/backend_circuit_breaker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_circuit_breaker_test/backend_circuit_breaker_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_protocol_test/backend_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_protocol_test/backend_protocol_test.go -------------------------------------------------------------------------------- /tests/integration_test/backend_retry_test/backend_retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/backend_retry_test/backend_retry_test.go -------------------------------------------------------------------------------- /tests/integration_test/client_cancellation_test/client_cancellation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/client_cancellation_test/client_cancellation_test.go -------------------------------------------------------------------------------- /tests/integration_test/compression_test/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/compression_test/compression_test.go -------------------------------------------------------------------------------- /tests/integration_test/cors_integration_test/cors_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/cors_integration_test/cors_integration_test.go -------------------------------------------------------------------------------- /tests/integration_test/dns_resolver_test/dns_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/dns_resolver_test/dns_resolver_test.go -------------------------------------------------------------------------------- /tests/integration_test/dynamic_routing_integration_test/dynamic_routing_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/dynamic_routing_integration_test/dynamic_routing_integration_test.go -------------------------------------------------------------------------------- /tests/integration_test/generated_header_prefix_test/generated_header_prefix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/generated_header_prefix_test/generated_header_prefix_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_deadline_test/grpc_deadline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_deadline_test/grpc_deadline_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_errors_test/grpc_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_errors_test/grpc_errors_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_fallback_test/grpc_fallback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_fallback_test/grpc_fallback_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_health_check_test/grpc_health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_health_check_test/grpc_health_check_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_integration_test/grpc_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_integration_test/grpc_integration_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_interop_test/grpc_interop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_interop_test/grpc_interop_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_ministress_test/grpc_ministress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_ministress_test/grpc_ministress_test.go -------------------------------------------------------------------------------- /tests/integration_test/grpc_streaming_test/grpc_streaming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/grpc_streaming_test/grpc_streaming_test.go -------------------------------------------------------------------------------- /tests/integration_test/http1_deadline_test/http1_deadline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/http1_deadline_test/http1_deadline_test.go -------------------------------------------------------------------------------- /tests/integration_test/http1_integration_test/http1_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/http1_integration_test/http1_integration_test.go -------------------------------------------------------------------------------- /tests/integration_test/http_method_override_test/http_method_override_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/http_method_override_test/http_method_override_test.go -------------------------------------------------------------------------------- /tests/integration_test/iam_imds_data_path_test/iam_imds_data_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/iam_imds_data_path_test/iam_imds_data_path_test.go -------------------------------------------------------------------------------- /tests/integration_test/jwt_auth_integration_test/jwt_auth_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/jwt_auth_integration_test/jwt_auth_integration_test.go -------------------------------------------------------------------------------- /tests/integration_test/jwt_locations_test/jwt_locations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/jwt_locations_test/jwt_locations_test.go -------------------------------------------------------------------------------- /tests/integration_test/managed_service_config_test/managed_service_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/managed_service_config_test/managed_service_config_test.go -------------------------------------------------------------------------------- /tests/integration_test/multi_grpc_services_test/multi_grpc_services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/multi_grpc_services_test/multi_grpc_services_test.go -------------------------------------------------------------------------------- /tests/integration_test/non_gcp_test/non_gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/non_gcp_test/non_gcp_test.go -------------------------------------------------------------------------------- /tests/integration_test/opencensus_tracing_test/opencensus_tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/opencensus_tracing_test/opencensus_tracing_test.go -------------------------------------------------------------------------------- /tests/integration_test/report_gcp_attributes_test/report_gcp_attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/report_gcp_attributes_test/report_gcp_attributes_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_access_token_test/service_control_access_token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_access_token_test/service_control_access_token_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_apikey_location_test/service_control_apikey_location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_apikey_location_test/service_control_apikey_location_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_apikey_restriction_test/service_control_apikey_restriction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_apikey_restriction_test/service_control_apikey_restriction_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_auth_fail_test/service_control_auth_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_auth_fail_test/service_control_auth_fail_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_basic_test/service_control_basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_basic_test/service_control_basic_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_cache_test/service_control_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_cache_test/service_control_cache_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_check_fail_test/service_control_check_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_check_fail_test/service_control_check_fail_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_check_network_fail_test/service_control_check_network_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_check_network_fail_test/service_control_check_network_fail_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_check_server_fail_test/service_control_check_server_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_check_server_fail_test/service_control_check_server_fail_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_credential_id_test/service_control_credential_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_credential_id_test/service_control_credential_id_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_failed_request_report_test/service_control_failed_request_report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_failed_request_report_test/service_control_failed_request_report_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_http_method_test/service_control_http_method_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_http_method_test/service_control_http_method_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_http_path_test/service_control_http_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_http_path_test/service_control_http_path_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_log_test/service_control_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_log_test/service_control_log_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_protocol_test/service_control_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_protocol_test/service_control_protocol_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_quota_test/service_control_quota_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_quota_test/service_control_quota_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_report_network_fail_test/service_control_report_network_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_report_network_fail_test/service_control_report_network_fail_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_response_code_test/service_control_response_code_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_response_code_test/service_control_response_code_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_retry_timeout_test/service_control_retry_timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_retry_timeout_test/service_control_retry_timeout_test.go -------------------------------------------------------------------------------- /tests/integration_test/service_control_skip_test/service_control_skip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/service_control_skip_test/service_control_skip_test.go -------------------------------------------------------------------------------- /tests/integration_test/statistics_test/statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/statistics_test/statistics_test.go -------------------------------------------------------------------------------- /tests/integration_test/transcoding_bindings_test/transcoding_bindings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/transcoding_bindings_test/transcoding_bindings_test.go -------------------------------------------------------------------------------- /tests/integration_test/transcoding_errors_test/transcoding_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/transcoding_errors_test/transcoding_errors_test.go -------------------------------------------------------------------------------- /tests/integration_test/transcoding_options_test/transcoding_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/transcoding_options_test/transcoding_options_test.go -------------------------------------------------------------------------------- /tests/integration_test/transport_security_test/transport_security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/transport_security_test/transport_security_test.go -------------------------------------------------------------------------------- /tests/integration_test/websocket_test/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/integration_test/websocket_test/websocket_test.go -------------------------------------------------------------------------------- /tests/start_proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/start_proxy/__init__.py -------------------------------------------------------------------------------- /tests/start_proxy/env_start_proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/start_proxy/env_start_proxy_test.py -------------------------------------------------------------------------------- /tests/start_proxy/start_proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/start_proxy/start_proxy_test.py -------------------------------------------------------------------------------- /tests/utils/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/args.go -------------------------------------------------------------------------------- /tests/utils/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/diff.go -------------------------------------------------------------------------------- /tests/utils/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/diff_test.go -------------------------------------------------------------------------------- /tests/utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/error.go -------------------------------------------------------------------------------- /tests/utils/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/handler.go -------------------------------------------------------------------------------- /tests/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/http.go -------------------------------------------------------------------------------- /tests/utils/service_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/service_account.go -------------------------------------------------------------------------------- /tests/utils/service_control_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/service_control_utils.go -------------------------------------------------------------------------------- /tests/utils/service_control_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/service_control_utils_test.go -------------------------------------------------------------------------------- /tests/utils/stats_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/stats_fetcher.go -------------------------------------------------------------------------------- /tests/utils/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/status.go -------------------------------------------------------------------------------- /tests/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/time.go -------------------------------------------------------------------------------- /tests/utils/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/tests/utils/version.go -------------------------------------------------------------------------------- /third_party/golang_internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/golang_internal/LICENSE -------------------------------------------------------------------------------- /third_party/golang_internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/golang_internal/README.md -------------------------------------------------------------------------------- /third_party/golang_internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/golang_internal/oauth2.go -------------------------------------------------------------------------------- /third_party/tools/coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/coverage/README.md -------------------------------------------------------------------------------- /third_party/tools/coverage/cpp_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/coverage/cpp_fuzz.sh -------------------------------------------------------------------------------- /third_party/tools/coverage/cpp_unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/coverage/cpp_unit.sh -------------------------------------------------------------------------------- /third_party/tools/coverage/gen_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/coverage/gen_coverage.sh -------------------------------------------------------------------------------- /third_party/tools/gcrgc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/gcrgc/LICENSE -------------------------------------------------------------------------------- /third_party/tools/gcrgc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/gcrgc/README.md -------------------------------------------------------------------------------- /third_party/tools/gcrgc/gcrgc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/gcrgc/gcrgc.sh -------------------------------------------------------------------------------- /third_party/tools/spelling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/spelling/LICENSE -------------------------------------------------------------------------------- /third_party/tools/spelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/spelling/README.md -------------------------------------------------------------------------------- /third_party/tools/spelling/check_spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/esp-v2/HEAD/third_party/tools/spelling/check_spelling.sh -------------------------------------------------------------------------------- /third_party/tools/spelling/spelling_skip_files.txt: -------------------------------------------------------------------------------- 1 | OWNERS.md 2 | -------------------------------------------------------------------------------- /third_party/tools/spelling/spelling_whitelist_words.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------