summaryrefslogtreecommitdiff
path: root/tests/automotive/mobly_tests/sms/bt_sms_read_messagebd_sync_test.py
blob: 7b4be1711b05b966acf40bc04e2f0e0ef829db01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#  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.
#
#  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 utilities import constants
from utilities.main_utils import common_main
from utilities.common_utils import CommonUtils
from bluetooth_sms_test import bluetooth_sms_base_test
from mobly.controllers import android_device

class SMSReadMessageDBSync(bluetooth_sms_base_test.BluetoothSMSBaseTest):

    def setup_class(self):
        super().setup_class()
        self.common_utils = CommonUtils(self.target, self.discoverer)

    def setup_test(self):

        # pair the devices
        self.bt_utils.pair_primary_to_secondary()

        # wait for user permissions popup & give contacts and sms permissions
        self.call_utils.wait_with_log(20)
        self.common_utils.click_on_ui_element_with_text('Allow')

        # Clearing the sms from the phone
        self.call_utils.clear_sms_app(self.target)
        # Reboot Phone
        self.target.unload_snippet('mbs')
        self.call_utils.reboot_device(self.target)
        self.call_utils.wait_with_log(30)
        self.target.load_snippet('mbs', android_device.MBS_PACKAGE)

    def test_read_sms_messagedb_sync(self):
        # Open the sms app
        self.call_utils.open_sms_app()

        # Verify that there is no new sms currently
        #self.call_utils.verify_sms_app_unread_message(False)

        # send a new sms
        target_phone_number = self.target.mbs.getPhoneNumber()
        self.phone_notpaired.mbs.sendSms(target_phone_number,constants.SMS_TEXT)
        self.call_utils.wait_with_log(10)

        # Verify the new UNREAD sms in IVI device
        self.call_utils.open_sms_app()
        self.call_utils.verify_sms_app_unread_message(True)

        # READ the message on paired phone
        self.call_utils.open_notification_on_phone(self.target)
        self.call_utils.wait_with_log(5)
        self.target.mbs.clickUIElementWithText(constants.SMS_TEXT)

        # Verify the SYNC READ sms in IVI device
        self.call_utils.press_home()
        self.call_utils.open_sms_app()
        self.call_utils.verify_sms_app_unread_message(False)
        self.call_utils.verify_sms_preview_timestamp(True)

    def teardown_test(self):
         # Go to home screen
         self.call_utils.press_home()
         super().teardown_test()

if __name__ == '__main__':
  common_main()