1# Copyright 2017 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 5from autotest_lib.server import utils 6 7AUTHOR = "harpreet@chromium.org" 8NAME = "enterprise_CFM_MeetAppSanity" 9TIME = "SHORT" 10TEST_CATEGORY = "Functional" 11TEST_CLASS = "enterprise" 12TEST_TYPE = "server" 13ATTRIBUTES = "suite:hotrod" 14DEPENDENCIES = "meet_app" 15JOB_RETRIES = 3 16 17DOC = """ 18This test clears the TPM if necessary, enrolls the device into CFM and runs a 19series of sanity test actions in the meet app. 20It clears the TPM at the end of the test run. Every time the TPM is cleared, 21the system is rebooted. 22""" 23 24def run_test(machine): 25 host = hosts.create_host(machine) 26 job.run_test('enterprise_CFM_MeetAppSanity', host=host) 27 28 29parallel_simple(run_test, machines) 30