├── .deepsource.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── help-and-questions.md ├── label-commenter-config.yml └── workflows │ ├── default.yml │ ├── dependency_review.yml │ ├── go.yml │ ├── labels.yml │ ├── manual_builders.yml │ ├── manual_release.yml │ ├── release.yml │ ├── security.yml │ └── upload.yml ├── .gitignore ├── Dockerfile ├── Dockerfile-builder ├── Dockerfile-builder-linux ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── backend_factory.go ├── cmd ├── krakend-ce │ ├── main.go │ └── schema │ │ ├── .gitignore │ │ └── empty.json └── krakend-integration │ └── main.go ├── deps.sh ├── encoding.go ├── executor.go ├── find_glibc.sh ├── go.mod ├── go.sum ├── handler_factory.go ├── krakend.json ├── plugin.go ├── proxy_factory.go ├── router_engine.go ├── sd.go └── tests ├── fixtures ├── bench.json ├── krakend.json ├── lua │ ├── base64.lua │ ├── collection.lua │ ├── decorator.lua │ └── json.lua └── specs │ ├── backend_301.json │ ├── backend_302.json │ ├── backend_303.json │ ├── backend_307.json │ ├── backend_404.json │ ├── botdetector_1.json │ ├── botdetector_2.json │ ├── botdetector_3.json │ ├── botdetector_4.json │ ├── cel-1.json │ ├── cel-2.json │ ├── cel-3.json │ ├── cel-4.json │ ├── cel-5.json │ ├── cel-6.json │ ├── cel-7.json │ ├── collection.json │ ├── cors_1.json │ ├── cors_2.json │ ├── cors_3.json │ ├── cors_4.json │ ├── cors_5.json │ ├── detail_error.json │ ├── flatmap_1.json │ ├── integration_jsonschema.json │ ├── integration_schema.json │ ├── jsonschema_1.json │ ├── jwt_1.json │ ├── jwt_2.json │ ├── jwt_3.json │ ├── jwt_4.json │ ├── jwt_5.json │ ├── lua_1.json │ ├── lua_2.json │ ├── negotitate_json.json │ ├── negotitate_plain.json │ ├── no-op_1.json │ ├── no-op_2.json │ ├── param_forwarding_1.json │ ├── param_forwarding_2.json │ ├── param_forwarding_3.json │ ├── param_forwarding_4.json │ ├── query_forwarding_1.json │ ├── query_forwarding_2.json │ ├── query_forwarding_3.json │ ├── router_401_1.json │ ├── router_404.json │ ├── router_405.json │ ├── router_redirect.json │ ├── rss.json │ ├── sequential_1.json │ ├── sequential_2.json │ ├── sequential_3.json │ ├── sequential_4.json │ ├── static.json │ ├── timeout.json │ ├── xml_1.json │ └── xml_2.json ├── integration.go ├── integration_example_test.go └── integration_test.go /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help-and-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/ISSUE_TEMPLATE/help-and-questions.md -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.github/workflows/dependency_review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/dependency_review.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/manual_builders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/manual_builders.yml -------------------------------------------------------------------------------- /.github/workflows/manual_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/manual_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.github/workflows/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.github/workflows/upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/Dockerfile-builder -------------------------------------------------------------------------------- /Dockerfile-builder-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/Dockerfile-builder-linux -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/backend_factory.go -------------------------------------------------------------------------------- /cmd/krakend-ce/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/cmd/krakend-ce/main.go -------------------------------------------------------------------------------- /cmd/krakend-ce/schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/cmd/krakend-ce/schema/.gitignore -------------------------------------------------------------------------------- /cmd/krakend-ce/schema/empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cmd/krakend-integration/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/cmd/krakend-integration/main.go -------------------------------------------------------------------------------- /deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/deps.sh -------------------------------------------------------------------------------- /encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/encoding.go -------------------------------------------------------------------------------- /executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/executor.go -------------------------------------------------------------------------------- /find_glibc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/find_glibc.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/go.sum -------------------------------------------------------------------------------- /handler_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/handler_factory.go -------------------------------------------------------------------------------- /krakend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/krakend.json -------------------------------------------------------------------------------- /plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/plugin.go -------------------------------------------------------------------------------- /proxy_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/proxy_factory.go -------------------------------------------------------------------------------- /router_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/router_engine.go -------------------------------------------------------------------------------- /sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/sd.go -------------------------------------------------------------------------------- /tests/fixtures/bench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/bench.json -------------------------------------------------------------------------------- /tests/fixtures/krakend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/krakend.json -------------------------------------------------------------------------------- /tests/fixtures/lua/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/lua/base64.lua -------------------------------------------------------------------------------- /tests/fixtures/lua/collection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/lua/collection.lua -------------------------------------------------------------------------------- /tests/fixtures/lua/decorator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/lua/decorator.lua -------------------------------------------------------------------------------- /tests/fixtures/lua/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/lua/json.lua -------------------------------------------------------------------------------- /tests/fixtures/specs/backend_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/backend_301.json -------------------------------------------------------------------------------- /tests/fixtures/specs/backend_302.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/backend_302.json -------------------------------------------------------------------------------- /tests/fixtures/specs/backend_303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/backend_303.json -------------------------------------------------------------------------------- /tests/fixtures/specs/backend_307.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/backend_307.json -------------------------------------------------------------------------------- /tests/fixtures/specs/backend_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/backend_404.json -------------------------------------------------------------------------------- /tests/fixtures/specs/botdetector_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/botdetector_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/botdetector_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/botdetector_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/botdetector_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/botdetector_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/botdetector_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/botdetector_4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-5.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-6.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cel-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cel-7.json -------------------------------------------------------------------------------- /tests/fixtures/specs/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/collection.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cors_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cors_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cors_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cors_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cors_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cors_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cors_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cors_4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/cors_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/cors_5.json -------------------------------------------------------------------------------- /tests/fixtures/specs/detail_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/detail_error.json -------------------------------------------------------------------------------- /tests/fixtures/specs/flatmap_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/flatmap_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/integration_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/integration_jsonschema.json -------------------------------------------------------------------------------- /tests/fixtures/specs/integration_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/integration_schema.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jsonschema_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jsonschema_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jwt_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jwt_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jwt_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jwt_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jwt_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jwt_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jwt_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jwt_4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/jwt_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/jwt_5.json -------------------------------------------------------------------------------- /tests/fixtures/specs/lua_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/lua_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/lua_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/lua_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/negotitate_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/negotitate_json.json -------------------------------------------------------------------------------- /tests/fixtures/specs/negotitate_plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/negotitate_plain.json -------------------------------------------------------------------------------- /tests/fixtures/specs/no-op_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/no-op_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/no-op_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/no-op_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/param_forwarding_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/param_forwarding_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/param_forwarding_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/param_forwarding_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/param_forwarding_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/param_forwarding_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/param_forwarding_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/param_forwarding_4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/query_forwarding_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/query_forwarding_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/query_forwarding_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/query_forwarding_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/query_forwarding_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/query_forwarding_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/router_401_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/router_401_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/router_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/router_404.json -------------------------------------------------------------------------------- /tests/fixtures/specs/router_405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/router_405.json -------------------------------------------------------------------------------- /tests/fixtures/specs/router_redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/router_redirect.json -------------------------------------------------------------------------------- /tests/fixtures/specs/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/rss.json -------------------------------------------------------------------------------- /tests/fixtures/specs/sequential_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/sequential_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/sequential_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/sequential_2.json -------------------------------------------------------------------------------- /tests/fixtures/specs/sequential_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/sequential_3.json -------------------------------------------------------------------------------- /tests/fixtures/specs/sequential_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/sequential_4.json -------------------------------------------------------------------------------- /tests/fixtures/specs/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/static.json -------------------------------------------------------------------------------- /tests/fixtures/specs/timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/timeout.json -------------------------------------------------------------------------------- /tests/fixtures/specs/xml_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/xml_1.json -------------------------------------------------------------------------------- /tests/fixtures/specs/xml_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/fixtures/specs/xml_2.json -------------------------------------------------------------------------------- /tests/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/integration.go -------------------------------------------------------------------------------- /tests/integration_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/integration_example_test.go -------------------------------------------------------------------------------- /tests/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakend/krakend-ce/HEAD/tests/integration_test.go --------------------------------------------------------------------------------