Skip to content

Commit

Permalink
add setup for k8s external e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
boddumanohar committed Apr 29, 2021
1 parent 437f3c6 commit 52d36ec
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,8 @@ e2e-teardown:

.PHONY: e2e-test
e2e-test:
go test -v -timeout=0 ./test/e2e ${GINKGO_FLAGS}
if [ ! -z "$(EXTERNAL_E2E_TEST)" ]; then \
bash ./test/external-e2e/run.sh;\
else \
go test -v -timeout=0 ./test/e2e ${GINKGO_FLAGS};\
fi
18 changes: 18 additions & 0 deletions test/external-e2e/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Kubernetes tests

This directory imports tests from kubernetes/kubernetes and enables:

* External CSI tests, https://github.com/kubernetes/kubernetes/tree/master/test/e2e/storage/external

# Prerequisites
- kubernetes 1.17+

# Run
* External CSI tests: `FOCUS=External.Storage`.

```sh
ginkgo -p --progress --v -focus='External.Storage' \
-skip='\[Disruptive\]' /tmp/csi-nfs/e2e.test -- \
-storage.testdriver=/tmp/csi-nfs/testdriver.yaml \
--kubeconfig=$KUBECONFIG
```
50 changes: 50 additions & 0 deletions test/external-e2e/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/bash

# Copyright 2021 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -xe

PROJECT_ROOT=$(git rev-parse --show-toplevel)

install_ginkgo () {
apt update -y
apt install -y golang-ginkgo-dev
}

setup_e2e_binaries() {
# download k8s external e2e binary for kubernetes v1.19
curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.19.0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz
tar -xvf e2e-tests.tar.gz && rm e2e-tests.tar.gz

# install the csi driver nfs
mkdir -p /tmp/csi-nfs && cp deploy/example/storageclass-nfs.yaml /tmp/csi-nfs/storageclass.yaml
make e2e-bootstrap
kubectl apply -f deploy/example/storageclass-nfs.yaml
make install-nfs-server
}

print_logs() {
echo "print out driver logs ..."
bash ./test/utils/nfs_log.sh
}

install_ginkgo
setup_e2e_binaries
trap print_logs EXIT

ginkgo -p --progress --v -focus='External.Storage.*nfs.csi.k8s.io' \
-skip='\[Disruptive\]|\[Slow\]' kubernetes/test/bin/e2e.test -- \
-storage.testdriver=$PROJECT_ROOT/test/external-e2e/testdriver.yaml \
--kubeconfig=$KUBECONFIG
12 changes: 12 additions & 0 deletions test/external-e2e/testdriver.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Manifest for Kubernetes external tests.
# See https://github.com/kubernetes/kubernetes/tree/master/test/e2e/storage/external

StorageClass:
FromFile: /tmp/csi-nfs/storageclass.yaml
DriverInfo:
Name: nfs.csi.k8s.io
Capabilities:
persistence: true
exec: true
multipods: true
RWX: true

0 comments on commit 52d36ec

Please sign in to comment.