#!/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_MR="${PWD}/bin/mr-tool-under-test" readonly DISTDIR="${TEST_TMPDIR}/distfiles" readonly LBR="${TEST_TMPDIR}/local-build-root" mkdir -p "${DISTDIR}" mkdir -p foo/bar/baz echo "test data" > foo/bar/baz/data.txt echo "/baz/" > foo/bar/.gitignore # add a .gitignore tar cf "${DISTDIR}/foo-1.2.3.tar" foo 2>&1 foocontent=$(git hash-object "${DISTDIR}/foo-1.2.3.tar") echo "Foo archive has content ${foocontent}" # get the tree identifier for later sanity check cd foo git init git config user.name 'N.O.Body' git config user.email 'nobody@example.org' git add -f . # add everything, including any .gitignore git commit -m 'Just care about the tree' 2>&1 tree_id=$(git log -n 1 --format='%T') cd .. rm -rf foo echo "foo as tree ${tree_id}" # Setup sample repository config touch ROOT cat > repos.json <