mirror of
https://github.com/rustfs/rustfs.git
synced 2026-06-21 10:26:01 +08:00
142 lines
3.4 KiB
Bash
Executable File
142 lines
3.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
|
TMP_DIR=$(mktemp -d)
|
|
trap 'rm -rf "$TMP_DIR"' EXIT
|
|
|
|
BIN_DIR="$TMP_DIR/bin"
|
|
PROJECT_DIR="$TMP_DIR/project"
|
|
mkdir -p "$BIN_DIR" "$PROJECT_DIR/rustfs"
|
|
|
|
cp "$ROOT_DIR/build-rustfs.sh" "$PROJECT_DIR/build-rustfs.sh"
|
|
touch "$PROJECT_DIR/Cargo.toml" "$PROJECT_DIR/rustfs/build.rs"
|
|
chmod +x "$PROJECT_DIR/build-rustfs.sh"
|
|
|
|
cat >"$BIN_DIR/rustup" <<'STUB'
|
|
#!/usr/bin/env bash
|
|
exit 0
|
|
STUB
|
|
|
|
cat >"$BIN_DIR/git" <<'STUB'
|
|
#!/usr/bin/env bash
|
|
case "$1" in
|
|
describe)
|
|
echo "v-test"
|
|
;;
|
|
rev-parse)
|
|
echo "deadbee"
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
STUB
|
|
|
|
cat >"$BIN_DIR/cargo" <<'STUB'
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
printf '%s\n' "$*" >>"${CARGO_LOG:?}"
|
|
if [[ -n "${CARGO_ARG_LOG:-}" ]]; then
|
|
i=0
|
|
for arg in "$@"; do
|
|
printf 'ARG[%d]=<%s>\n' "$i" "$arg" >>"$CARGO_ARG_LOG"
|
|
i=$((i + 1))
|
|
done
|
|
fi
|
|
|
|
target=""
|
|
profile="debug"
|
|
prev=""
|
|
for arg in "$@"; do
|
|
if [[ "$prev" == "--target" ]]; then
|
|
target="$arg"
|
|
fi
|
|
if [[ "$arg" == "--release" ]]; then
|
|
profile="release"
|
|
fi
|
|
prev="$arg"
|
|
done
|
|
|
|
if [[ -n "$target" ]]; then
|
|
mkdir -p "target/$target/$profile"
|
|
printf '#!/usr/bin/env bash\nexit 0\n' >"target/$target/$profile/rustfs"
|
|
chmod +x "target/$target/$profile/rustfs"
|
|
fi
|
|
STUB
|
|
|
|
chmod +x "$BIN_DIR/rustup" "$BIN_DIR/git" "$BIN_DIR/cargo"
|
|
|
|
run_log="$TMP_DIR/run.log"
|
|
cargo_log="$TMP_DIR/cargo.log"
|
|
(
|
|
cd "$PROJECT_DIR"
|
|
PATH="$BIN_DIR:$PATH" CARGO_LOG="$cargo_log" ./build-rustfs.sh \
|
|
--dev \
|
|
--no-console \
|
|
--skip-verification \
|
|
--output-dir "$TMP_DIR/out" \
|
|
--features webdav >"$run_log"
|
|
)
|
|
|
|
grep -q -- "Features: webdav" "$run_log"
|
|
grep -q -- "--features webdav" "$cargo_log"
|
|
|
|
short_run_log="$TMP_DIR/run-short.log"
|
|
short_cargo_log="$TMP_DIR/cargo-short.log"
|
|
(
|
|
cd "$PROJECT_DIR"
|
|
PATH="$BIN_DIR:$PATH" CARGO_LOG="$short_cargo_log" ./build-rustfs.sh \
|
|
--dev \
|
|
--no-console \
|
|
--skip-verification \
|
|
--output-dir "$TMP_DIR/out-short" \
|
|
-f full >"$short_run_log"
|
|
)
|
|
|
|
grep -q -- "Features: full" "$short_run_log"
|
|
grep -q -- "--features full" "$short_cargo_log"
|
|
|
|
multi_run_log="$TMP_DIR/run-multi.log"
|
|
multi_cargo_log="$TMP_DIR/cargo-multi.log"
|
|
multi_arg_log="$TMP_DIR/cargo-multi-args.log"
|
|
(
|
|
cd "$PROJECT_DIR"
|
|
PATH="$BIN_DIR:$PATH" CARGO_LOG="$multi_cargo_log" CARGO_ARG_LOG="$multi_arg_log" ./build-rustfs.sh \
|
|
--dev \
|
|
--no-console \
|
|
--skip-verification \
|
|
--output-dir "$TMP_DIR/out-multi" \
|
|
--features "webdav full" >"$multi_run_log"
|
|
)
|
|
|
|
grep -q -- "Features: webdav full" "$multi_run_log"
|
|
features_arg_line=$(awk '/^ARG\[[0-9]+\]=<--features>$/ { print NR; exit }' "$multi_arg_log")
|
|
if [[ -z "$features_arg_line" ]]; then
|
|
echo "Expected cargo argv to include --features" >&2
|
|
exit 1
|
|
fi
|
|
|
|
features_value_line=$(sed -n "$((features_arg_line + 1))p" "$multi_arg_log")
|
|
if ! grep -q -E '^ARG\[[0-9]+\]=<webdav full>$' <<<"$features_value_line"; then
|
|
echo "Expected --features value to remain one cargo argument" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if tail -n +"$((features_arg_line + 2))" "$multi_arg_log" | grep -q -E '^ARG\[[0-9]+\]=<full>$'; then
|
|
echo "Expected space-separated feature list to remain one cargo argument" >&2
|
|
exit 1
|
|
fi
|
|
|
|
missing_log="$TMP_DIR/missing.log"
|
|
if (
|
|
cd "$PROJECT_DIR"
|
|
PATH="$BIN_DIR:$PATH" CARGO_LOG="$cargo_log" ./build-rustfs.sh --features >"$missing_log" 2>&1
|
|
); then
|
|
echo "Expected --features without a value to fail" >&2
|
|
exit 1
|
|
fi
|
|
|
|
grep -q -- "Missing value for --features" "$missing_log"
|