1# Copyright (c) 2021 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = "[email protected]" 6NAME = "cellular_Callbox_AssertSMS" 7ATTRIBUTES = "suite:cellular_callbox" 8TIME = "SHORT" 9TEST_CATEGORY = "Functional" 10TEST_TYPE = "server" 11PY_VERSION = 3 12DOC = """ 13This test asserts the functionality of SMS messages on Chromebooks. It does so 14by connecting to a CMW500 Callbox, setting the SMS message to a unique string, 15sending the message, then asserting that the message is received by the 16Chromebook. 17""" 18 19def run_test(machine): 20 host = hosts.create_host(machine) 21 job.run_test('cellular_Callbox_AssertSMS', host=host) 22 23parallel_simple(run_test, machines) 24