blob: 8e83b0ce600d6d85e6789d437c69eacfaeb46277 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
AUTHOR = "harpreet@chromium.org"
NAME = "enterprise_CFM_RebootStress.meet_app"
TIME = "SHORT"
TEST_CATEGORY = "Functional"
TEST_CLASS = "enterprise"
TEST_TYPE = "server"
ATTRIBUTES = "suite:hotrod-remora"
JOB_RETRIES = 3
DOC = """
This test clears the TPM, enrolls the device into CFM, launches the Meet app and
stress tests by rebooting the device multiple times using Chrome runtime
restart() API. It clear the TPM at the end of the test to reset the device.
"""
def run_test(machine):
host = hosts.create_host(machine)
job.run_test('enterprise_CFM_RebootStress',
host=host,
reboot_cycles=25,
is_meeting=True,
tag='meet_app')
parallel_simple(run_test, machines)