mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-22 05:01:25 +00:00
add a realmd_join_sssd test, and use DHCP for it and cockpit
Summary: This is a pretty straightforward IPA joining test. Since I figured out how to set up a DHCP server for support_server, let's do the same for the domain controller so we can simplify these enrolment tests a bit. We also extend the timeout on installing haveged on the server a bit (2 minutes is a bit low when it hits a slow metadata download), and drop an unnecessary clone_host_file from the cockpit join test (it was only there for testing and the next operation immediately overwrites it). Test Plan: Do a full server DVD test run, check the new test works and none of the others broke. Reviewers: garretraziel Reviewed By: garretraziel Subscribers: tflink Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D894
This commit is contained in:
parent
8066beba91
commit
5f5021530d
26
templates
26
templates
@ -391,6 +391,17 @@
|
|||||||
},
|
},
|
||||||
test_suite => { name => "realmd_join_cockpit" },
|
test_suite => { name => "realmd_join_cockpit" },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
machine => { name => "64bit" },
|
||||||
|
prio => 30,
|
||||||
|
product => {
|
||||||
|
arch => "x86_64",
|
||||||
|
distri => "fedora",
|
||||||
|
flavor => "Server-dvd-iso",
|
||||||
|
version => "*",
|
||||||
|
},
|
||||||
|
test_suite => { name => "realmd_join_sssd" },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
machine => { name => "64bit" },
|
machine => { name => "64bit" },
|
||||||
prio => 10,
|
prio => 10,
|
||||||
@ -1840,6 +1851,21 @@
|
|||||||
{ key => "WORKER_CLASS", value => "tap" },
|
{ key => "WORKER_CLASS", value => "tap" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name => "realmd_join_sssd",
|
||||||
|
settings => [
|
||||||
|
{ key => "POSTINSTALL", value => "realmd_join_sssd freeipa_client" },
|
||||||
|
{ key => "USER_LOGIN", value => "false" },
|
||||||
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
|
{ key => "START_AFTER_TEST", value => "install_default_upload" },
|
||||||
|
{ key => "PARALLEL_WITH", value => "server_role_deploy_domain_controller" },
|
||||||
|
{ key => "BOOTFROM", value => "c" },
|
||||||
|
{ key => "HDD_1", value => "disk_%FLAVOR%_%MACHINE%.qcow2" },
|
||||||
|
{ key => "GRUB_POSTINSTALL", value => "net.ifnames=0 biosdevname=0" },
|
||||||
|
{ key => "NICTYPE", value => "tap" },
|
||||||
|
{ key => "WORKER_CLASS", value => "tap" },
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name => "desktop_terminal",
|
name => "desktop_terminal",
|
||||||
settings => [
|
settings => [
|
||||||
|
@ -11,8 +11,6 @@ sub run {
|
|||||||
$self->clone_host_file("/etc/hosts");
|
$self->clone_host_file("/etc/hosts");
|
||||||
# set up networking
|
# set up networking
|
||||||
$self->setup_tap_static("10.0.2.102", "client002.domain.local");
|
$self->setup_tap_static("10.0.2.102", "client002.domain.local");
|
||||||
# test
|
|
||||||
$self->clone_host_file("/etc/resolv.conf");
|
|
||||||
# use FreeIPA server as DNS server
|
# use FreeIPA server as DNS server
|
||||||
assert_script_run "printf 'search domain.local\nnameserver 10.0.2.100' > /etc/resolv.conf";
|
assert_script_run "printf 'search domain.local\nnameserver 10.0.2.100' > /etc/resolv.conf";
|
||||||
# wait for the server to be ready (do it now just to make sure name
|
# wait for the server to be ready (do it now just to make sure name
|
||||||
|
36
tests/realmd_join_sssd_postinstall.pm
Normal file
36
tests/realmd_join_sssd_postinstall.pm
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
use base "installedtest";
|
||||||
|
use strict;
|
||||||
|
use testapi;
|
||||||
|
use lockapi;
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my $self=shift;
|
||||||
|
# clone host's /etc/hosts (for phx2 internal routing to work)
|
||||||
|
# must come *before* setup_tap_static or else it would overwrite
|
||||||
|
# its changes
|
||||||
|
$self->clone_host_file("/etc/hosts");
|
||||||
|
# set up networking
|
||||||
|
$self->setup_tap_static("10.0.2.103", "client003.domain.local");
|
||||||
|
# use FreeIPA server as DNS server
|
||||||
|
assert_script_run "printf 'search domain.local\nnameserver 10.0.2.100' > /etc/resolv.conf";
|
||||||
|
# wait for the server to be ready (do it now just to make sure name
|
||||||
|
# resolution is working before we proceed)
|
||||||
|
mutex_lock "freeipa_ready";
|
||||||
|
mutex_unlock "freeipa_ready";
|
||||||
|
# disable updates-testing
|
||||||
|
assert_script_run 'dnf config-manager --set-disabled updates-testing';
|
||||||
|
# do the enrolment
|
||||||
|
assert_script_run "echo 'monkeys123' | realm join --user=admin ipa001.domain.local", 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub test_flags {
|
||||||
|
# without anything - rollback to 'lastgood' snapshot if failed
|
||||||
|
# 'fatal' - whole test suite is in danger if this fails
|
||||||
|
# 'milestone' - after this test succeeds, update 'lastgood'
|
||||||
|
# 'important' - if this fails, set the overall state to 'fail'
|
||||||
|
return { fatal => 1 };
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
# vim: set sw=4 et:
|
Loading…
Reference in New Issue
Block a user