Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging to release-5.2: [TT-13819] Benchmark updates, session limiter workaround for test goroutine leak (#6826) #6834

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@

/ci/ @TykTechnologies/devops
.github/workflows/release.yml @TykTechnologies/devops
.github/workflows/sync-automation.yml @TykTechnologies/devops
.github/workflows/pac.yml @TykTechnologies/devops
/repo-policy/ @TykTechnologies/devops

# Core API Squad ownership of CI test pipeline and developer tooling.

/bin/ @TykTechnologies/core-api-squad
.github/workflows/ci-tests.yml @TykTechnologies/core-api-squad
.github/workflows/release-tests.yml @TykTechnologies/core-api-squad
/.taskfiles/ @TykTechnologies/core-api-squad
/Dockerfile @TykTechnologies/core-api-squad
/docker/ @TykTechnologies/core-api-squad
/Makefile @TykTechnologies/core-api-squad
/Taskfile.yml @TykTechnologies/core-api-squad
/docker-compose.yml @TykTechnologies/core-api-squad

# Core API Squad ownership of plugin compiler and related tests.

/smoke-tests/ @TykTechnologies/core-api-squad
/ci/tests/ @TykTechnologies/core-api-squad
/ci/images/plugin-compiler/ @TykTechnologies/core-api-squad
.github/workflows/ci-tests.yml @TykTechnologies/core-api-squad
.github/workflows/release-tests.yml @TykTechnologies/core-api-squad
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ test:
# lint runs all local linters that must pass before pushing
.PHONY: lint lint-install lint-fast
lint: lint-fast
goimports -local github.com/TykTechnologies,github.com/TykTechnologies/tyk/internal -w .
gofmt -w .
faillint -ignore-tests -paths "$(shell grep -v '^#' .faillint | xargs echo | sed 's/ /,/g')" ./...

Expand All @@ -36,7 +35,6 @@ lint-fast: lint-install
go mod tidy

lint-install:
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.45.0
go install github.com/fatih/faillint@latest
go install go.uber.org/mock/mockgen@v0.3.0
Expand Down
16 changes: 13 additions & 3 deletions bin/ci-benchmark.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
#!/bin/bash

set -e

benchRegex=${1:-.}
# Build gw test binary
go test -o gateway.test -c ./gateway

BENCHMARKS=$(./gateway.test -test.list=Bench.+)

TYK_LOGLEVEL= go test -run=NONE -bench=$benchRegex || fatal "go test -run=NONE -bench=$benchRegex"
for benchmark in $BENCHMARKS; do
echo $benchmark
benchRegex="^${benchmark}$"
./gateway.test -test.run=^$ -test.bench=$benchRegex -test.count=1 \
-test.benchtime 30s -test.benchmem \
-test.cpuprofile=coverage/$benchmark-cpu.out \
-test.memprofile=coverage/$benchmark-mem.out \
-test.trace=coverage/$benchmark-trace.out
done
3 changes: 1 addition & 2 deletions certs/mock/mock.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions gateway/api_definition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1017,6 +1017,8 @@ func (ts *Test) testPrepareDefaultVersion() (string, *APISpec) {
spec.Proxy.ListenPath = "/"

spec.UseKeylessAccess = false
spec.DisableRateLimit = true
spec.DisableQuota = true
})[0]

return CreateSession(ts.Gw, func(s *user.SessionState) {
Expand Down
2 changes: 2 additions & 0 deletions gateway/event_system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ func TestInitGenericEventHandlers(t *testing.T) {
}

func BenchmarkInitGenericEventHandlers(b *testing.B) {
b.Skip()

ts := StartTest(nil)
defer ts.Close()

Expand Down
3 changes: 2 additions & 1 deletion gateway/mw_basic_auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ func genAuthHeader(username, password string) string {
}

func (ts *Test) testPrepareBasicAuth(cacheDisabled bool) *user.SessionState {

session := CreateStandardSession()
session.BasicAuthData.Password = "password"
session.AccessRights = map[string]user.AccessDefinition{"test": {APIID: "test", Versions: []string{"v1"}}}
Expand All @@ -33,6 +32,8 @@ func (ts *Test) testPrepareBasicAuth(cacheDisabled bool) *user.SessionState {
spec.UseKeylessAccess = false
spec.Proxy.ListenPath = "/"
spec.OrgID = "default"
spec.DisableRateLimit = true
spec.DisableQuota = true
})

return session
Expand Down
10 changes: 10 additions & 0 deletions gateway/mw_jwt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ func (ts *Test) prepareGenericJWTSession(testName string, method string, claimNa
spec.EnableJWT = true
spec.Proxy.ListenPath = "/"
spec.JWTSkipKid = ApiSkipKid
spec.DisableRateLimit = true
spec.DisableQuota = true

if claimName != KID {
spec.JWTIdentityBaseField = claimName
Expand Down Expand Up @@ -471,6 +473,8 @@ func (ts *Test) prepareJWTSessionRSAWithRawSourceOnWithClientID(isBench bool) st
spec.JWTIdentityBaseField = "user_id"
spec.JWTClientIDBaseField = "azp"
spec.Proxy.ListenPath = "/"
spec.DisableRateLimit = true
spec.DisableQuota = true
})[0]

policyID := ts.CreatePolicy(func(p *user.Policy) {
Expand Down Expand Up @@ -551,6 +555,8 @@ func (ts *Test) prepareJWTSessionRSAWithRawSource() string {
spec.JWTIdentityBaseField = "user_id"
spec.JWTPolicyFieldName = "policy_id"
spec.Proxy.ListenPath = "/"
spec.DisableRateLimit = true
spec.DisableQuota = true
})

pID := ts.CreatePolicy()
Expand Down Expand Up @@ -1440,6 +1446,8 @@ func (ts *Test) prepareJWTSessionRSAWithJWK() string {
spec.JWTIdentityBaseField = "user_id"
spec.JWTPolicyFieldName = "policy_id"
spec.Proxy.ListenPath = "/"
spec.DisableRateLimit = true
spec.DisableQuota = true
})

pID := ts.CreatePolicy()
Expand Down Expand Up @@ -1499,6 +1507,8 @@ func (ts *Test) prepareJWTSessionRSAWithEncodedJWK() (*APISpec, string) {
spec.JWTIdentityBaseField = "user_id"
spec.JWTPolicyFieldName = "policy_id"
spec.Proxy.ListenPath = "/"
spec.DisableRateLimit = true
spec.DisableQuota = true
})[0]

pID := ts.CreatePolicy()
Expand Down
67 changes: 34 additions & 33 deletions gateway/mw_transform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,10 @@ func TestTransformNonAscii(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
spec.EnableContextVars = false
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err != nil {
Expand All @@ -64,15 +63,16 @@ func BenchmarkTransformNonAscii(b *testing.B) {
ts := StartTest(nil)
defer ts.Close()

spec := APISpec{}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
transform := TransformMiddleware{base}
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := &TransformMiddleware{base}

for i := 0; i < b.N; i++ {
r := TestReq(b, "GET", "/", in)

if err := transformBody(r, tmeta, &transform); err != nil {
if err := transformBody(r, tmeta, transform); err != nil {
b.Fatalf("wanted nil error, got %v", err)
}
}
Expand All @@ -90,10 +90,10 @@ func TestTransformXMLCrash(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err == nil {
Expand Down Expand Up @@ -145,10 +145,10 @@ func TestTransformJSONMarshalXMLInput(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err != nil {
Expand All @@ -172,10 +172,10 @@ func TestTransformJSONMarshalJSONInput(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err != nil {
Expand Down Expand Up @@ -211,10 +211,10 @@ func TestTransformJSONMarshalJSONArrayInput(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err != nil {
Expand All @@ -236,9 +236,10 @@ func BenchmarkTransformJSONMarshal(b *testing.B) {
ts := StartTest(nil)
defer ts.Close()

spec := APISpec{}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

for i := 0; i < b.N; i++ {
Expand All @@ -257,10 +258,10 @@ func TestTransformXMLMarshal(t *testing.T) {
ts := StartTest(nil)
defer ts.Close()

ad := apidef.APIDefinition{}
spec := APISpec{APIDefinition: &ad}
base := BaseMiddleware{Spec: &spec, Gw: ts.Gw}
base.Spec.EnableContextVars = false
ad := &apidef.APIDefinition{}
spec := &APISpec{APIDefinition: ad}
base := BaseMiddleware{Spec: spec, Gw: ts.Gw}

transform := TransformMiddleware{base}

if err := transformBody(r, tmeta, &transform); err != nil {
Expand Down
2 changes: 2 additions & 0 deletions gateway/mw_version_check_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ func (ts *Test) testPrepareVersioning() (string, string) {
spec.VersionDefinition.Location = "header"
spec.VersionDefinition.Key = "version"
spec.Proxy.ListenPath = "/"
spec.DisableRateLimit = true
spec.DisableQuota = true
spec.VersionData.Versions["expired"] = apidef.VersionInfo{
Name: "expired",
Expires: "2006-01-02 15:04",
Expand Down
13 changes: 7 additions & 6 deletions gateway/res_handler_header_injector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ func testPrepareResponseHeaderInjection(ts *Test) {
spec.UseKeylessAccess = true
spec.Proxy.ListenPath = "/"
spec.OrgID = "default"
spec.DisableRateLimit = true
spec.DisableQuota = true
UpdateAPIVersion(spec, "v1", func(v *apidef.VersionInfo) {
v.UseExtendedPaths = true
json.Unmarshal([]byte(`[
Expand Down Expand Up @@ -118,10 +120,6 @@ func BenchmarkResponseHeaderInjection(b *testing.B) {
}

deleteHeaders := map[string]string{
"X-Tyk-Test": "1",
cachedResponseHeader: "1",
}
deleteHeadersCached := map[string]string{
"X-Tyk-Test": "1",
}

Expand All @@ -133,9 +131,12 @@ func BenchmarkResponseHeaderInjection(b *testing.B) {
{Method: "GET", Path: "/test-with-slash", HeadersMatch: addHeaders, HeadersNotMatch: deleteHeaders},
{Method: "GET", Path: "/test-no-slash", HeadersMatch: addHeaders, HeadersNotMatch: deleteHeaders},
{Method: "GET", Path: "/rewrite-test", HeadersMatch: addHeaders, HeadersNotMatch: deleteHeaders, BodyMatch: `"Url":"/newpath"`},
{Method: "GET", Path: "/rewrite-test", HeadersMatch: addHeadersCached, HeadersNotMatch: deleteHeadersCached, BodyMatch: `"X-I-Am":"Request"`},
{Method: "GET", Path: "/rewrite-test", HeadersMatch: addHeadersCached, HeadersNotMatch: deleteHeadersCached, BodyMatch: userAgent},
{Method: "GET", Path: "/rewrite-test", HeadersMatch: addHeadersCached, HeadersNotMatch: deleteHeaders, BodyMatch: `"X-I-Am":"Request"`},
{Method: "GET", Path: "/rewrite-test", HeadersMatch: addHeadersCached, HeadersNotMatch: deleteHeaders, BodyMatch: userAgent},
}...)

// It's a loop, first time won't be cached.
addHeaders[cachedResponseHeader] = "1"
}
}

Expand Down
Loading