Skip to content

Commit

Permalink
E2e (#224)
Browse files Browse the repository at this point in the history
* initial e2e test

* e2e collaset tests

* e2e.yaml

* fix: e2e ci kind config not found

* enhance e2e ci: (1) test e2e only after manager running; (2) test failed and dump logs if manager crashed

* fix some typo
  • Loading branch information
ColdsteelRail authored Jul 5, 2024
1 parent 2850868 commit 79ee21d
Show file tree
Hide file tree
Showing 6 changed files with 843 additions and 98 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: E2E
on:
pull_request:
branches:
- main
- release-*
push:
branches:
- main
- release-*

env:
GO_VERSION: '1.19'
KIND_VERSION: 'v0.14.0'
KIND_IMAGE: 'kindest/node:v1.22.2'
KIND_CLUSTER_NAME: 'e2e-test'

jobs:

CollaSet:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Cache Go Dependencies
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Setup Kind Cluster
uses: helm/[email protected]
with:
node_image: ${{ env.KIND_IMAGE }}
cluster_name: ${{ env.KIND_CLUSTER_NAME }}
config: ./test/e2e/scripts/kind-conf.yaml
version: ${{ env.KIND_VERSION }}
- name: Build Image
run: |
mkdir -p /tmp/kind
make kind-kube-config
make docker-build
make sync-kind-image
- name: Install Operating
run: |
set -ex
kubectl cluster-info
make deploy
for ((i=1;i<10;i++));
do
set +e
PODS=$(kubectl get pod -n kusionstack-system | grep -c '1/1')
set -e
if [ "$PODS" -eq 1 ]; then
break
fi
sleep 3
done
set -e
PODS=$(kubectl get pod -n kusionstack-system | grep -c '1/1')
if [ "$PODS" -eq 1 ]; then
echo "Wait for Kusionstack-manager ready successfully"
else
echo "Timeout to wait for Kusionstack-manager ready"
fi
- name: Run e2e Tests
run: |
make ginkgo
set -e
KUBECONFIG=/tmp/kind/kubeconfig.yaml ./bin/ginkgo -timeout 10m -v --focus='\[apps\] CollaSet' test/e2e
restartCount=$(kubectl get pod -n kusionstack-system -l control-plane=controller-manager --no-headers | awk '{print $4}')
if [ "${restartCount}" -eq "0" ];then
echo "Kusionstack-manager has not restarted"
else
kubectl get pod -n kusionstack-system -l control-plane=controller-manager --no-headers
echo "Kusionstack-manager has restarted, abort!!!"
kubectl get pod -n kusionstack-system --no-headers -l control-plane=controller-manager | awk '{print $1}' | xargs kubectl logs -p -n kusionstack-system
exit 1
fi
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ vet: ## Run go vet against code.

.PHONY: test
test: manifests generate fmt vet envtest ## Run tests.
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test ./... -coverprofile cover.out
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test ./pkg/... -coverprofile cover.out

##@ Build

Expand Down Expand Up @@ -150,10 +150,10 @@ clean-kind:

.PHONY: e2e-local
e2e-local:
KUBECONFIG=/tmp/kind-kubeconfig.yaml ./bin/ginkgo -timeout 10m -v test/e2e
KUBECONFIG=/tmp/kind/kubeconfig.yaml ./bin/ginkgo -timeout 10m -v test/e2e

.PHONY: e2e-all
e2e-all: e2e-local-deploy e2e-local clean-kind
e2e-all: deploy-in-kind e2e-local clean-kind

##@ Build Dependencies

Expand Down
Loading

0 comments on commit 79ee21d

Please sign in to comment.