X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=tests%2Fk8s%2Fconformance%2Fconformance.robot;h=dbf66be61780ef173552cca13889d4cc6961ed3f;hb=607858fe0707102decd3d388cadf50ef64219b36;hp=6f9096cdfbee63c224496a84e727fe0c86152064;hpb=483f9669541c8cc9b8c492eab91c306c0fa434dd;p=validation.git diff --git a/tests/k8s/conformance/conformance.robot b/tests/k8s/conformance/conformance.robot index 6f9096c..dbf66be 100644 --- a/tests/k8s/conformance/conformance.robot +++ b/tests/k8s/conformance/conformance.robot @@ -20,17 +20,43 @@ Documentation Run k8s conformance test using sonobuoy Library OperatingSystem Library BuiltIn -Test Setup Check that k8s cluster is reachable -Test Teardown Cleanup Sonobuoy +Library Collections +Library String +Library SSHLibrary +Library Process +Test Setup Run Keywords +... Check that k8s cluster is reachable +... Onboard Images +... Create Manifest File +Test Teardown Run Keywords +... Cleanup Sonobuoy +... Close All Connections *** Variables *** ${LOG} ${LOG_PATH}${/}${SUITE_NAME.replace(' ','_')}.log +&{SONOBUOY} path=gcr.io/heptio-images +... name=sonobuoy:v0.15.1 +&{E2E} path=akraino +... name=validation:kube-conformance-v1.15 +&{SYSTEMD_LOGS} path=akraino +... name=validation:sonobuoy-plugin-systemd-logs-latest +&{SONOBUOY_IMGS} sonobuoy=&{SONOBUOY} +... e2e=&{E2E} +... systemd_logs=&{SYSTEMD_LOGS} + +# Following tests assume DNS domain is "cluster.local" +${DNS_DOMAIN_TESTS} SEPARATOR= +... DNS should provide /etc/hosts entries for the cluster| +... DNS should provide DNS for services| +... DNS should provide DNS for ExternalName services| +... DNS should provide DNS for the cluster + *** Test Cases *** Run Sonobuoy Conformance Test # Start the test Run kubectl apply -f ${CURDIR}${/}sonobuoy.yaml - Sleep 10s + Sleep 20s ${rc} ${output}= Run And Return Rc And Output ... kubectl describe pod/sonobuoy -n heptio-sonobuoy Append To File ${LOG} ${output}${\n} @@ -52,9 +78,9 @@ Check that k8s cluster is reachable # Make sure the pod is reachable with the local k8s client ${rc} ${output}= Run And Return Rc And Output - ... kubectl get pods --all-namespaces + ... kubectl version Append To File ${LOG} ${output}${\n} - Should Contain ${output} kube-system + Should Contain ${output} Server Version: version.Info Cleanup Sonobuoy ${rc} ${output}= Run And Return Rc And Output @@ -62,3 +88,77 @@ Cleanup Sonobuoy Append To File ${LOG} ${output}${\n} Sleep 3s Should Contain ${output} service "sonobuoy-master" deleted + +Open Connection And Log In + Open Connection ${HOST} + Login With Public Key ${USERNAME} ${SSH_KEYFILE} + +Upload To Internal Registry + [Arguments] ${path} ${name} + ${rc}= Execute Command + ... docker pull ${path}/${name} + ... return_stdout=False return_rc=True + Should Be Equal As Integers ${rc} 0 + ${rc}= Execute Command + ... docker tag ${path}/${name} ${INT_REG}/bluval/${name} + ... return_stdout=False return_rc=True + Should Be Equal As Integers ${rc} 0 + ${rc}= Execute Command + ... docker push ${INT_REG}/bluval/${name} + ... return_stdout=False return_rc=True + Should Be Equal As Integers ${rc} 0 + +Onboard Sonobuoy Images + FOR ${img} IN @{SONOBUOY_IMGS} + ${path}= Get From Dictionary ${SONOBUOY_IMGS['${img}']} path + ${name}= Get From Dictionary ${SONOBUOY_IMGS['${img}']} name + Upload To Internal Registry ${path} ${name} + Set To Dictionary ${SONOBUOY_IMGS['${img}']} path=${INT_REG}/bluval + END + +Onboard Kubernetes e2e Test Images + ${result}= Run Process sonobuoy images + Should Be Equal As Integers ${result.rc} 0 + @{images}= Split String ${result.stdout} + FOR ${img} IN @{images} + ${path} ${name} Split String From Right ${img} / 1 + Upload To Internal Registry ${path} ${name} + END + +Onboard Images + ${INT_REG}= Get Variable Value ${INTERNAL_REGISTRY} ${EMPTY} + Set Test Variable ${INT_REG} + Return From Keyword If $INT_REG == '${EMPTY}' + Open Connection And Log In + Onboard Sonobuoy Images + Onboard Kubernetes e2e Test Images + +Get Tests To Skip + ${flag}= Set Variable Aggregator|Alpha|\\[(Disruptive|Feature:[^\\]]+|Flaky)\\] + ${flag}= Run Keyword If '${DNS_DOMAIN}' != 'cluster.local' + ... Catenate SEPARATOR=| ${flag} ${DNS_DOMAIN_TESTS} + ... ELSE + ... Set Variable ${flag} + [Return] ${flag} + +Create Manifest File + ${skip}= Get Tests To Skip + @{flags}= Set Variable + ... --e2e-focus \\[Conformance\\\] + ... --e2e-skip ${skip} + ... --kube-conformance-image ${SONOBUOY_IMGS.e2e.path}/${SONOBUOY_IMGS.e2e.name} + ... --sonobuoy-image ${SONOBUOY_IMGS.sonobuoy.path}/${SONOBUOY_IMGS.sonobuoy.name} + ... --image-pull-policy Always + ... --timeout 14400 + Run Keyword If $INT_REG != '${EMPTY}' Run Keywords + ... Append To List ${flags} + ... --e2e-repo-config ${CURDIR}${/}custom_repos.yaml + ... AND + ... Run Process sed -i s|{{ registry }}|${INT_REG}/bluval|g + ... ${CURDIR}${/}custom_repos.yaml + ${result}= Run Process sonobuoy gen @{flags} + Should Be Equal As Integers ${result.rc} 0 + ${manifest}= Replace String ${result.stdout} + ... image: gcr.io/heptio-images/sonobuoy-plugin-systemd-logs:latest + ... image: ${SONOBUOY_IMGS.systemd_logs.path}/${SONOBUOY_IMGS.systemd_logs.name} + Create File ${CURDIR}${/}sonobuoy.yaml ${manifest}