You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
README.md v811_spc009_project 4 months ago
__init__.py v811_spc009_project 4 months ago
action_context.py v811_spc009_project 4 months ago
actions.py v811_spc009_project 4 months ago
actions_unittest.py v811_spc009_project 4 months ago
cfm_test.py v811_spc009_project 4 months ago
configurable_cfm_test.py v811_spc009_project 4 months ago
configurable_cfm_test_unittest.py v811_spc009_project 4 months ago
configuration.py v811_spc009_project 4 months ago
dsl.py v811_spc009_project 4 months ago
scenario.py v811_spc009_project 4 months ago

README.md

Configurable CfM Tests

The Configurable CfM Tests modules allow creating test scenarios using an API that clearly describes the steps executed. A sample of a configurable CfM test is:

CfmTest(
    scenario=Scenario(
        CreateMeeting(),
        RepeatTimes(5, Scenario(
            MuteMicrophone(),
            UnmuteMicrophone()
        )),
        LeaveMeeting(),
        AssertUsbDevices(ATRUS),
        AssertFileDoesNotContain('/var/log/messages', ['FATAL ERROR'])
    ),
    configuration=Configuration(
        run_test_only = False
    )
)

This test creates a meeting, mutes and unmutes the microphone five times and leaves the meeting. It then verifies that an ATRUS device is visible and that the log file /var/log/messages does not contains FATAL ERROR.

A configurable test can be setup in a control file so that third parties that have no easy way to modify other source code can create and modify such tests.

For the test to be executed properly it has to subclass autotest_lib.server.cros.cfm.configurable_test.configurable_cfm_tests.ConfigurableCfmTest.

Actions

Each step in a scenario is an Action. The available actions are listed in autotest_lib.server.cros.cfm.configurable_test.actions.

Configuration

Besides Actions, a test can be configured with configuration params that affect behavior outside of the actions. The available configuration flags are documented in autotest_lib.server.cros.cfm.configurable_test.configuration.

Samples

For complete samples see the Autotest enterprise_CFM_ConfigurableCfmTestSanity that we use to test the framework itself.