* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
283 lines
5.8 KiB
Bash
283 lines
5.8 KiB
Bash
# set the following variables only if they've not been set
|
|
export GOVC_DATASTORE=${GOVC_DATASTORE-datastore1}
|
|
export GOVC_NETWORK=${GOVC_NETWORK-"VM Network"}
|
|
|
|
export GOVC_INSECURE=true
|
|
export GOVC_PERSIST_SESSION=false
|
|
unset GOVC_URL
|
|
unset GOVC_DEBUG
|
|
unset GOVC_TLS_KNOWN_HOSTS
|
|
unset GOVC_TLS_HANDSHAKE_TIMEOUT
|
|
unset GOVC_DATACENTER
|
|
unset GOVC_HOST
|
|
unset GOVC_USERNAME
|
|
unset GOVC_PASSWORD
|
|
|
|
if [ -z "$BATS_TEST_DIRNAME" ]; then
|
|
BATS_TEST_DIRNAME=$(dirname ${BASH_SOURCE})
|
|
fi
|
|
|
|
# gnu core utils
|
|
readlink=$(type -p greadlink readlink | head -1)
|
|
xargs=$(type -p gxargs xargs | head -1)
|
|
mktemp=$(type -p gmktemp mktemp | head -1)
|
|
|
|
BATS_TEST_DIRNAME=$($readlink -nf $BATS_TEST_DIRNAME)
|
|
|
|
GOVC_IMAGES=$BATS_TEST_DIRNAME/images
|
|
TTYLINUX_NAME=ttylinux-pc_i486-16.1
|
|
|
|
GOVC_TEST_VMDK_SRC=$GOVC_IMAGES/${TTYLINUX_NAME}-disk1.vmdk
|
|
GOVC_TEST_VMDK=govc-images/$(basename $GOVC_TEST_VMDK_SRC)
|
|
|
|
GOVC_TEST_ISO_SRC=$GOVC_IMAGES/${TTYLINUX_NAME}.iso
|
|
GOVC_TEST_ISO=govc-images/$(basename $GOVC_TEST_ISO_SRC)
|
|
|
|
GOVC_TEST_IMG_SRC=$GOVC_IMAGES/floppybird.img
|
|
GOVC_TEST_IMG=govc-images/$(basename $GOVC_TEST_IMG_SRC)
|
|
|
|
PATH="$GOPATH/bin:$PATH"
|
|
|
|
vcsim_stop() {
|
|
kill "$GOVC_SIM_PID"
|
|
rm -f "$GOVC_SIM_ENV"
|
|
unset GOVC_SIM_PID
|
|
}
|
|
|
|
teardown() {
|
|
if [ -n "$GOVC_SIM_PID" ] ; then
|
|
vcsim_stop
|
|
else
|
|
govc ls vm | grep govc-test- | $xargs -r govc vm.destroy
|
|
govc datastore.ls | grep govc-test- | awk '{print ($NF)}' | $xargs -n1 -r govc datastore.rm
|
|
govc ls "host/*/Resources/govc-test-*" | $xargs -r govc pool.destroy
|
|
fi
|
|
}
|
|
|
|
new_id() {
|
|
echo "govc-test-$(vcsim uuidgen)"
|
|
}
|
|
|
|
import_ttylinux_vmdk() {
|
|
govc datastore.mkdir -p govc-images
|
|
govc datastore.ls "$GOVC_TEST_VMDK" >/dev/null 2>&1 || \
|
|
govc import.vmdk "$GOVC_TEST_VMDK_SRC" govc-images > /dev/null
|
|
}
|
|
|
|
datastore_upload() {
|
|
src=$1
|
|
dst=govc-images/$(basename $src)
|
|
|
|
govc datastore.mkdir -p govc-images
|
|
govc datastore.ls "$dst" >/dev/null 2>&1 || \
|
|
govc datastore.upload "$src" "$dst" > /dev/null
|
|
}
|
|
|
|
upload_img() {
|
|
datastore_upload $GOVC_TEST_IMG_SRC
|
|
}
|
|
|
|
upload_iso() {
|
|
datastore_upload $GOVC_TEST_ISO_SRC
|
|
}
|
|
|
|
new_ttylinux_vm() {
|
|
import_ttylinux_vmdk
|
|
id=$(new_id)
|
|
govc vm.create -m 32 -disk $GOVC_TEST_VMDK -disk.controller ide -on=false $id
|
|
echo $id
|
|
}
|
|
|
|
new_empty_vm() {
|
|
id=$(new_id)
|
|
govc vm.create -on=false $id
|
|
echo $id
|
|
}
|
|
|
|
vm_power_state() {
|
|
govc vm.info "$1" | grep "Power state:" | awk -F: '{print $2}' | collapse_ws
|
|
}
|
|
|
|
vm_mac() {
|
|
govc device.info -vm "$1" ethernet-0 | grep "MAC Address" | awk '{print $NF}'
|
|
}
|
|
|
|
esx_env() {
|
|
if [ -z "$GOVC_TEST_URL" ] ; then
|
|
skip "GOVC_TEST_URL not set"
|
|
fi
|
|
|
|
export GOVC_URL=$GOVC_TEST_URL
|
|
}
|
|
|
|
vcsim_env_todo() {
|
|
skip "not yet supported by vcsim"
|
|
}
|
|
|
|
# starts vcsim and exports the environment
|
|
vcsim_env() {
|
|
GOVC_SIM_ENV="$BATS_TMPDIR/$(new_id)"
|
|
export GOVC_SIM_ENV
|
|
mkfifo "$GOVC_SIM_ENV"
|
|
|
|
vcsim -httptest.serve=127.0.0.1:0 -E "$GOVC_SIM_ENV" "$@" &
|
|
|
|
eval "$(cat "$GOVC_SIM_ENV")"
|
|
|
|
export GOVC_DATASTORE=LocalDS_0
|
|
|
|
if [ "$1" != "-esx" ] && [ "$1" != "-esx=true" ]; then
|
|
export GOVC_DATACENTER=DC0 \
|
|
GOVC_HOST=/DC0/host/DC0_C0/DC0_C0_H0 \
|
|
GOVC_RESOURCE_POOL=/DC0/host/DC0_C0/Resources \
|
|
GOVC_NETWORK=/DC0/network/DC0_DVPG0
|
|
fi
|
|
}
|
|
|
|
# remove username/password from $GOVC_URL and set $GOVC_{USERNAME,PASSWORD}
|
|
govc_url_to_vars() {
|
|
GOVC_USERNAME="$(govc env GOVC_USERNAME)"
|
|
GOVC_PASSWORD="$(govc env GOVC_PASSWORD)"
|
|
GOVC_URL="$(govc env GOVC_URL)"
|
|
export GOVC_URL GOVC_USERNAME GOVC_PASSWORD
|
|
|
|
# double check that we removed user/pass
|
|
grep -q -v @ <<<"$GOVC_URL"
|
|
}
|
|
|
|
quit_vnc() {
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
osascript <<EOF
|
|
tell application "Screen Sharing"
|
|
quit
|
|
end tell
|
|
EOF
|
|
fi
|
|
}
|
|
|
|
open_vnc() {
|
|
url=$1
|
|
echo "open $url"
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
open $url
|
|
fi
|
|
}
|
|
|
|
# collapse spaces, for example testing against Go's tabwriter output
|
|
collapse_ws() {
|
|
local line
|
|
if [ $# -eq 0 ]; then line="$(cat -)"
|
|
else line="$@"
|
|
fi
|
|
echo "$line" | tr -s ' ' | sed -e 's/^ //'
|
|
}
|
|
|
|
# the following helpers are borrowed from the test_helper.bash in https://github.com/sstephenson/rbenv
|
|
|
|
flunk() {
|
|
{ if [ "$#" -eq 0 ]; then cat -
|
|
else echo "$@"
|
|
fi
|
|
} >&2
|
|
return 1
|
|
}
|
|
|
|
assert_success() {
|
|
if [ "$status" -ne 0 ]; then
|
|
flunk "command failed with exit status $status: $output"
|
|
elif [ "$#" -gt 0 ]; then
|
|
assert_output "$1"
|
|
fi
|
|
}
|
|
|
|
assert_failure() {
|
|
if [ "$status" -ne 1 ]; then
|
|
flunk $(printf "expected failed exit status=1, got status=%d" $status)
|
|
elif [ "$#" -gt 0 ]; then
|
|
assert_output "$1"
|
|
fi
|
|
}
|
|
|
|
assert_equal() {
|
|
if [ "$1" != "$2" ]; then
|
|
{ echo "expected: $1"
|
|
echo "actual: $2"
|
|
} | flunk
|
|
fi
|
|
}
|
|
|
|
assert_output() {
|
|
local expected
|
|
if [ $# -eq 0 ]; then expected="$(cat -)"
|
|
else expected="$1"
|
|
fi
|
|
assert_equal "$expected" "$output"
|
|
}
|
|
|
|
assert_matches() {
|
|
local pattern="${1}"
|
|
local actual="${2}"
|
|
|
|
if [ $# -eq 1 ]; then
|
|
actual="$output"
|
|
fi
|
|
|
|
if ! grep -E -q "${pattern}" <<<"${actual}"; then
|
|
{ echo "pattern: ${pattern}"
|
|
echo "actual: ${actual}"
|
|
} | flunk
|
|
fi
|
|
}
|
|
|
|
assert_number() {
|
|
assert_matches "^-?[0-9]+$" "$output"
|
|
}
|
|
|
|
assert_empty() {
|
|
local actual="${1}"
|
|
|
|
if [ $# -eq 0 ]; then
|
|
actual="$(cat -)"
|
|
fi
|
|
|
|
if [ -n "${actual}" ]; then
|
|
{ echo "actual: ${actual}"
|
|
} | flunk
|
|
fi
|
|
}
|
|
|
|
assert_line() {
|
|
if [ "$1" -ge 0 ] 2>/dev/null; then
|
|
assert_equal "$2" "$(collapse_ws ${lines[$1]})"
|
|
else
|
|
local line
|
|
for line in "${lines[@]}"; do
|
|
if [ "$(collapse_ws $line)" = "$1" ]; then return 0; fi
|
|
done
|
|
flunk "expected line \`$1'"
|
|
fi
|
|
}
|
|
|
|
refute_line() {
|
|
if [ "$1" -ge 0 ] 2>/dev/null; then
|
|
local num_lines="${#lines[@]}"
|
|
if [ "$1" -lt "$num_lines" ]; then
|
|
flunk "output has $num_lines lines"
|
|
fi
|
|
else
|
|
local line
|
|
for line in "${lines[@]}"; do
|
|
if [ "$line" = "$1" ]; then
|
|
flunk "expected to not find line \`$line'"
|
|
fi
|
|
done
|
|
fi
|
|
}
|
|
|
|
assert() {
|
|
if ! "$@"; then
|
|
flunk "failed: $*"
|
|
fi
|
|
}
|