diff --git a/tests/envsetup_tests.sh b/tests/envsetup_tests.sh index abdcd56b65..6b417660cc 100755 --- a/tests/envsetup_tests.sh +++ b/tests/envsetup_tests.sh @@ -1,37 +1,22 @@ #!/bin/bash -e +# Copyright (C) 2022 The Android Open Source Project +# +# 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. -source $(dirname $0)/../envsetup.sh - -unset TARGET_PRODUCT TARGET_BUILD_VARIANT TARGET_PLATFORM_VERSION - -function check_lunch -( - echo lunch $1 - set +e - lunch $1 > /dev/null 2> /dev/null - set -e - [ "$TARGET_PRODUCT" = "$2" ] || ( echo "lunch $1: expected TARGET_PRODUCT='$2', got '$TARGET_PRODUCT'" && exit 1 ) - [ "$TARGET_BUILD_VARIANT" = "$3" ] || ( echo "lunch $1: expected TARGET_BUILD_VARIANT='$3', got '$TARGET_BUILD_VARIANT'" && exit 1 ) - [ "$TARGET_PLATFORM_VERSION" = "$4" ] || ( echo "lunch $1: expected TARGET_PLATFORM_VERSION='$4', got '$TARGET_PLATFORM_VERSION'" && exit 1 ) +tests=( + $(dirname $0)/lunch_tests.sh ) -default_version=$(get_build_var DEFAULT_PLATFORM_VERSION) -valid_version=PPR1 - -# lunch tests -check_lunch "aosp_arm64" "aosp_arm64" "eng" "" -check_lunch "aosp_arm64-userdebug" "aosp_arm64" "userdebug" "" -check_lunch "aosp_arm64-userdebug-$default_version" "aosp_arm64" "userdebug" "$default_version" -check_lunch "aosp_arm64-userdebug-$valid_version" "aosp_arm64" "userdebug" "$valid_version" -check_lunch "abc" "" "" "" -check_lunch "aosp_arm64-abc" "" "" "" -check_lunch "aosp_arm64-userdebug-abc" "" "" "" -check_lunch "aosp_arm64-abc-$valid_version" "" "" "" -check_lunch "abc-userdebug-$valid_version" "" "" "" -check_lunch "-" "" "" "" -check_lunch "--" "" "" "" -check_lunch "-userdebug" "" "" "" -check_lunch "-userdebug-" "" "" "" -check_lunch "-userdebug-$valid_version" "" "" "" -check_lunch "aosp_arm64-userdebug-$valid_version-" "" "" "" -check_lunch "aosp_arm64-userdebug-$valid_version-abc" "" "" "" +for test in $tests; do + bash -x $test +done diff --git a/tests/lunch_tests.sh b/tests/lunch_tests.sh new file mode 100755 index 0000000000..4285d13cc4 --- /dev/null +++ b/tests/lunch_tests.sh @@ -0,0 +1,48 @@ +#!/usr/bin/env bash +# Copyright (C) 2022 The Android Open Source Project +# +# 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. + +source $(dirname $0)/../envsetup.sh + +unset TARGET_PRODUCT TARGET_BUILD_VARIANT TARGET_PLATFORM_VERSION + +function check_lunch +( + echo lunch $1 + set +e + lunch $1 > /dev/null 2> /dev/null + set -e + [ "$TARGET_PRODUCT" = "$2" ] || ( echo "lunch $1: expected TARGET_PRODUCT='$2', got '$TARGET_PRODUCT'" && exit 1 ) + [ "$TARGET_BUILD_VARIANT" = "$3" ] || ( echo "lunch $1: expected TARGET_BUILD_VARIANT='$3', got '$TARGET_BUILD_VARIANT'" && exit 1 ) + [ "$TARGET_PLATFORM_VERSION" = "$4" ] || ( echo "lunch $1: expected TARGET_PLATFORM_VERSION='$4', got '$TARGET_PLATFORM_VERSION'" && exit 1 ) +) + +default_version=$(get_build_var DEFAULT_PLATFORM_VERSION) + +# lunch tests +check_lunch "aosp_arm64" "aosp_arm64" "eng" "" +check_lunch "aosp_arm64-userdebug" "aosp_arm64" "userdebug" "" +check_lunch "aosp_arm64-userdebug-$default_version" "aosp_arm64" "userdebug" "$default_version" +check_lunch "abc" "" "" "" +check_lunch "aosp_arm64-abc" "" "" "" +check_lunch "aosp_arm64-userdebug-abc" "" "" "" +check_lunch "aosp_arm64-abc-$default_version" "" "" "" +check_lunch "abc-userdebug-$default_version" "" "" "" +check_lunch "-" "" "" "" +check_lunch "--" "" "" "" +check_lunch "-userdebug" "" "" "" +check_lunch "-userdebug-" "" "" "" +check_lunch "-userdebug-$default_version" "" "" "" +check_lunch "aosp_arm64-userdebug-$default_version-" "" "" "" +check_lunch "aosp_arm64-userdebug-$default_version-abc" "" "" ""