2022-09-21 12:16:58 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This script tests that users can switch between the three main regimes.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
# wait for the restore to settle down
|
|
|
|
wait_still_screen 3;
|
2023-10-17 22:10:32 +00:00
|
|
|
assert_and_click("sysmon_fsystems_button");
|
2022-09-21 12:16:58 +00:00
|
|
|
assert_screen("sysmon_fsystems_shown");
|
|
|
|
|
2023-10-17 22:10:32 +00:00
|
|
|
assert_and_click("sysmon_processes_button");
|
2022-09-21 12:16:58 +00:00
|
|
|
assert_screen("sysmon_processes_shown");
|
|
|
|
|
2023-10-17 22:10:32 +00:00
|
|
|
assert_and_click("sysmon_resources_button");
|
2022-09-21 12:16:58 +00:00
|
|
|
assert_screen("sysmon_resources_shown");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
|