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

adds scaffolding for e2e perf/load encryption tests #265

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ clean:
GO_TEST_PACKAGES :=./pkg/... ./cmd/...

# these are extremely slow serial e2e encryption tests that modify the cluster's global state
.PHONY: test-e2e-encryption
test-e2e-encryption: GO_TEST_PACKAGES :=./test/e2e-encryption/...
test-e2e-encryption: GO_TEST_FLAGS += -v
test-e2e-encryption: GO_TEST_FLAGS += -timeout 4h
test-e2e-encryption: GO_TEST_FLAGS += -p 1
test-e2e-encryption: GO_TEST_FLAGS += -parallel 1
test-e2e-encryption: test-unit
.PHONY: test-e2e-encryption

test-e2e-encryption-perf: GO_TEST_PACKAGES :=./test/e2e-encryption-perf/...
test-e2e-encryption-perf: GO_TEST_FLAGS += -v
test-e2e-encryption-perf: GO_TEST_FLAGS += -timeout 1h
test-e2e-encryption-perf: GO_TEST_FLAGS += -p 1
test-e2e-encryption-perf: test-unit
.PHONY: test-e2e-encryption-perf

.PHONY: test-e2e
test-e2e: GO_TEST_PACKAGES :=./test/e2e/...
Expand Down
7 changes: 7 additions & 0 deletions test/e2e-encryption-perf/encryption_perf_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package e2e_encryption_perf

import "testing"

func TestImplementMe(t *testing.T) {
t.Log("implement me")
}