Skip to content

Commit

Permalink
Remove the sub-man status (SatelliteQE#14783)
Browse files Browse the repository at this point in the history
  • Loading branch information
shweta83 committed Apr 17, 2024
1 parent fbb3f0f commit 320db84
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 52 deletions.
60 changes: 60 additions & 0 deletions tests/foreman/cli/test_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@
:Team: Rocket
"""
import re

from fauxfactory import gen_string
import pytest

from robottelo.config import settings
from robottelo.constants import CLIENT_PORT
from robottelo.exceptions import CLIReturnCodeError

pytestmark = pytest.mark.tier1

Expand Down Expand Up @@ -164,3 +168,59 @@ def test_negative_register_twice(module_ak_with_cv, module_org, rhel_contenthost
# host being already registered.
assert result.status == 1
assert 'This system is already registered' in str(result.stderr)


@pytest.mark.rhel_ver_match('[^6]')
@pytest.mark.tier3
def test_positive_force_register_twice(module_ak_with_cv, module_org, rhel_contenthost, target_sat):
"""Register a host twice to Satellite, with force=true
:id: 7ccd4efd-54bb-4207-9acf-4c6243a32fab
:expectedresults: Host will be re-registered
:parametrized: yes
:BZ: 1361309
:customerscenario: true
"""
reg_id_pattern = r"The system has been registered with ID: ([^\n]*)"
name = gen_string('alpha') + ".example.com"
rhel_contenthost.execute(f'hostnamectl set-hostname {name}')
result = rhel_contenthost.register(module_org, None, module_ak_with_cv.name, target_sat)
reg_id_old = re.search(reg_id_pattern, result.stdout).group(1)
assert result.status == 0
assert rhel_contenthost.subscribed
result = rhel_contenthost.register(
module_org, None, module_ak_with_cv.name, target_sat, force=True
)
assert result.status == 0
assert rhel_contenthost.subscribed
assert f'Unregistering from: {target_sat.hostname}' in str(result.stdout)
assert f'The registered system name is: {rhel_contenthost.hostname}' in str(result.stdout)
reg_id_new = re.search(reg_id_pattern, result.stdout).group(1)
assert f'The system has been registered with ID: {reg_id_new}' in str(result.stdout)
assert reg_id_new != reg_id_old
assert (
target_sat.cli.Host.info({'name': rhel_contenthost.hostname}, output_format='json')[
'subscription-information'
]['uuid']
== reg_id_new
)


@pytest.mark.tier1
def test_negative_global_registration_without_ak(module_target_sat):
"""Attempt to register a host without ActivationKey
:id: e48a6260-97e0-4234-a69c-77bbbcde85df
:expectedresults: Generate command is disabled without ActivationKey
"""
with pytest.raises(CLIReturnCodeError) as context:
module_target_sat.cli.HostRegistration.generate_command(options=None)
assert (
'Failed to generate registration command:\n Missing activation key!'
in context.value.message
)
52 changes: 0 additions & 52 deletions tests/foreman/ui/test_jobinvocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,55 +117,3 @@ def test_positive_run_custom_job_template_by_ip(
)
status = session.jobinvocation.read(entity_name=job_description, host_name=hostname)
assert status['overview']['hosts_table'][0]['Status'] == 'success'


@pytest.mark.stubbed
@pytest.mark.tier2
def test_positive_schedule_recurring_host_job(self):
"""Using the new Host UI, schedule a recurring job on a Host
:id: 5052be04-28ab-4349-8bee-851ef76e4ffa
:caseComponent: Ansible-RemoteExecution
:Team: Rocket
:steps:
1. Register a RHEL host to Satellite.
2. Import all roles available by default.
3. Assign a role to host.
4. Navigate to the new UI for the given Host.
5. Select the Jobs subtab.
6. Click the Schedule Recurring Job button, and using the popup, schedule a
recurring Job.
7. Navigate to Job Invocations.
:expectedresults: The scheduled Job appears in the Job Invocation list at the appointed
time
"""


@pytest.mark.stubbed
@pytest.mark.tier2
def test_positive_schedule_recurring_hostgroup_job(self):
"""Using the new recurring job scheduler, schedule a recurring job on a Hostgroup
:id: c65db99b-11fe-4a32-89d0-0a4692b07efe
:caseComponent: Ansible-RemoteExecution
:Team: Rocket
:steps:
1. Register a RHEL host to Satellite.
2. Import all roles available by default.
3. Assign a role to host.
4. Navigate to the Host Group page.
5. Select the "Configure Ansible Job" action.
6. Click the Schedule Recurring Job button, and using the popup, schedule a
recurring Job.
7. Navigate to Job Invocations.
:expectedresults: The scheduled Job appears in the Job Invocation list at the appointed
time
"""

0 comments on commit 320db84

Please sign in to comment.