make graph node variant can be configured from gerrit trigger
[csit.git] / resources / libraries / bash / function / common.sh
1 # Copyright (c) 2020 Cisco and/or its affiliates.
2 # Copyright (c) 2020 PANTHEON.tech and/or its affiliates.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 set -exuo pipefail
16
17 # This library defines functions used by multiple entry scripts.
18 # Keep functions ordered alphabetically, please.
19
20 # TODO: Add a link to bash style guide.
21 # TODO: Consider putting every die into a {} block,
22 #   the code might become more readable (but longer).
23
24
25 function activate_docker_topology () {
26
27     # Create virtual vpp-device topology. Output of the function is topology
28     # file describing created environment saved to a file.
29     #
30     # Variables read:
31     # - BASH_FUNCTION_DIR - Path to existing directory this file is located in.
32     # - TOPOLOGIES - Available topologies.
33     # - NODENESS - Node multiplicity of desired testbed.
34     # - FLAVOR - Node flavor string, usually describing the processor.
35     # - IMAGE_VER_FILE - Name of file that contains the image version.
36     # - CSIT_DIR - Directory where ${IMAGE_VER_FILE} is located.
37     # Variables set:
38     # - WORKING_TOPOLOGY - Path to topology file.
39
40     set -exuo pipefail
41
42     source "${BASH_FUNCTION_DIR}/device.sh" || {
43         die "Source failed!"
44     }
45
46     device_image="$(< ${CSIT_DIR}/${IMAGE_VER_FILE})"
47     case_text="${NODENESS}_${FLAVOR}"
48     case "${case_text}" in
49         "1n_skx" | "1n_tx2")
50             # We execute reservation over csit-shim-dcr (ssh) which runs sourced
51             # script's functions. Env variables are read from ssh output
52             # back to localhost for further processing.
53             hostname=$(grep search /etc/resolv.conf | cut -d' ' -f3) || die
54             ssh="ssh root@${hostname} -p 6022"
55             run="activate_wrapper ${NODENESS} ${FLAVOR} ${device_image}"
56             # The "declare -f" output is long and boring.
57             set +x
58             # backtics to avoid https://midnight-commander.org/ticket/2142
59             env_vars=`${ssh} "$(declare -f); ${run}"` || {
60                 die "Topology reservation via shim-dcr failed!"
61             }
62             set -x
63             set -a
64             source <(echo "$env_vars" | grep -v /usr/bin/docker) || {
65                 die "Source failed!"
66             }
67             set +a
68             ;;
69         "1n_vbox")
70             # We execute reservation on localhost. Sourced script automatially
71             # sets environment variables for further processing.
72             activate_wrapper "${NODENESS}" "${FLAVOR}" "${device_image}" || die
73             ;;
74         *)
75             die "Unknown specification: ${case_text}!"
76     esac
77
78     trap 'deactivate_docker_topology' EXIT || {
79          die "Trap attempt failed, please cleanup manually. Aborting!"
80     }
81
82     # Replace all variables in template with those in environment.
83     source <(echo 'cat <<EOF >topo.yml'; cat ${TOPOLOGIES[0]}; echo EOF;) || {
84         die "Topology file create failed!"
85     }
86
87     WORKING_TOPOLOGY="/tmp/topology.yaml"
88     mv topo.yml "${WORKING_TOPOLOGY}" || {
89         die "Topology move failed!"
90     }
91     cat ${WORKING_TOPOLOGY} | grep -v password || {
92         die "Topology read failed!"
93     }
94 }
95
96
97 function activate_virtualenv () {
98
99     # Update virtualenv pip package, delete and create virtualenv directory,
100     # activate the virtualenv, install requirements, set PYTHONPATH.
101
102     # Arguments:
103     # - ${1} - Path to existing directory for creating virtualenv in.
104     #          If missing or empty, ${CSIT_DIR} is used.
105     # - ${2} - Path to requirements file, ${CSIT_DIR}/requirements.txt if empty.
106     # Variables read:
107     # - CSIT_DIR - Path to existing root of local CSIT git repository.
108     # Variables exported:
109     # - PYTHONPATH - CSIT_DIR, as CSIT Python scripts usually need this.
110     # Functions called:
111     # - die - Print to stderr and exit.
112
113     set -exuo pipefail
114
115     root_path="${1-$CSIT_DIR}"
116     env_dir="${root_path}/env"
117     req_path=${2-$CSIT_DIR/requirements.txt}
118     rm -rf "${env_dir}" || die "Failed to clean previous virtualenv."
119     pip3 install virtualenv==20.0.20 || {
120         die "Virtualenv package install failed."
121     }
122     virtualenv --no-download --python=$(which python3) "${env_dir}" || {
123         die "Virtualenv creation for $(which python3) failed."
124     }
125     set +u
126     source "${env_dir}/bin/activate" || die "Virtualenv activation failed."
127     set -u
128     pip3 install -r "${req_path}" || {
129         die "Requirements installation failed."
130     }
131     # Most CSIT Python scripts assume PYTHONPATH is set and exported.
132     export PYTHONPATH="${CSIT_DIR}" || die "Export failed."
133 }
134
135
136 function archive_tests () {
137
138     # Create .tar.xz of generated/tests for archiving.
139     # To be run after generate_tests, kept separate to offer more flexibility.
140
141     # Directory read:
142     # - ${GENERATED_DIR}/tests - Tree of executed suites to archive.
143     # File rewriten:
144     # - ${ARCHIVE_DIR}/tests.tar.xz - Archive of generated tests.
145
146     set -exuo pipefail
147
148     tar c "${GENERATED_DIR}/tests" | xz -9e > "${ARCHIVE_DIR}/tests.tar.xz" || {
149         die "Error creating archive of generated tests."
150     }
151 }
152
153
154 function check_download_dir () {
155
156     # Fail if there are no files visible in ${DOWNLOAD_DIR}.
157     #
158     # Variables read:
159     # - DOWNLOAD_DIR - Path to directory pybot takes the build to test from.
160     # Directories read:
161     # - ${DOWNLOAD_DIR} - Has to be non-empty to proceed.
162     # Functions called:
163     # - die - Print to stderr and exit.
164
165     set -exuo pipefail
166
167     if [[ ! "$(ls -A "${DOWNLOAD_DIR}")" ]]; then
168         die "No artifacts downloaded!"
169     fi
170 }
171
172
173 function check_prerequisites () {
174
175     # Fail if prerequisites are not met.
176     #
177     # Functions called:
178     # - installed - Check if application is installed/present in system.
179     # - die - Print to stderr and exit.
180
181     set -exuo pipefail
182
183     if ! installed sshpass; then
184         die "Please install sshpass before continue!"
185     fi
186 }
187
188
189 function common_dirs () {
190
191     # Set global variables, create some directories (without touching content).
192
193     # Variables set:
194     # - BASH_FUNCTION_DIR - Path to existing directory this file is located in.
195     # - CSIT_DIR - Path to existing root of local CSIT git repository.
196     # - TOPOLOGIES_DIR - Path to existing directory with available topologies.
197     # - JOB_SPECS_DIR - Path to existing directory with job test specifications.
198     # - RESOURCES_DIR - Path to existing CSIT subdirectory "resources".
199     # - TOOLS_DIR - Path to existing resources subdirectory "tools".
200     # - PYTHON_SCRIPTS_DIR - Path to existing tools subdirectory "scripts".
201     # - ARCHIVE_DIR - Path to created CSIT subdirectory "archive".
202     # - DOWNLOAD_DIR - Path to created CSIT subdirectory "download_dir".
203     # - GENERATED_DIR - Path to created CSIT subdirectory "generated".
204     # Directories created if not present:
205     # ARCHIVE_DIR, DOWNLOAD_DIR, GENERATED_DIR.
206     # Functions called:
207     # - die - Print to stderr and exit.
208
209     set -exuo pipefail
210
211     this_file=$(readlink -e "${BASH_SOURCE[0]}") || {
212         die "Some error during locating of this source file."
213     }
214     BASH_FUNCTION_DIR=$(dirname "${this_file}") || {
215         die "Some error during dirname call."
216     }
217     # Current working directory could be in a different repo, e.g. VPP.
218     pushd "${BASH_FUNCTION_DIR}" || die "Pushd failed"
219     relative_csit_dir=$(git rev-parse --show-toplevel) || {
220         die "Git rev-parse failed."
221     }
222     CSIT_DIR=$(readlink -e "${relative_csit_dir}") || die "Readlink failed."
223     popd || die "Popd failed."
224     TOPOLOGIES_DIR=$(readlink -e "${CSIT_DIR}/topologies/available") || {
225         die "Readlink failed."
226     }
227     JOB_SPECS_DIR=$(readlink -e "${CSIT_DIR}/docs/job_specs") || {
228         die "Readlink failed."
229     }
230     RESOURCES_DIR=$(readlink -e "${CSIT_DIR}/resources") || {
231         die "Readlink failed."
232     }
233     TOOLS_DIR=$(readlink -e "${RESOURCES_DIR}/tools") || {
234         die "Readlink failed."
235     }
236     DOC_GEN_DIR=$(readlink -e "${TOOLS_DIR}/doc_gen") || {
237         die "Readlink failed."
238     }
239     PYTHON_SCRIPTS_DIR=$(readlink -e "${TOOLS_DIR}/scripts") || {
240         die "Readlink failed."
241     }
242
243     ARCHIVE_DIR=$(readlink -f "${CSIT_DIR}/archive") || {
244         die "Readlink failed."
245     }
246     mkdir -p "${ARCHIVE_DIR}" || die "Mkdir failed."
247     DOWNLOAD_DIR=$(readlink -f "${CSIT_DIR}/download_dir") || {
248         die "Readlink failed."
249     }
250     mkdir -p "${DOWNLOAD_DIR}" || die "Mkdir failed."
251     GENERATED_DIR=$(readlink -f "${CSIT_DIR}/generated") || {
252         die "Readlink failed."
253     }
254     mkdir -p "${GENERATED_DIR}" || die "Mkdir failed."
255 }
256
257
258 function compose_pybot_arguments () {
259
260     # Variables read:
261     # - WORKING_TOPOLOGY - Path to topology yaml file of the reserved testbed.
262     # - DUT - CSIT test/ subdirectory, set while processing tags.
263     # - TAGS - Array variable holding selected tag boolean expressions.
264     # - TOPOLOGIES_TAGS - Tag boolean expression filtering tests for topology.
265     # - TEST_CODE - The test selection string from environment or argument.
266     # Variables set:
267     # - PYBOT_ARGS - String holding part of all arguments for pybot.
268     # - EXPANDED_TAGS - Array of strings pybot arguments compiled from tags.
269
270     set -exuo pipefail
271
272     # No explicit check needed with "set -u".
273     PYBOT_ARGS=("--loglevel" "TRACE")
274     PYBOT_ARGS+=("--variable" "TOPOLOGY_PATH:${WORKING_TOPOLOGY}")
275
276     case "${TEST_CODE}" in
277         *"device"*)
278             PYBOT_ARGS+=("--suite" "tests.${DUT}.device")
279             ;;
280         *"perf"*)
281             PYBOT_ARGS+=("--suite" "tests.${DUT}.perf")
282             ;;
283         *)
284             die "Unknown specification: ${TEST_CODE}"
285     esac
286
287     EXPANDED_TAGS=()
288     for tag in "${TAGS[@]}"; do
289         if [[ ${tag} == "!"* ]]; then
290             EXPANDED_TAGS+=("--exclude" "${tag#$"!"}")
291         else
292             EXPANDED_TAGS+=("--include" "${TOPOLOGIES_TAGS}AND${tag}")
293         fi
294     done
295 }
296
297
298 function copy_archives () {
299
300     # Create additional archive if workspace variable is set.
301     # This way if script is running in jenkins all will be
302     # automatically archived to logs.fd.io.
303     #
304     # Variables read:
305     # - WORKSPACE - Jenkins workspace, copy only if the value is not empty.
306     #   Can be unset, then it speeds up manual testing.
307     # - ARCHIVE_DIR - Path to directory with content to be copied.
308     # Directories updated:
309     # - ${WORKSPACE}/archives/ - Created if does not exist.
310     #   Content of ${ARCHIVE_DIR}/ is copied here.
311     # Functions called:
312     # - die - Print to stderr and exit.
313
314     set -exuo pipefail
315
316     if [[ -n "${WORKSPACE-}" ]]; then
317         mkdir -p "${WORKSPACE}/archives/" || die "Archives dir create failed."
318         cp -rf "${ARCHIVE_DIR}"/* "${WORKSPACE}/archives" || die "Copy failed."
319     fi
320 }
321
322
323 function deactivate_docker_topology () {
324
325     # Deactivate virtual vpp-device topology by removing containers.
326     #
327     # Variables read:
328     # - NODENESS - Node multiplicity of desired testbed.
329     # - FLAVOR - Node flavor string, usually describing the processor.
330
331     set -exuo pipefail
332
333     case_text="${NODENESS}_${FLAVOR}"
334     case "${case_text}" in
335         "1n_skx" | "1n_tx2")
336             hostname=$(grep search /etc/resolv.conf | cut -d' ' -f3) || die
337             ssh="ssh root@${hostname} -p 6022"
338             env_vars=$(env | grep CSIT_ | tr '\n' ' ' ) || die
339             # The "declare -f" output is long and boring.
340             set +x
341             ${ssh} "$(declare -f); deactivate_wrapper ${env_vars}" || {
342                 die "Topology cleanup via shim-dcr failed!"
343             }
344             set -x
345             ;;
346         "1n_vbox")
347             enter_mutex || die
348             clean_environment || {
349                 die "Topology cleanup locally failed!"
350             }
351             exit_mutex || die
352             ;;
353         *)
354             die "Unknown specification: ${case_text}!"
355     esac
356 }
357
358
359 function die () {
360
361     # Print the message to standard error end exit with error code specified
362     # by the second argument.
363     #
364     # Hardcoded values:
365     # - The default error message.
366     # Arguments:
367     # - ${1} - The whole error message, be sure to quote. Optional
368     # - ${2} - the code to exit with, default: 1.
369
370     set -x
371     set +eu
372     warn "${1:-Unspecified run-time error occurred!}"
373     exit "${2:-1}"
374 }
375
376
377 function die_on_pybot_error () {
378
379     # Source this fragment if you want to abort on any failed test case.
380     #
381     # Variables read:
382     # - PYBOT_EXIT_STATUS - Set by a pybot running fragment.
383     # Functions called:
384     # - die - Print to stderr and exit.
385
386     set -exuo pipefail
387
388     if [[ "${PYBOT_EXIT_STATUS}" != "0" ]]; then
389         die "Test failures are present!" "${PYBOT_EXIT_STATUS}"
390     fi
391 }
392
393
394 function generate_tests () {
395
396     # Populate ${GENERATED_DIR}/tests based on ${CSIT_DIR}/tests/.
397     # Any previously existing content of ${GENERATED_DIR}/tests is wiped before.
398     # The generation is done by executing any *.py executable
399     # within any subdirectory after copying.
400
401     # This is a separate function, because this code is called
402     # both by autogen checker and entries calling run_pybot.
403
404     # Directories read:
405     # - ${CSIT_DIR}/tests - Used as templates for the generated tests.
406     # Directories replaced:
407     # - ${GENERATED_DIR}/tests - Overwritten by the generated tests.
408
409     set -exuo pipefail
410
411     rm -rf "${GENERATED_DIR}/tests" || die
412     cp -r "${CSIT_DIR}/tests" "${GENERATED_DIR}/tests" || die
413     cmd_line=("find" "${GENERATED_DIR}/tests" "-type" "f")
414     cmd_line+=("-executable" "-name" "*.py")
415     # We sort the directories, so log output can be compared between runs.
416     file_list=$("${cmd_line[@]}" | sort) || die
417
418     for gen in ${file_list}; do
419         directory="$(dirname "${gen}")" || die
420         filename="$(basename "${gen}")" || die
421         pushd "${directory}" || die
422         ./"${filename}" || die
423         popd || die
424     done
425 }
426
427
428 function get_test_code () {
429
430     # Arguments:
431     # - ${1} - Optional, argument of entry script (or empty as unset).
432     #   Test code value to override job name from environment.
433     # Variables read:
434     # - JOB_NAME - String affecting test selection, default if not argument.
435     # Variables set:
436     # - TEST_CODE - The test selection string from environment or argument.
437     # - NODENESS - Node multiplicity of desired testbed.
438     # - FLAVOR - Node flavor string, usually describing the processor.
439
440     set -exuo pipefail
441
442     TEST_CODE="${1-}" || die "Reading optional argument failed, somehow."
443     if [[ -z "${TEST_CODE}" ]]; then
444         TEST_CODE="${JOB_NAME-}" || die "Reading job name failed, somehow."
445     fi
446
447     case "${TEST_CODE}" in
448         *"1n-vbox"*)
449             NODENESS="1n"
450             FLAVOR="vbox"
451             ;;
452         *"1n-skx"*)
453             NODENESS="1n"
454             FLAVOR="skx"
455             ;;
456        *"1n-tx2"*)
457             NODENESS="1n"
458             FLAVOR="tx2"
459             ;;
460         *"2n-skx"*)
461             NODENESS="2n"
462             FLAVOR="skx"
463             ;;
464         *"3n-skx"*)
465             NODENESS="3n"
466             FLAVOR="skx"
467             ;;
468         *"2n-clx"*)
469             NODENESS="2n"
470             FLAVOR="clx"
471             ;;
472         *"2n-dnv"*)
473             NODENESS="2n"
474             FLAVOR="dnv"
475             ;;
476         *"3n-dnv"*)
477             NODENESS="3n"
478             FLAVOR="dnv"
479             ;;
480         *"3n-tsh"*)
481             NODENESS="3n"
482             FLAVOR="tsh"
483             ;;
484         *)
485             # Fallback to 3-node Haswell by default (backward compatibility)
486             NODENESS="3n"
487             FLAVOR="hsw"
488             ;;
489     esac
490 }
491
492
493 function get_test_tag_string () {
494
495     # Variables read:
496     # - GERRIT_EVENT_TYPE - Event type set by gerrit, can be unset.
497     # - GERRIT_EVENT_COMMENT_TEXT - Comment text, read for "comment-added" type.
498     # - TEST_CODE - The test selection string from environment or argument.
499     # Variables set:
500     # - TEST_TAG_STRING - The string following trigger word in gerrit comment.
501     #   May be empty, or even not set on event types not adding comment.
502
503     # TODO: ci-management scripts no longer need to perform this.
504
505     set -exuo pipefail
506
507     if [[ "${GERRIT_EVENT_TYPE-}" == "comment-added" ]]; then
508         case "${TEST_CODE}" in
509             *"device"*)
510                 trigger="devicetest"
511                 ;;
512             *"perf"*)
513                 trigger="perftest"
514                 ;;
515             *)
516                 die "Unknown specification: ${TEST_CODE}"
517         esac
518         # Ignore lines not containing the trigger word.
519         comment=$(fgrep "${trigger}" <<< "${GERRIT_EVENT_COMMENT_TEXT}") || true
520         # The vpp-csit triggers trail stuff we are not interested in.
521         # Removing them and trigger word: https://unix.stackexchange.com/a/13472
522         # (except relying on \s whitespace, \S non-whitespace and . both).
523         # The last string is concatenated, only the middle part is expanded.
524         cmd=("grep" "-oP" '\S*'"${trigger}"'\S*\s\K.+$') || die "Unset trigger?"
525         # On parsing error, TEST_TAG_STRING probably stays empty.
526         TEST_TAG_STRING=$("${cmd[@]}" <<< "${comment}") || true
527         if [[ -n "${TEST_TAG_STRING-}" ]]; then
528             test_tag_array=(${TEST_TAG_STRING})
529             if [[ "${test_tag_array[0]}" == "icl" ]]; then
530                 export GRAPH_NODE_VARIANT="icl"
531                 TEST_TAG_STRING="${test_tag_array[@]:1}" || true
532             elif [[ "${test_tag_array[0]}" == "skx" ]]; then
533                 export GRAPH_NODE_VARIANT="skx"
534                 TEST_TAG_STRING="${test_tag_array[@]:1}" || true
535             elif [[ "${test_tag_array[0]}" == "hsw" ]]; then
536                 export GRAPH_NODE_VARIANT="hsw"
537                 TEST_TAG_STRING="${test_tag_array[@]:1}" || true
538             fi
539         fi
540     fi
541 }
542
543
544 function installed () {
545
546     # Check if the given utility is installed. Fail if not installed.
547     #
548     # Duplicate of common.sh function, as this file is also used standalone.
549     #
550     # Arguments:
551     # - ${1} - Utility to check.
552     # Returns:
553     # - 0 - If command is installed.
554     # - 1 - If command is not installed.
555
556     set -exuo pipefail
557
558     command -v "${1}"
559 }
560
561
562 function reserve_and_cleanup_testbed () {
563
564     # Reserve physical testbed, perform cleanup, register trap to unreserve.
565     # When cleanup fails, remove from topologies and keep retrying
566     # until all topologies are removed.
567     #
568     # Variables read:
569     # - TOPOLOGIES - Array of paths to topology yaml to attempt reservation on.
570     # - PYTHON_SCRIPTS_DIR - Path to directory holding the reservation script.
571     # - BUILD_TAG - Any string suitable as filename, identifying
572     #   test run executing this function. May be unset.
573     # Variables set:
574     # - TOPOLOGIES - Array of paths to topologies, with failed cleanups removed.
575     # - WORKING_TOPOLOGY - Path to topology yaml file of the reserved testbed.
576     # Functions called:
577     # - die - Print to stderr and exit.
578     # - ansible_playbook - Perform an action using ansible, see ansible.sh
579     # Traps registered:
580     # - EXIT - Calls cancel_all for ${WORKING_TOPOLOGY}.
581
582     set -exuo pipefail
583
584     while true; do
585         for topo in "${TOPOLOGIES[@]}"; do
586             set +e
587             scrpt="${PYTHON_SCRIPTS_DIR}/topo_reservation.py"
588             opts=("-t" "${topo}" "-r" "${BUILD_TAG:-Unknown}")
589             python3 "${scrpt}" "${opts[@]}"
590             result="$?"
591             set -e
592             if [[ "${result}" == "0" ]]; then
593                 # Trap unreservation before cleanup check,
594                 # so multiple jobs showing failed cleanup improve chances
595                 # of humans to notice and fix.
596                 WORKING_TOPOLOGY="${topo}"
597                 echo "Reserved: ${WORKING_TOPOLOGY}"
598                 trap "untrap_and_unreserve_testbed" EXIT || {
599                     message="TRAP ATTEMPT AND UNRESERVE FAILED, FIX MANUALLY."
600                     untrap_and_unreserve_testbed "${message}" || {
601                         die "Teardown should have died, not failed."
602                     }
603                     die "Trap attempt failed, unreserve succeeded. Aborting."
604                 }
605                 # Cleanup + calibration checks.
606                 set +e
607                 ansible_playbook "cleanup, calibration"
608                 result="$?"
609                 set -e
610                 if [[ "${result}" == "0" ]]; then
611                     break
612                 fi
613                 warn "Testbed cleanup failed: ${topo}"
614                 untrap_and_unreserve_testbed "Fail of unreserve after cleanup."
615             fi
616             # Else testbed is accessible but currently reserved, moving on.
617         done
618
619         if [[ -n "${WORKING_TOPOLOGY-}" ]]; then
620             # Exit the infinite while loop if we made a reservation.
621             warn "Reservation and cleanup successful."
622             break
623         fi
624
625         if [[ "${#TOPOLOGIES[@]}" == "0" ]]; then
626             die "Run out of operational testbeds!"
627         fi
628
629         # Wait ~3minutes before next try.
630         sleep_time="$[ ( ${RANDOM} % 20 ) + 180 ]s" || {
631             die "Sleep time calculation failed."
632         }
633         echo "Sleeping ${sleep_time}"
634         sleep "${sleep_time}" || die "Sleep failed."
635     done
636 }
637
638
639 function run_pybot () {
640
641     # Run pybot with options based on input variables. Create output_info.xml
642     #
643     # Variables read:
644     # - CSIT_DIR - Path to existing root of local CSIT git repository.
645     # - ARCHIVE_DIR - Path to store robot result files in.
646     # - PYBOT_ARGS, EXPANDED_TAGS - See compose_pybot_arguments.sh
647     # - GENERATED_DIR - Tests are assumed to be generated under there.
648     # Variables set:
649     # - PYBOT_EXIT_STATUS - Exit status of most recent pybot invocation.
650     # Functions called:
651     # - die - Print to stderr and exit.
652
653     set -exuo pipefail
654
655     all_options=("--outputdir" "${ARCHIVE_DIR}" "${PYBOT_ARGS[@]}")
656     all_options+=("--noncritical" "EXPECTED_FAILING")
657     all_options+=("${EXPANDED_TAGS[@]}")
658
659     pushd "${CSIT_DIR}" || die "Change directory operation failed."
660     set +e
661     robot "${all_options[@]}" "${GENERATED_DIR}/tests/"
662     PYBOT_EXIT_STATUS="$?"
663     set -e
664
665     # Generate INFO level output_info.xml for post-processing.
666     all_options=("--loglevel" "INFO")
667     all_options+=("--log" "none")
668     all_options+=("--report" "none")
669     all_options+=("--output" "${ARCHIVE_DIR}/output_info.xml")
670     all_options+=("${ARCHIVE_DIR}/output.xml")
671     rebot "${all_options[@]}" || true
672     popd || die "Change directory operation failed."
673 }
674
675
676 function select_arch_os () {
677
678     # Set variables affected by local CPU architecture and operating system.
679     #
680     # Variables set:
681     # - VPP_VER_FILE - Name of file in CSIT dir containing vpp stable version.
682     # - IMAGE_VER_FILE - Name of file in CSIT dir containing the image name.
683     # - PKG_SUFFIX - Suffix of OS package file name, "rpm" or "deb."
684
685     set -exuo pipefail
686
687     os_id=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') || {
688         die "Get OS release failed."
689     }
690
691     case "${os_id}" in
692         "ubuntu"*)
693             IMAGE_VER_FILE="VPP_DEVICE_IMAGE_UBUNTU"
694             VPP_VER_FILE="VPP_STABLE_VER_UBUNTU_BIONIC"
695             PKG_SUFFIX="deb"
696             ;;
697         "centos"*)
698             IMAGE_VER_FILE="VPP_DEVICE_IMAGE_CENTOS"
699             VPP_VER_FILE="VPP_STABLE_VER_CENTOS"
700             PKG_SUFFIX="rpm"
701             ;;
702         *)
703             die "Unable to identify distro or os from ${os_id}"
704             ;;
705     esac
706
707     arch=$(uname -m) || {
708         die "Get CPU architecture failed."
709     }
710
711     case "${arch}" in
712         "aarch64")
713             IMAGE_VER_FILE="${IMAGE_VER_FILE}_ARM"
714             ;;
715         *)
716             ;;
717     esac
718 }
719
720
721 function select_tags () {
722
723     # Variables read:
724     # - WORKING_TOPOLOGY - Path to topology yaml file of the reserved testbed.
725     # - TEST_CODE - String affecting test selection, usually jenkins job name.
726     # - DUT - CSIT test/ subdirectory, set while processing tags.
727     # - TEST_TAG_STRING - String selecting tags, from gerrit comment.
728     #   Can be unset.
729     # - TOPOLOGIES_DIR - Path to existing directory with available tpologies.
730     # - BASH_FUNCTION_DIR - Directory with input files to process.
731     # Variables set:
732     # - TAGS - Array of processed tag boolean expressions.
733
734     set -exuo pipefail
735
736     # NIC SELECTION
737     start_pattern='^  TG:'
738     end_pattern='^ \? \?[A-Za-z0-9]\+:'
739     # Remove the TG section from topology file
740     sed_command="/${start_pattern}/,/${end_pattern}/d"
741     # All topologies DUT NICs
742     available=$(sed "${sed_command}" "${TOPOLOGIES_DIR}"/* \
743                 | grep -hoP "model: \K.*" | sort -u)
744     # Selected topology DUT NICs
745     reserved=$(sed "${sed_command}" "${WORKING_TOPOLOGY}" \
746                | grep -hoP "model: \K.*" | sort -u)
747     # All topologies DUT NICs - Selected topology DUT NICs
748     exclude_nics=($(comm -13 <(echo "${reserved}") <(echo "${available}"))) || {
749         die "Computation of excluded NICs failed."
750     }
751
752     # Select default NIC tag.
753     case "${TEST_CODE}" in
754         *"3n-dnv"* | *"2n-dnv"*)
755             default_nic="nic_intel-x553"
756             ;;
757         *"3n-tsh"*)
758             default_nic="nic_intel-x520-da2"
759             ;;
760         *"3n-skx"* | *"2n-skx"* | *"2n-clx"*)
761             default_nic="nic_intel-xxv710"
762             ;;
763         *"3n-hsw"* | *"mrr-daily-master")
764             default_nic="nic_intel-xl710"
765             ;;
766         *)
767             default_nic="nic_intel-x710"
768             ;;
769     esac
770
771     sed_nic_sub_cmd="sed s/\${default_nic}/${default_nic}/"
772     sed_nics_sub_cmd="sed -e s/ANDxxv710/ANDnic_intel-xxv710/"
773     sed_nics_sub_cmd+=" | sed -e s/ANDx710/ANDnic_intel-x710/"
774     sed_nics_sub_cmd+=" | sed -e s/ANDxl710/ANDnic_intel-xl710/"
775     sed_nics_sub_cmd+=" | sed -e s/ANDx520-da2/ANDnic_intel-x520-da2/"
776     sed_nics_sub_cmd+=" | sed -e s/ANDx553/ANDnic_intel-x553/"
777     sed_nics_sub_cmd+=" | sed -e s/ANDcx556a/ANDnic_mellanox-cx556a/"
778     sed_nics_sub_cmd+=" | sed -e s/ANDvic1227/ANDnic_cisco-vic-1227/"
779     sed_nics_sub_cmd+=" | sed -e s/ANDvic1385/ANDnic_cisco-vic-1385/"
780     # Tag file directory shorthand.
781     tfd="${JOB_SPECS_DIR}"
782     case "${TEST_CODE}" in
783         # Select specific performance tests based on jenkins job type variable.
784         *"ndrpdr-weekly"* )
785             readarray -t test_tag_array <<< $(sed 's/ //g' \
786                 ${tfd}/mlr_weekly/${DUT}-${NODENESS}-${FLAVOR}.md |
787                 eval ${sed_nics_sub_cmd}) || die
788             ;;
789         *"mrr-daily"* )
790             readarray -t test_tag_array <<< $(sed 's/ //g' \
791                 ${tfd}/mrr_daily/${DUT}-${NODENESS}-${FLAVOR}.md |
792                 eval ${sed_nics_sub_cmd}) || die
793             ;;
794         *"mrr-weekly"* )
795             readarray -t test_tag_array <<< $(sed 's/ //g' \
796                 ${tfd}/mrr_weekly/${DUT}-${NODENESS}-${FLAVOR}.md |
797                 eval ${sed_nics_sub_cmd}) || die
798             ;;
799         *"report-iterative"* )
800             test_sets=(${TEST_TAG_STRING//:/ })
801             # Run only one test set per run
802             report_file=${test_sets[0]}.md
803             readarray -t test_tag_array <<< $(sed 's/ //g' \
804                 ${tfd}/report_iterative/${NODENESS}-${FLAVOR}/${report_file} |
805                 eval ${sed_nics_sub_cmd}) || die
806             ;;
807         *"report-coverage"* )
808             test_sets=(${TEST_TAG_STRING//:/ })
809             # Run only one test set per run
810             report_file=${test_sets[0]}.md
811             readarray -t test_tag_array <<< $(sed 's/ //g' \
812                 ${tfd}/report_coverage/${NODENESS}-${FLAVOR}/${report_file} |
813                 eval ${sed_nics_sub_cmd}) || die
814             ;;
815         * )
816             if [[ -z "${TEST_TAG_STRING-}" ]]; then
817                 # If nothing is specified, we will run pre-selected tests by
818                 # following tags.
819                 test_tag_array=("mrrAND${default_nic}AND1cAND64bANDip4base"
820                                 "mrrAND${default_nic}AND1cAND78bANDip6base"
821                                 "mrrAND${default_nic}AND1cAND64bANDl2bdbase"
822                                 "mrrAND${default_nic}AND1cAND64bANDl2xcbase"
823                                 "!dot1q" "!drv_avf")
824             else
825                 # If trigger contains tags, split them into array.
826                 test_tag_array=(${TEST_TAG_STRING//:/ })
827             fi
828             ;;
829     esac
830
831     # Blacklisting certain tags per topology.
832     #
833     # Reasons for blacklisting:
834     # - ipsechw - Blacklisted on testbeds without crypto hardware accelerator.
835     # TODO: Add missing reasons here (if general) or where used (if specific).
836     case "${TEST_CODE}" in
837         *"2n-skx"*)
838             test_tag_array+=("!ipsechw")
839             ;;
840         *"3n-skx"*)
841             test_tag_array+=("!ipsechw")
842             # Not enough nic_intel-xxv710 to support double link tests.
843             test_tag_array+=("!3_node_double_link_topoANDnic_intel-xxv710")
844             ;;
845         *"2n-clx"*)
846             test_tag_array+=("!ipsechw")
847             ;;
848         *"2n-dnv"*)
849             test_tag_array+=("!ipsechw")
850             test_tag_array+=("!memif")
851             test_tag_array+=("!srv6_proxy")
852             test_tag_array+=("!vhost")
853             test_tag_array+=("!vts")
854             test_tag_array+=("!drv_avf")
855             ;;
856         *"3n-dnv"*)
857             test_tag_array+=("!memif")
858             test_tag_array+=("!srv6_proxy")
859             test_tag_array+=("!vhost")
860             test_tag_array+=("!vts")
861             test_tag_array+=("!drv_avf")
862             ;;
863         *"3n-tsh"*)
864             # 3n-tsh only has x520 NICs which don't work with AVF
865             test_tag_array+=("!drv_avf")
866             test_tag_array+=("!ipsechw")
867             ;;
868         *"3n-hsw"*)
869             # TODO: Introduce NOIOMMU version of AVF tests.
870             # TODO: Make (both) AVF tests work on Haswell,
871             # or document why (some of) it is not possible.
872             # https://github.com/FDio/vpp/blob/master/src/plugins/avf/README.md
873             test_tag_array+=("!drv_avf")
874             # All cards have access to QAT. But only one card (xl710)
875             # resides in same NUMA as QAT. Other cards must go over QPI
876             # which we do not want to even run.
877             test_tag_array+=("!ipsechwNOTnic_intel-xl710")
878             ;;
879         *)
880             # Default to 3n-hsw due to compatibility.
881             test_tag_array+=("!drv_avf")
882             test_tag_array+=("!ipsechwNOTnic_intel-xl710")
883             ;;
884     esac
885
886     # We will add excluded NICs.
887     test_tag_array+=("${exclude_nics[@]/#/!NIC_}")
888
889     TAGS=()
890
891     # We will prefix with perftest to prevent running other tests
892     # (e.g. Functional).
893     prefix="perftestAND"
894     set +x
895     if [[ "${TEST_CODE}" == "vpp-"* ]]; then
896         # Automatic prefixing for VPP jobs to limit the NIC used and
897         # traffic evaluation to MRR.
898         if [[ "${TEST_TAG_STRING-}" == *"nic_"* ]]; then
899             prefix="${prefix}mrrAND"
900         else
901             prefix="${prefix}mrrAND${default_nic}AND"
902         fi
903     fi
904     for tag in "${test_tag_array[@]}"; do
905         if [[ "${tag}" == "!"* ]]; then
906             # Exclude tags are not prefixed.
907             TAGS+=("${tag}")
908         elif [[ "${tag}" == " "* || "${tag}" == *"perftest"* ]]; then
909             # Badly formed tag expressions can trigger way too much tests.
910             set -x
911             warn "The following tag expression hints at bad trigger: ${tag}"
912             warn "Possible cause: Multiple triggers in a single comment."
913             die "Aborting to avoid triggering too many tests."
914         elif [[ "${tag}" != "" && "${tag}" != "#"* ]]; then
915             # Empty and comment lines are skipped.
916             # Other lines are normal tags, they are to be prefixed.
917             TAGS+=("${prefix}${tag}")
918         fi
919     done
920     set -x
921 }
922
923
924 function select_topology () {
925
926     # Variables read:
927     # - NODENESS - Node multiplicity of testbed, either "2n" or "3n".
928     # - FLAVOR - Node flavor string, currently either "hsw" or "skx".
929     # - CSIT_DIR - Path to existing root of local CSIT git repository.
930     # - TOPOLOGIES_DIR - Path to existing directory with available topologies.
931     # Variables set:
932     # - TOPOLOGIES - Array of paths to suitable topology yaml files.
933     # - TOPOLOGIES_TAGS - Tag expression selecting tests for the topology.
934     # Functions called:
935     # - die - Print to stderr and exit.
936
937     set -exuo pipefail
938
939     case_text="${NODENESS}_${FLAVOR}"
940     case "${case_text}" in
941         # TODO: Move tags to "# Blacklisting certain tags per topology" section.
942         # TODO: Double link availability depends on NIC used.
943         "1n_vbox")
944             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*vpp_device*.template )
945             TOPOLOGIES_TAGS="2_node_single_link_topo"
946             ;;
947         "1n_skx" | "1n_tx2")
948             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*vpp_device*.template )
949             TOPOLOGIES_TAGS="2_node_single_link_topo"
950             ;;
951         "2n_skx")
952             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_skx*.yaml )
953             TOPOLOGIES_TAGS="2_node_*_link_topo"
954             ;;
955         "3n_skx")
956             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*3n_skx*.yaml )
957             TOPOLOGIES_TAGS="3_node_*_link_topo"
958             ;;
959         "2n_clx")
960             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_clx*.yaml )
961             TOPOLOGIES_TAGS="2_node_*_link_topo"
962             ;;
963         "2n_dnv")
964             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_dnv*.yaml )
965             TOPOLOGIES_TAGS="2_node_single_link_topo"
966             ;;
967         "3n_dnv")
968             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*3n_dnv*.yaml )
969             TOPOLOGIES_TAGS="3_node_single_link_topo"
970             ;;
971         "3n_hsw")
972             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*3n_hsw*.yaml )
973             TOPOLOGIES_TAGS="3_node_single_link_topo"
974             ;;
975         "3n_tsh")
976             TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*3n_tsh*.yaml )
977             TOPOLOGIES_TAGS="3_node_single_link_topo"
978             ;;
979         *)
980             # No falling back to 3n_hsw default, that should have been done
981             # by the function which has set NODENESS and FLAVOR.
982             die "Unknown specification: ${case_text}"
983     esac
984
985     if [[ -z "${TOPOLOGIES-}" ]]; then
986         die "No applicable topology found!"
987     fi
988 }
989
990
991 function select_vpp_device_tags () {
992
993     # Variables read:
994     # - TEST_CODE - String affecting test selection, usually jenkins job name.
995     # - TEST_TAG_STRING - String selecting tags, from gerrit comment.
996     #   Can be unset.
997     # Variables set:
998     # - TAGS - Array of processed tag boolean expressions.
999
1000     set -exuo pipefail
1001
1002     case "${TEST_CODE}" in
1003         # Select specific device tests based on jenkins job type variable.
1004         * )
1005             if [[ -z "${TEST_TAG_STRING-}" ]]; then
1006                 # If nothing is specified, we will run pre-selected tests by
1007                 # following tags. Items of array will be concatenated by OR
1008                 # in Robot Framework.
1009                 test_tag_array=()
1010             else
1011                 # If trigger contains tags, split them into array.
1012                 test_tag_array=(${TEST_TAG_STRING//:/ })
1013             fi
1014             ;;
1015     esac
1016
1017     # Blacklisting certain tags per topology.
1018     #
1019     # Reasons for blacklisting:
1020     # - avf - AVF is not possible to run on enic driver of VirtualBox.
1021     # - vhost - VirtualBox does not support nesting virtualization on Intel CPU.
1022     case "${TEST_CODE}" in
1023         *"1n-vbox"*)
1024             test_tag_array+=("!avf")
1025             test_tag_array+=("!vhost")
1026             ;;
1027         *)
1028             ;;
1029     esac
1030
1031     TAGS=()
1032
1033     # We will prefix with devicetest to prevent running other tests
1034     # (e.g. Functional).
1035     prefix="devicetestAND"
1036     if [[ "${TEST_CODE}" == "vpp-"* ]]; then
1037         # Automatic prefixing for VPP jobs to limit testing.
1038         prefix="${prefix}"
1039     fi
1040     for tag in "${test_tag_array[@]}"; do
1041         if [[ ${tag} == "!"* ]]; then
1042             # Exclude tags are not prefixed.
1043             TAGS+=("${tag}")
1044         else
1045             TAGS+=("${prefix}${tag}")
1046         fi
1047     done
1048 }
1049
1050 function untrap_and_unreserve_testbed () {
1051
1052     # Use this as a trap function to ensure testbed does not remain reserved.
1053     # Perhaps call directly before script exit, to free testbed for other jobs.
1054     # This function is smart enough to avoid multiple unreservations (so safe).
1055     # Topo cleanup is executed (call it best practice), ignoring failures.
1056     #
1057     # Hardcoded values:
1058     # - default message to die with if testbed might remain reserved.
1059     # Arguments:
1060     # - ${1} - Message to die with if unreservation fails. Default hardcoded.
1061     # Variables read (by inner function):
1062     # - WORKING_TOPOLOGY - Path to topology yaml file of the reserved testbed.
1063     # - PYTHON_SCRIPTS_DIR - Path to directory holding Python scripts.
1064     # Variables written:
1065     # - WORKING_TOPOLOGY - Set to empty string on successful unreservation.
1066     # Trap unregistered:
1067     # - EXIT - Failure to untrap is reported, but ignored otherwise.
1068     # Functions called:
1069     # - die - Print to stderr and exit.
1070     # - ansible_playbook - Perform an action using ansible, see ansible.sh
1071
1072     set -xo pipefail
1073     set +eu  # We do not want to exit early in a "teardown" function.
1074     trap - EXIT || echo "Trap deactivation failed, continuing anyway."
1075     wt="${WORKING_TOPOLOGY}"  # Just to avoid too long lines.
1076     if [[ -z "${wt-}" ]]; then
1077         set -eu
1078         warn "Testbed looks unreserved already. Trap removal failed before?"
1079     else
1080         ansible_playbook "cleanup" || true
1081         python3 "${PYTHON_SCRIPTS_DIR}/topo_reservation.py" -c -t "${wt}" || {
1082             die "${1:-FAILED TO UNRESERVE, FIX MANUALLY.}" 2
1083         }
1084         WORKING_TOPOLOGY=""
1085         set -eu
1086     fi
1087 }
1088
1089
1090 function warn () {
1091
1092     # Print the message to standard error.
1093     #
1094     # Arguments:
1095     # - ${@} - The text of the message.
1096
1097     set -exuo pipefail
1098
1099     echo "$@" >&2
1100 }