blob: 3c4d62dd1dd6c8497b3a8b1a3718e6c6c0b9e5f2 [file] [log] [blame]
#!/usr/bin/env bash
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -eu -o pipefail
# First and only positional argument is the path to the built cipd package file.
pkg="$1"
tempdir="$(mktemp -d)"
trap "rm -rf $tempdir" EXIT
cipd pkg-deploy "$pkg" -root "$tempdir"
# TODO(olivernewman): The black prebuilts dynamically link against a version of
# glibc that isn't available on the docker images used for verification by 3pp.
if [[ "$(uname -s)" == "Linux" ]]; then
echo "Skipping verification on Linux due to potential glibc incompatibility"
exit 0
fi
black="$tempdir/black"
unformatted="
def func( bar, baz) :
print(
'I am not formatted correctly :(')
"
echo "$unformatted" > "$tempdir/unformatted.py"
formatted='def func(bar, baz):
print("I am formatted correctly!")'
echo "$formatted" > "$tempdir/formatted.py"
if ! "$black" --check --diff "$tempdir/formatted.py"; then
echo "Expected black --check to pass on a formatted file"
exit 1
fi
if "$black" --check "$tempdir/unformatted.py"; then
echo "Expected black --check to fail on a badly formatted file"
exit 1
fi
echo
echo "All checks passed!"