• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5import time
6
7from autotest_lib.server.cros.cfm import cfm_base_test
8
9LONG_TIMEOUT = 10
10
11
12class enterprise_CFM_MeetAppSanity(cfm_base_test.CfmBaseTest):
13    """
14    Basic sanity test for Meet App to be expanded to cover more cases like
15    enterprise_CFM_Sanity test.
16    """
17    version = 1
18
19
20    def run_once(self):
21        """Runs the test."""
22        # Following triggers new Thor/Meetings APIs.
23        self.cfm_facade.wait_for_telemetry_commands()
24        self.cfm_facade.start_meeting_session()
25        time.sleep(LONG_TIMEOUT)
26        self.cfm_facade.end_meeting_session()
27
28