Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c9a5e3d authored by Usta Shrestha's avatar Usta Shrestha
Browse files

Shellcheck warnings addressed

SC2236: use [[ -n "$var" ]] instead of [[ ! -z "$var" ]]
SC2035: use -- end of options, to accomodate filename w\ hyphens
SC2155: `local -r var=..` for readonly variable shellcheck ignores return value masking
SC2045: prefer glob to iteration over `ls`

Bug: N/A
Test: ran ./run_intergration_tests.sh
Change-Id: Iaf313857ecc417e855afd70c7455841b54b1c363
parent 2320e27e
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ set -o pipefail
# How to run: bash path-to-script/androidmk_test.sh
# Tests of converting license functionality of the androidmk tool
REAL_TOP="$(readlink -f "$(dirname "$0")"/../../..)"
$REAL_TOP/build/soong/soong_ui.bash --make-mode androidmk
"$REAL_TOP/build/soong/soong_ui.bash" --make-mode androidmk

source "$(dirname "$0")/lib.sh"

@@ -113,11 +113,14 @@ EOF
  run_androidmk_test "a/b/c/d/Android.mk" "a/b/c/d/Android.bp"
}

run_androidmk_test () {
function run_androidmk_test {
  export ANDROID_BUILD_TOP="$MOCK_TOP"

  local out=$($REAL_TOP/*/host/*/bin/androidmk "$1")
  local expected=$(<"$2")
  local -r androidmk=("$REAL_TOP"/*/host/*/bin/androidmk)
  if [[ ${#androidmk[@]} -ne 1 ]]; then
    fail "Multiple androidmk binaries found: ${androidmk[*]}"
  fi
  local -r out=$("${androidmk[0]}" "$1")
  local -r expected=$(<"$2")

  if [[ "$out" != "$expected" ]]; then
    ANDROID_BUILD_TOP="$REAL_TOP"
+7 −7
Original line number Diff line number Diff line
@@ -11,10 +11,10 @@ readonly GENERATED_BUILD_FILE_NAME="BUILD.bazel"
function test_bp2build_null_build() {
  setup
  run_soong bp2build
  local output_mtime1=$(stat -c "%y" out/soong/bp2build_workspace_marker)
  local -r output_mtime1=$(stat -c "%y" out/soong/bp2build_workspace_marker)

  run_soong bp2build
  local output_mtime2=$(stat -c "%y" out/soong/bp2build_workspace_marker)
  local -r output_mtime2=$(stat -c "%y" out/soong/bp2build_workspace_marker)

  if [[ "$output_mtime1" != "$output_mtime2" ]]; then
    fail "Output bp2build marker file changed on null build"
@@ -36,10 +36,10 @@ EOF
  touch foo/bar/a.txt foo/bar/b.txt

  run_soong bp2build
  local output_mtime1=$(stat -c "%y" out/soong/bp2build_workspace_marker)
  local -r output_mtime1=$(stat -c "%y" out/soong/bp2build_workspace_marker)

  run_soong bp2build
  local output_mtime2=$(stat -c "%y" out/soong/bp2build_workspace_marker)
  local -r output_mtime2=$(stat -c "%y" out/soong/bp2build_workspace_marker)

  if [[ "$output_mtime1" != "$output_mtime2" ]]; then
    fail "Output bp2build marker file changed on null build"
@@ -147,10 +147,10 @@ EOF
  run_soong bp2build

  run_bazel build --package_path=out/soong/workspace //a:qq
  local output_mtime1=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)
  local -r output_mtime1=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)

  run_bazel build --package_path=out/soong/workspace //a:qq
  local output_mtime2=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)
  local -r output_mtime2=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)

  if [[ "$output_mtime1" != "$output_mtime2" ]]; then
    fail "output changed on null build"
@@ -161,7 +161,7 @@ EOF
EOF

  run_bazel build --package_path=out/soong/workspace //a:qq
  local output_mtime3=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)
  local -r output_mtime3=$(stat -c "%y" bazel-bin/a/_objs/qq/qq.o)

  if [[ "$output_mtime1" == "$output_mtime3" ]]; then
    fail "output not changed when included header changed"
+16 −14
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ HARDWIRED_MOCK_TOP=

REAL_TOP="$(readlink -f "$(dirname "$0")"/../../..)"

if [[ ! -z "$HARDWIRED_MOCK_TOP" ]]; then
if [[ -n "$HARDWIRED_MOCK_TOP" ]]; then
  MOCK_TOP="$HARDWIRED_MOCK_TOP"
else
  MOCK_TOP=$(mktemp -t -d st.XXXXX)
@@ -36,37 +36,38 @@ function cleanup_mock_top {
}

function info {
  echo -e "\e[92;1m[TEST HARNESS INFO]\e[0m" $*
  echo -e "\e[92;1m[TEST HARNESS INFO]\e[0m" "$*"
}

function fail {
  echo -e "\e[91;1mFAILED:\e[0m" $*
  echo -e "\e[91;1mFAILED:\e[0m" "$*"
  exit 1
}

function copy_directory() {
function copy_directory {
  local dir="$1"
  local parent="$(dirname "$dir")"
  local -r parent="$(dirname "$dir")"

  mkdir -p "$MOCK_TOP/$parent"
  cp -R "$REAL_TOP/$dir" "$MOCK_TOP/$parent"
}

function symlink_file() {
function symlink_file {
  local file="$1"

  mkdir -p "$MOCK_TOP/$(dirname "$file")"
  ln -s "$REAL_TOP/$file" "$MOCK_TOP/$file"
}

function symlink_directory() {
function symlink_directory {
  local dir="$1"

  mkdir -p "$MOCK_TOP/$dir"
  # We need to symlink the contents of the directory individually instead of
  # using one symlink for the whole directory because finder.go doesn't follow
  # symlinks when looking for Android.bp files
  for i in $(ls "$REAL_TOP/$dir"); do
  for i in "$REAL_TOP/$dir"/*; do
    i=$(basename "$i")
    local target="$MOCK_TOP/$dir/$i"
    local source="$REAL_TOP/$dir/$i"

@@ -96,7 +97,7 @@ function create_mock_soong {
  touch "$MOCK_TOP/Android.bp"
}

function setup() {
function setup {
  cleanup_mock_top
  mkdir -p "$MOCK_TOP"

@@ -108,11 +109,12 @@ function setup() {
  tar xzf "$WARMED_UP_MOCK_TOP"
}

function run_soong() {
# shellcheck disable=SC2120
function run_soong {
  build/soong/soong_ui.bash --make-mode --skip-ninja --skip-config --soong-only --skip-soong-tests "$@"
}

function create_mock_bazel() {
function create_mock_bazel {
  copy_directory build/bazel

  symlink_directory prebuilts/bazel
@@ -126,7 +128,7 @@ function create_mock_bazel() {
  symlink_file tools/bazel
}

run_bazel() {
function run_bazel {
  # Remove the ninja_build output marker file to communicate to buildbot that this is not a regular Ninja build, and its
  # output should not be parsed as such.
  rm -rf out/ninja_build
@@ -134,11 +136,11 @@ run_bazel() {
  tools/bazel "$@"
}

run_ninja() {
function run_ninja {
  build/soong/soong_ui.bash --make-mode --skip-config --soong-only --skip-soong-tests "$@"
}

info "Starting Soong integration test suite $(basename $0)"
info "Starting Soong integration test suite $(basename "$0")"
info "Mock top: $MOCK_TOP"