mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
generate report and upload test results (#6737)
Signed-off-by: ShylajaDevadiga <shylaja.devadiga@suse.com> Signed-off-by: ShylajaDevadiga <shylaja.devadiga@suse.com> Co-authored-by: ShylajaDevadiga <shylaja.devadiga@suse.com>
This commit is contained in:
parent
7bbcac92fd
commit
2007cdd54f
@ -5,8 +5,6 @@ servercount=${2:-3}
|
||||
agentcount=${3:-1}
|
||||
db=${4:-"etcd"}
|
||||
hardened=${5:-""}
|
||||
k3s_version=${k3s_version}
|
||||
k3s_channel=${k3s_channel:-"commit"}
|
||||
|
||||
E2E_EXTERNAL_DB=$db && export E2E_EXTERNAL_DB
|
||||
E2E_REGISTRY=true && export E2E_REGISTRY
|
||||
@ -19,57 +17,36 @@ cd tests/e2e
|
||||
OS=$(echo "$nodeOS"|cut -d'/' -f2)
|
||||
echo "$OS"
|
||||
|
||||
# create directory if it does not exists
|
||||
# create directory if it does not exists
|
||||
if [ ! -d createreport ]
|
||||
then
|
||||
mkdir createreport
|
||||
fi
|
||||
vagrant global-status | awk '/running/'|cut -c1-7| xargs -r -d '\n' -n 1 -- vagrant destroy -f
|
||||
E2E_RELEASE_CHANNEL="commit" && export E2E_RELEASE_CHANNEL
|
||||
|
||||
count=0
|
||||
run_tests() {
|
||||
vagrant global-status | awk '/running/'|cut -c1-7| xargs -r -d '\n' -n 1 -- vagrant destroy -f
|
||||
echo 'RUNNING DUALSTACK TEST'
|
||||
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v dualstack/dualstack_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci |tee k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING DUALSTACK TEST'
|
||||
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v dualstack/dualstack_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci |tee createreport/k3s_"$OS".log
|
||||
echo 'RUNNING CLUSTER VALIDATION TEST'
|
||||
E2E_REGISTRY=true E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v validatecluster/validatecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING CLUSTER VALIDATION TEST'
|
||||
E2E_REGISTRY=true E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v validatecluster/validatecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING SECRETS ENCRYPTION TEST'
|
||||
/usr/local/go/bin/go test -v secretsencryption/secretsencryption_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -timeout=1h -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING SECRETS ENCRYPTION TEST'
|
||||
/usr/local/go/bin/go test -v secretsencryption/secretsencryption_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -timeout=1h -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUN CLUSTER RESET TEST'
|
||||
/usr/local/go/bin/go test -v clusterreset/clusterreset_test.go -nodeOS="$nodeOS" -serverCount=3 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
|
||||
echo 'RUN CLUSTER RESET TEST'
|
||||
/usr/local/go/bin/go test -v clusterreset/clusterreset_test.go -nodeOS="$nodeOS" -serverCount=3 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING SPLIT SERVER VALIDATION TEST'
|
||||
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v splitserver/splitserver_test.go -nodeOS="$nodeOS" -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING SPLIT SERVER VALIDATION TEST'
|
||||
E2E_HARDENED="$hardened" /usr/local/go/bin/go test -v splitserver/splitserver_test.go -nodeOS="$nodeOS" -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING DOCKER CRI VALIDATION TEST'
|
||||
/usr/local/go/bin/go test -v docker/docker_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING DOCKER CRI VALIDATION TEST'
|
||||
/usr/local/go/bin/go test -v docker/docker_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING EXTERNAL IP TEST'
|
||||
/usr/local/go/bin/go test -v externalip/externalip_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING EXTERNAL IP TEST'
|
||||
/usr/local/go/bin/go test -v externalip/externalip_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING PRE-BUNDLED-BIN IP TEST'
|
||||
/usr/local/go/bin/go test -v preferbundled/preferbundled_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING PRE-BUNDLED-BIN IP TEST'
|
||||
/usr/local/go/bin/go test -v preferbundled/preferbundled_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
echo 'RUNNING SNAPSHOT AND RESTORE TEST'
|
||||
/usr/local/go/bin/go test -v snapshotrestore/snapshotrestore_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a k3s_"$OS".log
|
||||
|
||||
echo 'RUNNING SNAPSHOT AND RESTORE TEST'
|
||||
/usr/local/go/bin/go test -v snapshotrestore/snapshotrestore_test.go -nodeOS="$nodeOS" -serverCount=1 -agentCount=1 -timeout=30m -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
|
||||
E2E_RELEASE_VERSION=$k3s_version && export E2E_RELEASE_VERSION
|
||||
E2E_RELEASE_CHANNEL=$k3s_channel && export E2E_RELEASE_CHANNEL
|
||||
|
||||
echo 'RUNNING CLUSTER UPGRADE TEST'
|
||||
E2E_REGISTRY=true /usr/local/go/bin/go test -v upgradecluster/upgradecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=1h -json -ci | tee -a createreport/k3s_"$OS".log
|
||||
}
|
||||
|
||||
ls createreport/k3s_"$OS".log 2>/dev/null && rm createreport/k3s_"$OS".log
|
||||
run_tests
|
||||
|
||||
while [ -f createreport/k3s_"$OS".log ] && grep -w ":\"fail" createreport/k3s_"$OS".log >>data && [ $count -le 2 ]
|
||||
do
|
||||
echo "Re-running tests"
|
||||
cp createreport/k3s_"$OS".log createreport/k3s_"$OS"_"$count".log
|
||||
run_tests
|
||||
done
|
||||
E2E_RELEASE_CHANNEL="latest" && export E2E_RELEASE_CHANNEL
|
||||
echo 'RUNNING CLUSTER UPGRADE TEST'
|
||||
E2E_REGISTRY=true /usr/local/go/bin/go test -v upgradecluster/upgradecluster_test.go -nodeOS="$nodeOS" -serverCount=$((servercount)) -agentCount=$((agentcount)) -timeout=1h -json -ci | tee -a k3s_"$OS".log
|
||||
|
@ -41,15 +41,17 @@ def dockerInstall(vm)
|
||||
vm.provider "virtualbox" do |v|
|
||||
v.memory = NODE_MEMORY + 1024
|
||||
end
|
||||
if vm.box.to_s.include?("ubuntu")
|
||||
box = vm.box.to_s
|
||||
if box.include?("ubuntu")
|
||||
vm.provision "shell", inline: "apt update; apt install -y docker.io"
|
||||
end
|
||||
if vm.box.to_s.include?("Leap")
|
||||
elsif box.include?("Leap")
|
||||
vm.provision "shell", inline: "zypper install -y docker apparmor-parser"
|
||||
end
|
||||
if vm.box.to_s.include?("microos")
|
||||
elsif box.include?("microos")
|
||||
vm.provision "shell", inline: "transactional-update pkg install -y docker apparmor-parser"
|
||||
vm.provision 'docker-reload', type: 'reload', run: 'once'
|
||||
vm.provision "shell", inline: "systemctl enable --now docker"
|
||||
elsif box.include?("rocky8") || box.include?("rocky9")
|
||||
vm.provision "shell", inline: "dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo"
|
||||
vm.provision "shell", inline: "dnf install -y docker-ce"
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user