| // Copyright 2017-present Open Networking Foundation |
| // |
| // 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. |
| |
| // voltha-2.x e2e tests |
| // uses kind-voltha to deploy voltha-2.X |
| // uses bbsim to simulate OLT/ONUs |
| |
| pipeline { |
| |
| /* no label, executor is determined by JJB */ |
| agent { |
| label "${params.buildNode}" |
| } |
| options { |
| timeout(time: 90, unit: 'MINUTES') |
| } |
| environment { |
| PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
| VOLTHA_LOG_LEVEL="DEBUG" |
| FANCY=0 |
| WITH_SIM_ADAPTERS="n" |
| NAME="test" |
| VOLTCONFIG="$HOME/.volt/config-$NAME" |
| KUBECONFIG="$HOME/.kube/kind-config-voltha-$NAME" |
| EXTRA_HELM_FLAGS=" --set defaults.image_registry=https://mirror.registry.opennetworking.org" |
| } |
| |
| stages { |
| stage('Clone kind-voltha') { |
| steps { |
| checkout([ |
| $class: 'GitSCM', |
| userRemoteConfigs: [[ |
| url: "https://gerrit.opencord.org/kind-voltha", |
| refspec: "${kindVolthaChange}" |
| ]], |
| branches: [[ name: "master", ]], |
| extensions: [ |
| [$class: 'WipeWorkspace'], |
| [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"], |
| [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| ], |
| ]) |
| sh """ |
| if [ '${kindVolthaChange}' != '' ] ; then |
| cd $WORKSPACE/kind-voltha |
| git fetch https://gerrit.opencord.org/kind-voltha ${kindVolthaChange} && git checkout FETCH_HEAD |
| fi |
| """ |
| } |
| } |
| stage('Clone voltha-system-tests') { |
| steps { |
| checkout([ |
| $class: 'GitSCM', |
| userRemoteConfigs: [[ |
| url: "https://gerrit.opencord.org/voltha-system-tests", |
| refspec: "${volthaSystemTestsChange}" |
| ]], |
| branches: [[ name: "${branch}", ]], |
| extensions: [ |
| [$class: 'WipeWorkspace'], |
| [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"], |
| [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| ], |
| ]) |
| sh """ |
| if [ '${volthaSystemTestsChange}' != '' ] ; then |
| cd $WORKSPACE/voltha-system-tests |
| git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD |
| fi |
| """ |
| } |
| } |
| // If the repo under test is not kind-voltha |
| // then download it and checkout the patch |
| stage('Download Patch') { |
| when { |
| expression { |
| return "${gerritProject}" != 'kind-voltha'; |
| } |
| } |
| steps { |
| checkout([ |
| $class: 'GitSCM', |
| userRemoteConfigs: [[ |
| url: "https://gerrit.opencord.org/${gerritProject}", |
| refspec: "${gerritRefspec}" |
| ]], |
| branches: [[ name: "${branch}", ]], |
| extensions: [ |
| [$class: 'WipeWorkspace'], |
| [$class: 'RelativeTargetDirectory', relativeTargetDir: "${gerritProject}"], |
| [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| ], |
| ]) |
| sh """ |
| pushd $WORKSPACE/${gerritProject} |
| git fetch https://gerrit.opencord.org/${gerritProject} ${gerritRefspec} && git checkout FETCH_HEAD |
| |
| echo "Currently on commit: \n" |
| git log -1 --oneline |
| popd |
| """ |
| } |
| } |
| // If the repo under test is kind-voltha we don't need to download it again, |
| // as we already have it, simply checkout the patch |
| stage('Checkout kind-voltha patch') { |
| when { |
| expression { |
| return "${gerritProject}" == 'kind-voltha'; |
| } |
| } |
| steps { |
| sh """ |
| cd $WORKSPACE/kind-voltha |
| git fetch https://gerrit.opencord.org/kind-voltha ${gerritRefspec} && git checkout FETCH_HEAD |
| """ |
| } |
| } |
| stage('Create K8s Cluster') { |
| steps { |
| sh """ |
| if [ "${branch}" != "master" ]; then |
| echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| source "$WORKSPACE/kind-voltha/releases/${branch}" |
| else |
| echo "on master, using default settings for kind-voltha" |
| fi |
| |
| cd $WORKSPACE/kind-voltha/ |
| JUST_K8S=y ./voltha up |
| bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/kind-voltha/bin" |
| """ |
| } |
| } |
| |
| stage('Build Images') { |
| steps { |
| sh """ |
| make-local () { |
| make -C $WORKSPACE/\$1 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build |
| } |
| if [ "${gerritProject}" = "pyvoltha" ]; then |
| make -C $WORKSPACE/pyvoltha/ dist |
| export LOCAL_PYVOLTHA=$WORKSPACE/pyvoltha/ |
| make-local voltha-openonu-adapter |
| elif [ "${gerritProject}" = "voltha-lib-go" ]; then |
| make -C $WORKSPACE/voltha-lib-go/ build |
| export LOCAL_LIB_GO=$WORKSPACE/voltha-lib-go/ |
| make-local voltha-go |
| make-local voltha-openolt-adapter |
| elif [ "${gerritProject}" = "voltha-protos" ]; then |
| make -C $WORKSPACE/voltha-protos/ build |
| export LOCAL_PROTOS=$WORKSPACE/voltha-protos/ |
| make-local voltha-go |
| make-local voltha-openolt-adapter |
| make-local voltha-openonu-adapter |
| make-local ofagent-py |
| elif [ "${gerritProject}" = "voltctl" ]; then |
| # Set and handle GOPATH and PATH |
| export GOPATH=\${GOPATH:-$WORKSPACE/go} |
| export PATH=\$PATH:/usr/lib/go-1.12/bin:/usr/local/go/bin:\$GOPATH/bin |
| make -C $WORKSPACE/voltctl/ build |
| elif ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests|kind-voltha)\$ ]]; then |
| make-local ${gerritProject} |
| fi |
| """ |
| } |
| } |
| |
| stage('Push Images') { |
| steps { |
| sh ''' |
| if [ "${branch}" != "master" ]; then |
| echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| source "$WORKSPACE/kind-voltha/releases/${branch}" |
| else |
| echo "on master, using default settings for kind-voltha" |
| fi |
| |
| if ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests|voltctl|kind-voltha)\$ ]]; then |
| export GOROOT=/usr/local/go |
| export GOPATH=\$(pwd) |
| docker images | grep citest |
| for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}"); do echo "Pushing \$image to nodes"; kind load docker-image \$image:citest --name voltha-\$NAME --nodes voltha-\$NAME-worker,voltha-\$NAME-worker2; done |
| fi |
| ''' |
| } |
| } |
| |
| stage('ATT workflow') { |
| environment { |
| ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ATTWorkflow" |
| } |
| steps { |
| sh ''' |
| if [ "${branch}" != "master" ]; then |
| echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| source "$WORKSPACE/kind-voltha/releases/${branch}" |
| else |
| echo "on master, using default settings for kind-voltha" |
| fi |
| |
| if [[ "${gerritProject}" == voltha-helm-charts ]]; then |
| export EXTRA_HELM_FLAGS+="--set defaults.image_tag=null " |
| fi |
| |
| # Workflow-specific flags |
| export WITH_RADIUS=yes |
| export WITH_BBSIM=yes |
| export DEPLOY_K8S=yes |
| export CONFIG_SADIS="external" |
| export BBSIM_CFG="configs/bbsim-sadis-att.yaml" |
| |
| export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} " |
| |
| IMAGES="" |
| if [ "${gerritProject}" = "voltha-go" ]; then |
| IMAGES="rw_core ro_core " |
| elif [ "${gerritProject}" = "ofagent-py" ]; then |
| IMAGES="ofagent_py " |
| EXTRA_HELM_FLAGS+="--set use_ofagent_go=false " |
| elif [ "${gerritProject}" = "ofagent-go" ]; then |
| IMAGES="ofagent_go " |
| elif [ "${gerritProject}" = "voltha-onos" ]; then |
| IMAGES="onos " |
| elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then |
| IMAGES="adapter_open_olt " |
| elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then |
| IMAGES="adapter_open_onu " |
| elif [ "${gerritProject}" = "voltha-api-server" ]; then |
| IMAGES="afrouter afrouterd " |
| elif [ "${gerritProject}" = "bbsim" ]; then |
| IMAGES="bbsim " |
| elif [ "${gerritProject}" = "pyvoltha" ]; then |
| IMAGES="adapter_open_onu " |
| elif [ "${gerritProject}" = "voltha-lib-go" ]; then |
| IMAGES="rw_core ro_core adapter_open_olt " |
| elif [ "${gerritProject}" = "voltha-protos" ]; then |
| IMAGES="rw_core ro_core adapter_open_olt adapter_open_onu ofagent " |
| else |
| echo "No images to push" |
| fi |
| |
| for I in \$IMAGES |
| do |
| EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never " |
| done |
| |
| if [ "${gerritProject}" = "voltha-helm-charts" ]; then |
| export CHART_PATH=$WORKSPACE/voltha-helm-charts |
| export VOLTHA_CHART=\$CHART_PATH/voltha |
| export VOLTHA_ADAPTER_OPEN_OLT_CHART=\$CHART_PATH/voltha-adapter-openolt |
| export VOLTHA_ADAPTER_OPEN_ONU_CHART=\$CHART_PATH/voltha-adapter-openonu |
| helm dep update \$VOLTHA_CHART |
| helm dep update \$VOLTHA_ADAPTER_OPEN_OLT_CHART |
| helm dep update \$VOLTHA_ADAPTER_OPEN_ONU_CHART |
| fi |
| |
| if [ "${gerritProject}" = "voltctl" ]; then |
| export VOLTCTL_VERSION=$(cat $WORKSPACE/voltctl/VERSION) |
| cp $WORKSPACE/voltctl/voltctl $WORKSPACE/kind-voltha/bin/voltctl |
| md5sum $WORKSPACE/kind-voltha/bin/voltctl |
| fi |
| |
| printenv |
| |
| # start logging |
| mkdir -p $WORKSPACE/att |
| _TAG=kail-att kail -n voltha -n default > $WORKSPACE/att/onos-voltha-combined.log & |
| |
| cd $WORKSPACE/kind-voltha/ |
| ./voltha up |
| |
| # $NAME-env.sh contains the environment we used |
| # Save value of EXTRA_HELM_FLAGS there to use in subsequent stages |
| echo export EXTRA_HELM_FLAGS=\\"\$EXTRA_HELM_FLAGS\\" >> $NAME-env.sh |
| |
| mkdir -p $ROBOT_LOGS_DIR |
| export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
| |
| # By default, all tests tagged 'sanity' are run. This covers basic functionality |
| # like running through the ATT workflow for a single subscriber. |
| export TARGET=sanity-single-kind |
| |
| # If the Gerrit comment contains a line with "functional tests" then run the full |
| # functional test suite. This covers tests tagged either 'sanity' or 'functional'. |
| # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| REGEX="functional tests" |
| if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| TARGET=functional-single-kind |
| fi |
| |
| make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
| |
| # stop logging |
| P_IDS="$(ps e -ww -A | grep "_TAG=kail-att" | grep -v grep | awk '{print $1}')" |
| if [ -n "$P_IDS" ]; then |
| echo $P_IDS |
| for P_ID in $P_IDS; do |
| kill -9 $P_ID |
| done |
| fi |
| |
| # get pods information |
| kubectl get pods -o wide > $WORKSPACE/att/pods.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/att/pod-images.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/att/pod-imagesId.txt || true |
| ''' |
| } |
| } |
| |
| stage('DT workflow') { |
| environment { |
| ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DTWorkflow" |
| } |
| steps { |
| sh ''' |
| cd $WORKSPACE/kind-voltha/ |
| source $NAME-env.sh |
| WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down |
| |
| # Workflow-specific flags |
| export WITH_RADIUS=no |
| export WITH_EAPOL=no |
| export WITH_DHCP=no |
| export WITH_IGMP=no |
| export CONFIG_SADIS="external" |
| export BBSIM_CFG="configs/bbsim-sadis-dt.yaml" |
| |
| if [[ "${gerritProject}" == voltha-helm-charts ]]; then |
| export EXTRA_HELM_FLAGS+="--set defaults.image_tag=null " |
| fi |
| |
| # start logging |
| mkdir -p $WORKSPACE/dt |
| _TAG=kail-dt kail -n voltha -n default > $WORKSPACE/dt/onos-voltha-combined.log & |
| |
| DEPLOY_K8S=n ./voltha up |
| |
| mkdir -p $ROBOT_LOGS_DIR |
| export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
| |
| # By default, all tests tagged 'sanityDt' are run. This covers basic functionality |
| # like running through the DT workflow for a single subscriber. |
| export TARGET=sanity-kind-dt |
| |
| # If the Gerrit comment contains a line with "functional tests" then run the full |
| # functional test suite. This covers tests tagged either 'sanityDt' or 'functionalDt'. |
| # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| REGEX="functional tests" |
| if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| TARGET=functional-single-kind-dt |
| fi |
| |
| make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
| |
| # stop logging |
| P_IDS="$(ps e -ww -A | grep "_TAG=kail-dt" | grep -v grep | awk '{print $1}')" |
| if [ -n "$P_IDS" ]; then |
| echo $P_IDS |
| for P_ID in $P_IDS; do |
| kill -9 $P_ID |
| done |
| fi |
| |
| # get pods information |
| kubectl get pods -o wide > $WORKSPACE/dt/pods.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/dt/pod-images.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/dt/pod-imagesId.txt || true |
| ''' |
| } |
| } |
| |
| stage('TT workflow') { |
| environment { |
| ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/TTWorkflow" |
| } |
| steps { |
| sh ''' |
| cd $WORKSPACE/kind-voltha/ |
| source $NAME-env.sh |
| WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down |
| |
| # Workflow-specific flags |
| export WITH_RADIUS=no |
| export WITH_EAPOL=no |
| export WITH_DHCP=yes |
| export WITH_IGMP=yes |
| export CONFIG_SADIS="external" |
| export BBSIM_CFG="configs/bbsim-sadis-tt.yaml" |
| |
| if [[ "${gerritProject}" == voltha-helm-charts ]]; then |
| export EXTRA_HELM_FLAGS+="--set defaults.image_tag=null " |
| fi |
| |
| # start logging |
| mkdir -p $WORKSPACE/tt |
| _TAG=kail-tt kail -n voltha -n default > $WORKSPACE/tt/onos-voltha-combined.log & |
| |
| DEPLOY_K8S=n ./voltha up |
| |
| mkdir -p $ROBOT_LOGS_DIR |
| export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
| |
| # By default, all tests tagged 'sanityTt' are run. This covers basic functionality |
| # like running through the TT workflow for a single subscriber. |
| export TARGET=sanity-kind-tt |
| |
| # If the Gerrit comment contains a line with "functional tests" then run the full |
| # functional test suite. This covers tests tagged either 'sanityTt' or 'functionalTt'. |
| # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| REGEX="functional tests" |
| if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| TARGET=functional-single-kind-tt |
| fi |
| |
| make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
| |
| # stop logging |
| P_IDS="$(ps e -ww -A | grep "_TAG=kail-att" | grep -v grep | awk '{print $1}')" |
| if [ -n "$P_IDS" ]; then |
| echo $P_IDS |
| for P_ID in $P_IDS; do |
| kill -9 $P_ID |
| done |
| fi |
| |
| # get pods information |
| kubectl get pods -o wide > $WORKSPACE/tt/pods.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/tt/pod-images.txt || true |
| kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/tt/pod-imagesId.txt || true |
| ''' |
| } |
| } |
| } |
| |
| post { |
| always { |
| sh ''' |
| set +e |
| cp $WORKSPACE/kind-voltha/install-$NAME.log $WORKSPACE/ |
| |
| sync |
| md5sum $WORKSPACE/kind-voltha/bin/voltctl |
| |
| ## Pull out errors from log files |
| extract_errors_go() { |
| echo |
| echo "Error summary for $1:" |
| grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| echo |
| } |
| |
| extract_errors_python() { |
| echo |
| echo "Error summary for $1:" |
| grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| echo |
| } |
| |
| extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| |
| gzip $WORKSPACE/att/onos-voltha-combined.log |
| gzip $WORKSPACE/dt/onos-voltha-combined.log |
| gzip $WORKSPACE/tt/onos-voltha-combined.log |
| ''' |
| step([$class: 'RobotPublisher', |
| disableArchiveOutput: false, |
| logFileName: 'RobotLogs/*/log*.html', |
| otherFiles: '', |
| outputFileName: 'RobotLogs/*/output*.xml', |
| outputPath: '.', |
| passThreshold: 100, |
| reportFileName: 'RobotLogs/*/report*.html', |
| unstableThreshold: 0]); |
| archiveArtifacts artifacts: '*.log,**/*.log,**/*.gz,*.gz' |
| } |
| } |
| } |