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

CLOUDP-296652: Separate helm tests #2214

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/cloud-tests-filter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- 'pkg/**/!(*_test.go)'
- 'internal/**/!(*_test.go)'
- 'Dockerfile'
- 'test/e2e/**'
- 'test/kind/**'
- 'test/int/**'
# run only if 'production-code' files were changed
- name: Production code changed
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-e2e-gov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
run: |
devbox run -- '
GOWORK=off &&
cd test/e2e &&
cd test/kind/inprocess &&
ginkgo labels &&
echo "Running: AKO_E2E_TEST=1 ginkgo --label-filter=\"atlas-gov\" --timeout 120m --nodes=10 --flake-attempts=1 --randomize-all --race --cover --v --trace --show-nodes-events --output-interceptor-mode=none" &&
AKO_E2E_TEST=1 ginkgo --label-filter="atlas-gov" --timeout 120m --nodes=10 --flake-attempts=1 --randomize-all --race --cover --v --trace --show-node-events --output-interceptor-mode=none --coverpkg=github.com/mongodb/mongodb-atlas-kubernetes/v2/pkg/...'
echo "Running: AKO_KIND_TEST=1 ginkgo --label-filter=\"atlas-gov\" --timeout 120m --nodes=10 --flake-attempts=1 --randomize-all --race --cover --v --trace --show-nodes-events --output-interceptor-mode=none" &&
AKO_KIND_TEST=1 ginkgo --label-filter="atlas-gov" --timeout 120m --nodes=10 --flake-attempts=1 --randomize-all --race --cover --v --trace --show-node-events --output-interceptor-mode=none --coverpkg=github.com/mongodb/mongodb-atlas-kubernetes/v2/pkg/...'
- name: Upload operator logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
Expand All @@ -55,6 +55,6 @@ jobs:
if: ${{ success() }}
uses: codecov/codecov-action@v5
with:
files: test/e2e/coverprofile.out
files: test/kind/inprocess/coverprofile.out
name: ${{ matrix.test }}
verbose: true
5 changes: 1 addition & 4 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,6 @@ jobs:
"encryption-at-rest",
"free-tier",
"global-deployment",
"helm-ns",
"helm-update",
"helm-wide",
"integration-ns",
"long-run",
"multinamespaced",
Expand Down Expand Up @@ -280,6 +277,6 @@ jobs:
if: ${{ success() }}
uses: codecov/codecov-action@v5
with:
files: test/e2e/coverprofile.out
files: test/kind/inprocess/coverprofile.out
name: ${{ matrix.test }}
verbose: true
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ tags
testbin/

# don't include generated files from e2e tests
test/e2e/data/
test/e2e/output/
test/kind/inprocess/data/
test/kind/inprocess/output/

node_modules
tmp/
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ issues:
linters:
- gochecknoglobals
- wrapcheck
- path: test/e2e
- path: test/kind
linters:
- stylecheck
- noctx
Expand Down
13 changes: 10 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ifndef TARGET_OS
TARGET_OS := $(shell go env GOOS)
endif

GO_UNIT_TEST_FOLDERS=$(shell go list ./... |grep -v 'test/int\|test/e2e')
GO_UNIT_TEST_FOLDERS=$(shell go list ./... |grep -v 'test/int\|test/kind')

# DEFAULT_CHANNEL defines the default channel used in the bundle.
# Add a new line here if you would like to change its default config. (E.g DEFAULT_CHANNEL = "stable")
Expand Down Expand Up @@ -198,10 +198,17 @@ envtest: envtest-assets
envtest-assets:
mkdir -p $(ENVTEST_ASSETS_DIR)

.PHONY: e2e
e2e: run-kind ## Run e2e test. Command `make e2e label=cluster-ns` run cluster-ns test
.PHONY: kind-tests
kind-tests: run-kind ## Run kind-tests test. Command `make kind-helm label=cluster-ns` run cluster-ns test
./scripts/e2e_local.sh $(label) $(build)

.PHONY: e2e
e2e: kind-tests ## kind-tests alias

.PHONY: kind-helm
kind-helm: run-kind ## Run kind-helm tests. Command `make kind-helm label=helm-ns` run `helm-ns` test
AKO_KIND_HELM_TEST=1 ginkgo --race --label-filter="${label}" --timeout 120m -vv test/kind/helm

.PHONY: e2e-openshift-upgrade
e2e-openshift-upgrade:
cd scripts && ./openshift-upgrade-test.sh
Expand Down
10 changes: 5 additions & 5 deletions docs/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ Test code can be further decomposed into:

- **Unit tests**, which can be run by simply doing `go test ./...` and should always succeed without any preparations.
- Still you should normally use `make unit-test` so that default flags such as race detection and coverage are also included.
- Includes all `*_test.go` files, tests on `test/int/` and `test/e2e/` folders will be skipped by default.
- **Non-unit tests requiring a setup**, such as **integration** and **e2e** tests, live under the `test/` folder and need to be invoked with a explicit *environment variable*, such as `AKO_INT_TEST=1` for integration tests or `AKO_E2E_TEST=1` for e2e tests. In short:
- Includes all `*_test.go` files, tests on `test/int/` and `test/kind/` folders will be skipped by default.
- **Non-unit tests requiring a setup**, such as **integration** and **e2e** tests, live under the `test/` folder and need to be invoked with a explicit *environment variable*, such as `AKO_INT_TEST=1` for integration tests or `AKO_KIND_TEST=1` for e2e tests. In short:
- Run **integration tests** with `make int-test label=...`, using a label to limit the tests to be run.
- Run **e2e tests** with `make e2e label=...`.
- Note you will need to load extra environment variables, including credentials, to be able to run most of these tests.
- Includes files under `test/int/` and `test/e2e/` folders.
- Includes files under `test/int/` and `test/kind/` folders.
- **Helper test code** is code used by unit and non-unit tests code which is not part of the production code. For example, mocks and helpers used to make tests easier to write, more succinct and reliable.
- Such test code might include its own unit tests that will run as any other unit test via `go test ./...` or `make unit-test`.
- Note this code requires no build tags, as it is only imported by `*_test.go` code it will not become part of the imported production code.
- Includes basically any **non** `*_test.go` under `test/` excluding `test/int/` and `test/e2e/` folders, such as `test/atlas/` mocks.
- For historical reasons, many helpers are today under the `test/e2e` folder. The plan it to move them to `test/helper` or some other folder under `test/`, so that their unit tests, if any, will always be run by default.
- Includes basically any **non** `*_test.go` under `test/` excluding `test/int/` and `test/kind/` folders, such as `test/atlas/` mocks.
- For historical reasons, many helpers are today under the `test/kind` folder. The plan it to move them to `test/helper` or some other folder under `test/`, so that their unit tests, if any, will always be run by default.
2 changes: 1 addition & 1 deletion scripts/e2e_local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ export MCLI_PUBLIC_API_KEY="${MCLI_PUBLIC_API_KEY:-$public_key}"
export MCLI_PRIVATE_API_KEY="${MCLI_PRIVATE_API_KEY:-$private_key}"
export MCLI_ORG_ID="${MCLI_ORG_ID:-$org_id}"
export IMAGE_URL="${image}" #for helm chart
AKO_E2E_TEST=1 ginkgo --race --label-filter="${focus_key}" --timeout 120m -vv test/e2e/
AKO_KIND_TEST=1 ginkgo --race --label-filter="${focus_key}" --timeout 120m -vv test/kind/inprocess/
4 changes: 2 additions & 2 deletions scripts/launch-ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

helm version
go version
cd test/e2e
cd test/kind/inprocess

# no `long-run`, no `broken` tests. `Long-run` tests run as a separate job
if [[ $TEST_NAME == "long-run" ]]; then
Expand All @@ -13,5 +13,5 @@ else
filter="$TEST_NAME && !long-run && !broken";
fi

AKO_E2E_TEST=1 ginkgo --output-interceptor-mode=none --label-filter="${filter}" --timeout 120m --nodes=10 \
AKO_KIND_TEST=1 ginkgo --output-interceptor-mode=none --label-filter="${filter}" --timeout 120m --nodes=10 \
--flake-attempts=1 --race --cover --v --coverpkg=github.com/mongodb/mongodb-atlas-kubernetes/v2/pkg/...
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions/kube"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/cli"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/cli/helm"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/config"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/k8s"
Expand All @@ -24,14 +23,6 @@ var _ = Describe("HELM charts", Ordered, func() {
var data model.TestDataProvider
skipped := false

_ = BeforeAll(func() {
cli.Execute("kubectl", "delete", "--ignore-not-found=true", "-f", "../../deploy/crds").Wait().Out.Contents()
})

_ = AfterAll(func() {
cli.Execute("kubectl", "apply", "-f", "../../deploy/crds").Wait().Out.Contents()
})

_ = BeforeEach(func() {
imageURL := os.Getenv("IMAGE_URL")
Expect(imageURL).ShouldNot(BeEmpty(), "SetUP IMAGE_URL")
Expand Down
48 changes: 48 additions & 0 deletions test/kind/helm/helm_suite_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package e2e_test

import (
"fmt"
"testing"
"time"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/control"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/api/atlas"
)

const (
EventuallyTimeout = 100 * time.Second
ConsistentlyTimeout = 1 * time.Second
PollingInterval = 10 * time.Second
)

var (
atlasClient *atlas.Atlas
)

func TestE2e(t *testing.T) {
control.SkipTestUnless(t, "AKO_KIND_HELM_TEST")

RegisterFailHandler(Fail)
RunSpecs(t, "Atlas Operator Helm on Kind Test Suite")
}

var _ = BeforeSuite(func() {
if !control.Enabled("AKO_KIND_HELM_TEST") {
fmt.Println("Skipping helm on kind BeforeSuite, AKO_KIND_HELM_TEST is not set")

return
}

GinkgoWriter.Write([]byte("==============================Before==============================\n"))
SetDefaultEventuallyTimeout(EventuallyTimeout)
SetDefaultEventuallyPollingInterval(PollingInterval)
SetDefaultConsistentlyDuration(ConsistentlyTimeout)
GinkgoWriter.Write([]byte("========================End of Before==============================\n"))
})

var _ = ReportAfterSuite("Ensure test suite was not empty", func(r Report) {
Expect(r.PreRunStats.SpecsThatWillRun > 0).To(BeTrue(), "Suite must run at least 1 test")
})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ var (
)

func TestE2e(t *testing.T) {
control.SkipTestUnless(t, "AKO_E2E_TEST")
control.SkipTestUnless(t, "AKO_KIND_TEST")

RegisterFailHandler(Fail)
RunSpecs(t, "Atlas Operator E2E Test Suite")
}

var _ = BeforeSuite(func() {
if !control.Enabled("AKO_E2E_TEST") {
fmt.Println("Skipping e2e BeforeSuite, AKO_E2E_TEST is not set")
if !control.Enabled("AKO_KIND_TEST") {
fmt.Println("Skipping e2e BeforeSuite, AKO_KIND_TEST is not set")

return
}
Expand Down
File renamed without changes.
File renamed without changes.
Loading