summaryrefslogtreecommitdiff
path: root/test/end-to-end/just-mr/defaults.sh
blob: 57b020f60ba38ffbe172e26294b4f044ba36610c (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/bin/sh
# Copyright 2023 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_MR="${PWD}/bin/mr-tool-under-test"
readonly LBR="${TEST_TMPDIR}/local-build-root"
readonly LOG_DIR="${TEST_TMPDIR}/put-log-files-here"
mkdir -p "${LOG_DIR}"
readonly RC_DIR="${TEST_TMPDIR}/etc/just-mr-rc-files"
mkdir -p "${RC_DIR}"
readonly TOOLS_DIR="${TEST_TMPDIR}/tools"
mkdir -p "${TOOLS_DIR}"
readonly PARSE_DIR="${TEST_TMPDIR}/what-was-forwarded"
mkdir -p "${PARSE_DIR}"


readonly SAMPLE_RC="${RC_DIR}/sample.rc"
cat > "${SAMPLE_RC}" <<EOF
{ "log limit": 4
, "log files":
  [ {"root": "system", "path": "${LOG_DIR#/}/rc1.log"}
  , {"root": "system", "path": "${LOG_DIR#/}/rc2.log"}
  ]
, "local launcher": ["env", "SET_IN_RC=true"]
}
EOF
cat "${SAMPLE_RC}"
echo

# We verify the taken defaults by inspecting the arguments forwarded
# to the launched program.
readonly PARSE="${TOOLS_DIR}/parse.py"
cat > "${PARSE}" <<'EOF'
#!/usr/bin/env python3

import json
import os
import sys
from argparse import ArgumentParser



parser = ArgumentParser()
parser.add_argument("-C", dest="repository_config")
parser.add_argument("--local-build-root", dest="local_build_root")
parser.add_argument("-L","--local-launcher", dest="local_launcher")
parser.add_argument("-f", "--log-file", dest="log_file",
                    action="append", default=[])
parser.add_argument("--log-limit", dest="log_limit")
parser.add_argument("--log-append", dest="log_append",
                    action="store_true", default=False)
parser.add_argument("-D", "--defines", dest="defines",
                    action="append", default=[])
(options, args) = parser.parse_known_args(sys.argv[2:])

target_dir=args[-1]
with open(os.path.join(target_dir, "defines"), "w") as f:
  f.write(json.dumps([json.loads(x) for x in options.defines]))
with open(os.path.join(target_dir, "log-limit"), "w") as f:
  f.write(json.dumps(options.log_limit))
with open(os.path.join(target_dir, "log-file"), "w") as f:
  f.write(json.dumps(options.log_file))
with open(os.path.join(target_dir, "launcher"), "w") as f:
  if options.local_launcher:
    f.write(options.local_launcher)
  else:
    f.write("null")
EOF
chmod 755 "${PARSE}"


touch ROOT
cat > repos.json <<'EOF'
{"repositories": {"": {"repository": {"type": "file", "path": "."}}}}
EOF

## log limit

#  rc is honored
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" build "${PARSE_DIR}" 2>&1
test "$(cat "${PARSE_DIR}/log-limit")" = '"4"'
# command line overrides
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" --log-limit 5 build "${PARSE_DIR}" 2>&1
test "$(cat "${PARSE_DIR}/log-limit")" = '"5"'
# value equal to default is discarded
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" --log-limit 3 build "${PARSE_DIR}" 2>&1
test "$(cat "${PARSE_DIR}/log-limit")" = 'null'


## log files

# rc are taken
rm -f "${LOG_DIR}/rc1.log"
rm -f "${LOG_DIR}/rc2.log"
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" build "${PARSE_DIR}" 2>&1
test -f "${LOG_DIR}/rc1.log"
test -f "${LOG_DIR}/rc2.log"
test $(jq ". == [\"${LOG_DIR}/rc1.log\", \"${LOG_DIR}/rc2.log\"]" "${PARSE_DIR}/log-file") = "true"

# command-line log files are added
rm -f "${LOG_DIR}/rc1.log"
rm -f "${LOG_DIR}/rc2.log"
rm -f "${LOG_DIR}/cli.log"
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" -f "${LOG_DIR}/cli.log" build "${PARSE_DIR}" 2>&1
test -f "${LOG_DIR}/rc1.log"
test -f "${LOG_DIR}/rc2.log"
test -f "${LOG_DIR}/cli.log"
test $(jq "sort == [\"${LOG_DIR}/cli.log\", \"${LOG_DIR}/rc1.log\", \"${LOG_DIR}/rc2.log\"]" "${PARSE_DIR}/log-file") = "true"

## launcher

# rc is honored
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" build "${PARSE_DIR}" 2>&1
test $(jq '. == ["env", "SET_IN_RC=true"] ' "${PARSE_DIR}/launcher") = "true"

# command-line takes precedence
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" -L '["cmd", "line", "launcher"]' \
             build "${PARSE_DIR}" 2>&1
test $(jq '. == ["cmd", "line", "launcher"] ' "${PARSE_DIR}/launcher") = "true"

# value equal to defaul is discared
"${JUST_MR}" --local-build-root "${LBR}" --just "${PARSE}" \
             --rc "${SAMPLE_RC}" -L '["env", "--"]' \
             build "${PARSE_DIR}" 2>&1
test "$(cat "${PARSE_DIR}/launcher")" = 'null'

## Command-line -D

# ignored on non-build commands
"${JUST_MR}" --norc --local-build-root "${LBR}" --just "${PARSE}" \
             -D 'this is not json' version "${PARSE_DIR}" 2>&1
test $(jq '. == [] ' "${PARSE_DIR}/defines") = "true"

# not forwarded, if empty
"${JUST_MR}" --norc --local-build-root "${LBR}" --just "${PARSE}" \
             -D '{}' build "${PARSE_DIR}" 2>&1
test $(jq '. == [] ' "${PARSE_DIR}/defines") = "true"

# combined on forwarding
"${JUST_MR}" --norc --local-build-root "${LBR}" --just "${PARSE}" \
             -D '{"foo": "bar"}' -D '{"baz": "baz"}' -D '{"foo": "override"}' \
             build "${PARSE_DIR}" 2>&1
test $(jq '. == [ {"foo": "override", "baz": "baz"}] ' "${PARSE_DIR}/defines") = true

# but passed arguments are given separately

"${JUST_MR}" --norc --local-build-root "${LBR}" --just "${PARSE}" \
             -D '{"foo": "bar"}' -D '{"baz": "baz"}' \
             build -D '{"foo": "override"}' -D '{"x": "y"}' "${PARSE_DIR}" 2>&1
test $(jq '. == [ {"foo": "bar", "baz": "baz"}, {"foo": "override"}, {"x": "y"}] ' "${PARSE_DIR}/defines") = true

echo OK