#  Copyright (C) 2023 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.


from bluetooth_test import bluetooth_base_test
from mobly import asserts
from utilities.main_utils import common_main


class DeviceNotPairedTest(bluetooth_base_test.BluetoothBaseTest):

    def setup_test(self):
        """Enable and disable BT on Head unit"""
        super().setup_test()

    def test_device_not_paired(self):
        """Tests lunch Bluetooth Audio app and verify <Bluetooth Disconnected> displayed."""
        self.discoverer.mbs.btDisable()
        self.call_utils.open_bluetooth_media_app()
        self.call_utils.wait_with_log(5)
        if not self.call_utils.is_bluetooth_audio_disconnected_label_visible():
            self.call_utils.wait_with_log(60)
        asserts.assert_true(self.call_utils.is_bluetooth_audio_disconnected_label_visible(),
                            '<Bluetooth Audio disconnected> label should be present')

    def teardown_test(self):
        self.call_utils.press_home()
        super().teardown_test()

if __name__ == '__main__':
    common_main()

