File: test-unit.sh

package info (click to toggle)
umoci 0.6.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 2,856 kB
  • sloc: sh: 647; makefile: 173
file content (51 lines) | stat: -rwxr-xr-x 1,890 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# umoci: Umoci Modifies Open Containers' Images
# Copyright (C) 2016-2025 SUSE LLC
#
# 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.

set -Eeuxo pipefail
source "$(dirname "$BASH_SOURCE")/readlinkf.sh"

export ROOT="$(readlinkf_posix "$(dirname "$BASH_SOURCE")/..")"

GO="${GO:-go}"
PROJECT="${PROJECT:-github.com/opencontainers/umoci}"

extra_args=("$@")

GOCOVERDIR="${GOCOVERDIR:-}"
[ -z "$GOCOVERDIR" ] || mkdir -p "$GOCOVERDIR"

# NOTE: As part of the <https://github.com/golang/go/issues/73842> workaround,
# GOCOVERDIR needs to be an absolute path.
[[ "$GOCOVERDIR" =~ ^/ ]] || GOCOVERDIR="$PWD/$GOCOVERDIR"

# If we have to generate a coverage file, make sure the coverage covers the
# entire project and not just the package being tested. This mirrors
# ${TEST_BUILD_FLAGS} from the Makefile.
extra_args+=("-covermode=count" "-coverpkg=$PROJECT/...")

# -test.gocoverdir= needs to be put after the other arguments are parsed
# because it is a Go internal that is not properly handled by "go test" and
# putting it earlier will result in "./..." being misparsed. See
# <https://github.com/golang/go/issues/73842> for more details.
gocoverdir_args=()
if [ -n "$GOCOVERDIR" ]
then
	gocoverdir_args+=("-args" "-test.gocoverdir=$GOCOVERDIR")
fi

# Run the tests.
"$GO" test -v -cover "${extra_args[@]}" "$PROJECT/..." "${gocoverdir_args[@]}"