blob: 17839e8645e7739958ee024c16e6be28729a4e34 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!/bin/sh
# Copyright 2022 Huawei Cloud Computing Technology Co., Ltd.
#
# 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 -eu
readonly JUST="${PWD}/bin/tool-under-test"
# create a sufficiently large (>4MB) file for testing upload/download (16MB)
dd if=/dev/zero of=large.file bs=1024 count=$((16*1024))
touch ROOT
cat > TARGETS <<EOF
{ "test":
{ "type": "generic"
, "cmds": ["cp large.file out.file"]
, "deps": [["FILE", null, "large.file"]]
, "outs": ["out.file"]
}
}
EOF
NAME="native"
COMMON_ARGS="--local-build-root=.root"
if [ "${COMPATIBLE:-}" = "YES" ]; then
NAME="compatible"
COMMON_ARGS="$COMMON_ARGS --compatible"
fi
run_tests() {
local TYPE="local"
local REMOTE_ARGS=""
local REMOTE_BUILD_ARGS=""
if [ -n "${1:-}" ] && [ -n "${2:-}" ]; then
TYPE="remote"
REMOTE_ARGS="-r $1"
REMOTE_BUILD_ARGS="--remote-execution-property $2"
fi
ARGS="$COMMON_ARGS $REMOTE_ARGS"
BUILD_ARGS="$ARGS $REMOTE_BUILD_ARGS"
echo
echo Upload and download to $NAME $TYPE CAS.
echo
"${JUST}" build test $BUILD_ARGS --dump-artifacts result
echo SUCCESS
local ARTIFACT_ID="$(cat result | jq -r '."out.file".id')"
local ARTIFACT_SIZE="$(cat result | jq -r '."out.file".size')"
echo
echo Download from $NAME $TYPE CAS with full qualified object-id.
echo
rm -rf out.file
"${JUST}" install-cas $ARGS -o out.file [$ARTIFACT_ID:$ARTIFACT_SIZE:f]
cmp large.file out.file
echo SUCCESS
# omitting size is only supported in native mode or for local backend
if [ "$NAME" = "native" ] || [ "$TYPE" = "local" ]; then
echo
echo Download from $NAME $TYPE CAS with missing size and file type.
echo
rm -rf out.file
"${JUST}" install-cas $ARGS -o out.file $ARTIFACT_ID
cmp large.file out.file
echo SUCCESS
fi
}
run_tests #local
run_tests "${REMOTE_EXECUTION_ADDRESS:-}" "${REMOTE_EXECUTION_PROPERTIES:-}"
|