FIX: Move per-patch building mechanics
[csit.git] / resources / libraries / bash / function / per_patch.sh
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 set -exuo pipefail
15
16 # This library defines functions used mainly by per patch entry scripts.
17 # Generally, the functions assume "common.sh" library has been sourced already.
18 # Keep functions ordered alphabetically, please.
19
20 function archive_test_results () {
21
22     # Arguments:
23     # - ${1}: Directory to archive to. Required. Parent has to exist.
24     # Variable set:
25     # - TARGET - Target directory.
26     # Variables read:
27     # - ARCHIVE_DIR - Path to where robot result files are created in.
28     # - VPP_DIR - Path to existing directory, root for to relative paths.
29     # Directories updated:
30     # - ${1} - Created, and robot and parsing files are moved/created there.
31     # Functions called:
32     # - die - Print to stderr and exit, defined in common.sh
33
34     set -exuo pipefail
35
36     cd "${VPP_DIR}" || die "Change directory command failed."
37     TARGET="$(readlink -f "$1")"
38     mkdir -p "${TARGET}" || die "Directory creation failed."
39     for filename in "output.xml" "log.html" "report.html"; do
40         mv "${ARCHIVE_DIR}/${filename}" "${TARGET}/${filename}" || {
41             die "Attempt to move '${filename}' failed."
42         }
43     done
44 }
45
46
47 function archive_parse_test_results () {
48
49     # Arguments:
50     # - ${1}: Directory to archive to. Required. Parent has to exist.
51     # Variables read:
52     # - TARGET - Target directory.
53     # Functions called:
54     # - die - Print to stderr and exit, defined in common.sh
55     # - archive_test_results - Archiving results.
56     # - parse_bmrr_results - See definition in this file.
57
58     set -exuo pipefail
59
60     archive_test_results "$1" || die
61     parse_bmrr_results "${TARGET}" || {
62         die "The function should have died on error."
63     }
64 }
65
66
67 function build_vpp_ubuntu_amd64 () {
68
69     # This function is using make pkg-verify to build VPP with all dependencies
70     # that is ARCH/OS aware. VPP repo is SSOT for building mechanics and CSIT
71     # is consuming artifacts. This way if VPP will introduce change in building
72     # mechanics they will not be blocked by CSIT repo.
73     # Arguments:
74     # - ${1} - String identifier for echo, can be unset.
75     # Variables read:
76     # - VPP_DIR - Path to existing directory, parent to accessed directories.
77     # Directories updated:
78     # - ${VPP_DIR} - Whole subtree, many files (re)created by the build process.
79     # Functions called:
80     # - die - Print to stderr and exit, defined in common.sh
81
82     set -exuo pipefail
83
84     cd "${VPP_DIR}" || die "Change directory command failed."
85     make pkg-verify || die "VPP build using make pkg-verify failed."
86     echo "* VPP ${1-} BUILD SUCCESSFULLY COMPLETED" || {
87         die "Argument not found."
88     }
89 }
90
91
92 function compare_test_results () {
93
94     # Variables read:
95     # - VPP_DIR - Path to directory with VPP git repo (at least built parts).
96     # - ARCHIVE_DIR - Path to where robot result files are created in.
97     # - PYTHON_SCRIPTS_DIR - Path to directory holding comparison utility.
98     # Directories recreated:
99     # - csit_parent - Sibling to csit directory, for holding results
100     #   of parent build.
101     # Functions called:
102     # - die - Print to stderr and exit, defined in common.sh
103     # - parse_bmrr_results - See definition in this file.
104     # Exit code:
105     # - 0 - If the comparison utility sees no regression (nor data error).
106     # - 1 - If the comparison utility sees a regression (or data error).
107
108     set -exuo pipefail
109
110     cd "${VPP_DIR}" || die "Change directory operation failed."
111     # Reusing CSIT main virtualenv.
112     pip install -r "${PYTHON_SCRIPTS_DIR}/perpatch_requirements.txt" || {
113         die "Perpatch Python requirements installation failed."
114     }
115     python "${PYTHON_SCRIPTS_DIR}/compare_perpatch.py"
116     # The exit code determines the vote result.
117 }
118
119
120 function download_builds () {
121
122     # This is mostly useful only for Sandbox testing, to avoid recompilation.
123     #
124     # Arguments:
125     # - ${1} - URL to download VPP builds from.
126     # Variables read:
127     # - VPP_DIR - Path to WORKSPACE, parent of created directories.
128     # Directories created:
129     # - archive - Ends up empty, not to be confused with ${ARCHIVE_DIR}.
130     # - build_current - Holding built artifacts of the patch under test (PUT).
131     # - built_parent - Holding built artifacts of parent of PUT.
132     # Functions called:
133     # - die - Print to stderr and exit, defined in common.sh
134
135     set -exuo pipefail
136
137     cd "${VPP_DIR}" || die "Change directory operation failed."
138     dirs=("build-root" "build_parent" "build_current" "archive" "csit_current")
139     rm -rf ${dirs[@]} || {
140         die "Directory removal failed."
141     }
142     wget -N --progress=dot:giga "${1}" || die "Wget download failed."
143     unzip "archive.zip" || die "Archive extraction failed."
144     mv "archive/build_parent" ./ || die "Move operation failed."
145     mv "archive/build_current" ./ || die "Move operation failed."
146 }
147
148
149 function initialize_csit_dirs () {
150
151     # This could be in prepare_test, but download_builds also needs this.
152     #
153     # Variables read:
154     # - VPP_DIR - Path to WORKSPACE, parent of created directories.
155     # Directories created:
156     # - csit_current - Holding test results of the patch under test (PUT).
157     # - csit_parent - Holding test results of parent of PUT.
158     # Functions called:
159     # - die - Print to stderr and exit, defined in common.sh
160
161     set -exuo pipefail
162
163     cd "${VPP_DIR}" || die "Change directory operation failed."
164     rm -rf "csit_current" "csit_parent" || {
165         die "Directory deletion failed."
166     }
167     mkdir -p "csit_current" "csit_parent" || {
168         die "Directory creation failed."
169     }
170 }
171
172
173 function parse_bmrr_results () {
174
175     # Currently "parsing" is just two greps.
176     # TODO: Re-use PAL parsing code, make parsing more general and centralized.
177     #
178     # Arguments:
179     # - ${1} - Path to (existing) directory holding robot output.xml result.
180     # Files read:
181     # - output.xml - From argument location.
182     # Files updated:
183     # - results.txt - (Re)created, in argument location.
184     # Functions called:
185     # - die - Print to stderr and exit, defined in common.sh
186
187     set -exuo pipefail
188
189     rel_dir="$(readlink -e "${1}")" || die "Readlink failed."
190     in_file="${rel_dir}/output.xml"
191     out_file="${rel_dir}/results.txt"
192     # TODO: Do we need to check echo exit code explicitly?
193     echo "Parsing ${in_file} putting results into ${out_file}"
194     echo "TODO: Re-use parts of PAL when they support subsample test parsing."
195     pattern='Maximum Receive Rate trial results in packets'
196     pattern+=' per second: .*\]</status>'
197     grep -o "${pattern}" "${in_file}" | grep -o '\[.*\]' > "${out_file}" || {
198         die "Some parsing grep command has failed."
199     }
200 }
201
202
203 function select_build () {
204
205     # Arguments:
206     # - ${1} - Path to directory to copy VPP artifacts from. Required.
207     # Variables read:
208     # - DOWNLOAD_DIR - Path to directory where Robot takes builds to test from.
209     # - VPP_DIR - Path to existing directory, root for relative paths.
210     # Directories read:
211     # - ${1} - Existing directory with built new VPP artifacts (and DPDK).
212     # Directories updated:
213     # - ${DOWNLOAD_DIR} - Old content removed, .deb files from ${1} copied here.
214     # Functions called:
215     # - die - Print to stderr and exit, defined in common.sh
216
217     set -exuo pipefail
218
219     cd "${VPP_DIR}" || die "Change directory operation failed."
220     source_dir="$(readlink -e "$1")"
221     rm -rf "${DOWNLOAD_DIR}"/* || die "Cleanup of download dir failed."
222     cp "${source_dir}"/*".deb" "${DOWNLOAD_DIR}" || die "Copy operation failed."
223     # TODO: Is there a nice way to create symlinks,
224     #   so that if job fails on robot, results can be archived?
225 }
226
227
228 function set_aside_commit_build_artifacts () {
229
230     # Function is copying VPP built artifacts from actual checkout commit for
231     # further use and clean git.
232     # Variables read:
233     # - VPP_DIR - Path to existing directory, parent to accessed directories.
234     # Directories read:
235     # - build-root - Existing directory with built VPP artifacts (also DPDK).
236     # Directories updated:
237     # - ${VPP_DIR} - A local git repository, parent commit gets checked out.
238     # - build_current - Old contents removed, content of build-root copied here.
239     # Functions called:
240     # - die - Print to stderr and exit, defined in common.sh
241
242     set -exuo pipefail
243
244     cd "${VPP_DIR}" || die "Change directory operation failed."
245     rm -rf "build_current" || die "Remove operation failed."
246     mkdir -p "build_current" || die "Directory creation failed."
247     mv "build-root"/*".deb" "build_current"/ || die "Move operation failed."
248     # The previous build could have left some incompatible leftovers,
249     # e.g. DPDK artifacts of different version (in build/external).
250     # Also, there usually is a copy of dpdk artifact in build-root.
251     git clean -dffx "build"/ "build-root"/ || die "Git clean operation failed."
252     # Finally, check out the parent commit.
253     git checkout HEAD~ || die "Git checkout operation failed."
254     # Display any other leftovers.
255     git status || die "Git status operation failed."
256 }
257
258
259 function set_aside_parent_build_artifacts () {
260
261     # Function is copying VPP built artifacts from parent checkout commit for
262     # further use. Checkout to parent is not part of this function.
263     # Variables read:
264     # - VPP_DIR - Path to existing directory, parent of accessed directories.
265     # Directories read:
266     # - build-root - Existing directory with built VPP artifacts (also DPDK).
267     # Directories updated:
268     # - build_parent - Old directory removed, build-root debs moved here.
269     # Functions called:
270     # - die - Print to stderr and exit, defined in common.sh
271
272     set -exuo pipefail
273
274     cd "${VPP_DIR}" || die "Change directory operation failed."
275     rm -rf "build_parent" || die "Remove failed."
276     mkdir -p "build_parent" || die "Directory creation operation failed."
277     mv "build-root"/*".deb" "build_parent"/ || die "Move operation failed."
278 }
279
280
281 function set_perpatch_dut () {
282
283     # Variables set:
284     # - DUT - CSIT test/ subdirectory containing suites to execute.
285
286     # TODO: Detect DUT from job name, when we have more than just VPP perpatch.
287
288     set -exuo pipefail
289
290     DUT="vpp"
291 }
292
293
294 function set_perpatch_vpp_dir () {
295
296     # Variables read:
297     # - CSIT_DIR - Path to existing root of local CSIT git repository.
298     # Variables set:
299     # - VPP_DIR - Path to existing root of local VPP git repository.
300     # Functions called:
301     # - die - Print to stderr and exit, defined in common.sh
302
303     set -exuo pipefail
304
305     # In perpatch, CSIT is cloned inside VPP clone.
306     VPP_DIR="$(readlink -e "${CSIT_DIR}/..")" || die "Readlink failed."
307 }