cleanup: remove integration test
This commit is contained in:
parent
4e53a61c61
commit
7ded51821b
4
Makefile
4
Makefile
@ -67,10 +67,6 @@ unit-test:
|
|||||||
sanity-test: nfs
|
sanity-test: nfs
|
||||||
./test/sanity/run-test.sh
|
./test/sanity/run-test.sh
|
||||||
|
|
||||||
.PHONY: integration-test
|
|
||||||
integration-test: nfs
|
|
||||||
./test/integration/run-test.sh
|
|
||||||
|
|
||||||
.PHONY: local-build-push
|
.PHONY: local-build-push
|
||||||
local-build-push: nfs
|
local-build-push: nfs
|
||||||
docker build -t $(LOCAL_USER)/nfsplugin:latest .
|
docker build -t $(LOCAL_USER)/nfsplugin:latest .
|
||||||
|
|||||||
@ -1,12 +0,0 @@
|
|||||||
## Integration Test
|
|
||||||
Integration test verifies the functionality of CSI driver as a standalone server outside Kubernetes. It exercises the lifecycle of the volume by creating, attaching, staging, mounting volumes and the reverse operations.
|
|
||||||
|
|
||||||
## Run Integration Tests Locally
|
|
||||||
### Prerequisite
|
|
||||||
- Make sure golang is installed.
|
|
||||||
- Make sure Docker is installed and running. The test will spin up a docker container hosting the NFS server.
|
|
||||||
|
|
||||||
### Run integration tests
|
|
||||||
```
|
|
||||||
make integration-test
|
|
||||||
```
|
|
||||||
@ -1,89 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Copyright 2020 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 -eo pipefail
|
|
||||||
|
|
||||||
if [[ -z "$(command -v csc)" ]]; then
|
|
||||||
GO111MODULE=off go get github.com/rexray/gocsi/csc
|
|
||||||
fi
|
|
||||||
|
|
||||||
function cleanup {
|
|
||||||
echo 'pkill -f nfsplugin'
|
|
||||||
pkill -f nfsplugin
|
|
||||||
echo 'Uninstalling NFS server on localhost'
|
|
||||||
docker rm nfs -f
|
|
||||||
}
|
|
||||||
trap cleanup EXIT
|
|
||||||
|
|
||||||
function provision_nfs_server {
|
|
||||||
echo 'Installing NFS server on localhost'
|
|
||||||
apt-get update -y
|
|
||||||
apt-get install -y nfs-common
|
|
||||||
docker run -d --name nfs --privileged -p 2049:2049 -v "$(pwd)"/nfsshare:/nfsshare -e SHARED_DIRECTORY=/nfsshare itsthenetwork/nfs-server-alpine:latest
|
|
||||||
}
|
|
||||||
|
|
||||||
provision_nfs_server
|
|
||||||
|
|
||||||
readonly CSC_BIN="$GOBIN/csc"
|
|
||||||
readonly cap="1,mount,"
|
|
||||||
volname="citest-$(date +%s)"
|
|
||||||
readonly volsize="2147483648"
|
|
||||||
readonly endpoint="unix:///tmp/csi.sock"
|
|
||||||
readonly target_path="/tmp/targetpath"
|
|
||||||
readonly params="server=127.0.0.1,share=/"
|
|
||||||
|
|
||||||
nodeid='CSINode'
|
|
||||||
if [[ "$#" -gt 0 ]] && [[ -n "$1" ]]; then
|
|
||||||
nodeid="$1"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Run CSI driver as a background service
|
|
||||||
bin/nfsplugin --endpoint "$endpoint" --nodeid "$nodeid" -v=5 &
|
|
||||||
sleep 5
|
|
||||||
|
|
||||||
echo 'Begin to run integration test...'
|
|
||||||
|
|
||||||
# Begin to run CSI functions one by one
|
|
||||||
echo "Create volume test:"
|
|
||||||
value="$("$CSC_BIN" controller new --endpoint "$endpoint" --cap "$cap" "$volname" --req-bytes "$volsize" --params "$params")"
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
volumeid="$(echo "$value" | awk '{print $1}' | sed 's/"//g')"
|
|
||||||
echo "Got volume id: $volumeid"
|
|
||||||
|
|
||||||
"$CSC_BIN" controller validate-volume-capabilities --endpoint "$endpoint" --cap "$cap" "$volumeid"
|
|
||||||
|
|
||||||
echo "publish volume test:"
|
|
||||||
"$CSC_BIN" node publish --endpoint "$endpoint" --cap "$cap" --vol-context "$params" --target-path "$target_path" "$volumeid"
|
|
||||||
sleep 2
|
|
||||||
|
|
||||||
declare staging_target_path
|
|
||||||
echo "node stats test:"
|
|
||||||
csc node stats --endpoint "$endpoint" "$volumeid:$target_path:$staging_target_path"
|
|
||||||
sleep 2
|
|
||||||
|
|
||||||
echo "unpublish volume test:"
|
|
||||||
"$CSC_BIN" node unpublish --endpoint "$endpoint" --target-path "$target_path" "$volumeid"
|
|
||||||
sleep 2
|
|
||||||
|
|
||||||
echo "Delete volume test:"
|
|
||||||
"$CSC_BIN" controller del --endpoint "$endpoint" "$volumeid" --timeout 10m
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
"$CSC_BIN" identity plugin-info --endpoint "$endpoint"
|
|
||||||
"$CSC_BIN" node get-info --endpoint "$endpoint"
|
|
||||||
|
|
||||||
echo "Integration test is completed."
|
|
||||||
Loading…
x
Reference in New Issue
Block a user