forked from os-autoinst/os-autoinst-distri-opensuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request os-autoinst#20199 from okynos/165830-integrate-s390x
Integrate the web automation script for agama in openQA
- Loading branch information
Showing
5 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# SUSE's openQA tests | ||
# | ||
# Copyright 2024 SUSE LLC | ||
# SPDX-License-Identifier: FSFAP | ||
|
||
# Summary: Handles installation reboot screen for textmode display. | ||
# Maintainer: QE YaST and Migration (QE Yam) <qe-yam at suse de> | ||
|
||
package Yam::Agama::Pom::RebootTextmodePage; | ||
use strict; | ||
use warnings; | ||
|
||
use testapi; | ||
|
||
sub new { | ||
my ($class, $args) = @_; | ||
return bless {}, $class; | ||
} | ||
|
||
sub reboot { | ||
my ($self) = @_; | ||
enter_cmd 'reboot'; | ||
} | ||
|
||
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: agama | ||
description: > | ||
Perform interactive installation with agama. | ||
schedule: | ||
- yam/agama/boot_agama | ||
- yam/agama/patch_agama_tests | ||
- yam/agama/agama | ||
- boot/reconnect_mgmt_console | ||
- installation/grub_test | ||
- installation/first_boot | ||
- yam/validate/validate_product | ||
- yam/validate/validate_user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters