Skip to content

Commit

Permalink
Automate test_positive_ansible_variables_imported_with_roles
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Talreja <[email protected]>
  • Loading branch information
Gauravtalreja1 committed Sep 20, 2024
1 parent 48c081e commit 3a73223
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 18 deletions.
6 changes: 6 additions & 0 deletions robottelo/cli/ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,9 @@ def variables_info(cls, options=None):
"""Information about ansible variables"""
cls.command_sub = 'variables info'
return cls.execute(cls._construct_command(options), output_format='csv')

@classmethod
def variables_list(cls, options=None):
"""Information about ansible variables"""
cls.command_sub = 'variables list'
return cls.execute(cls._construct_command(options), output_format='csv')
11 changes: 10 additions & 1 deletion robottelo/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,8 @@ def register(
force=False,
insecure=True,
hostgroup=None,
auth_username=None,
auth_password=None,
):
"""Registers content host to the Satellite or Capsule server
using a global registration template.
Expand All @@ -642,6 +644,8 @@ def register(
:param force: Register the content host even if it's already registered.
:param insecure: Don't verify server authenticity.
:param hostgroup: hostgroup to register with
:param auth_username: username required if non-admin user
:param auth_password: password required if non-admin user
:return: SSHCommandResult instance filled with the result of the registration
"""
options = {
Expand Down Expand Up @@ -692,7 +696,12 @@ def register(
options['force'] = str(force).lower()

self._satellite = target.satellite
cmd = target.satellite.cli.HostRegistration.generate_command(options)
if auth_username and auth_password:
cmd = target.satellite.cli.HostRegistration.with_user(
auth_username, auth_password
).generate_command(options)
else:
cmd = target.satellite.cli.HostRegistration.generate_command(options)
return self.execute(cmd.strip('\n'))

def api_register(self, target, **kwargs):
Expand Down
109 changes: 108 additions & 1 deletion tests/foreman/cli/test_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@

from fauxfactory import gen_string
import pytest
import yaml

from robottelo.config import settings
from robottelo.config import (
robottelo_tmp_dir,
settings,
)
from robottelo.exceptions import CLIFactoryError
from robottelo.utils.issue_handlers import is_open


def assert_job_invocation_result(
Expand Down Expand Up @@ -561,3 +566,105 @@ def test_positive_install_ansible_collection(
assert result['success'] == '1'
collection_path = client.execute('ls ~/ansible_collections').stdout
assert 'oasis_roles' in collection_path

@pytest.mark.tier3
@pytest.mark.no_containers
@pytest.mark.rhel_ver_list([settings.content_host.default_rhel_version])
@pytest.mark.parametrize('auth_type', ['admin', 'non-admin'])
def test_positive_ansible_variables_imported_with_roles(
self, request, auth_type, target_sat, module_org, module_ak_with_cv, rhel_contenthost
):
"""Verify that, when Ansible roles are imported, their variables are imported simultaneously
:id: 107c53e8-5a8a-4291-bbde-fbd66a0bb85e
:steps:
1. Import Ansible roles
2. Navigate to Configure > Variables
:expectedresults: Verify that any variables in the role were also imported to Satellite
:verifies: SAT-28198
"""
username = settings.server.admin_username
password = settings.server.admin_password
if auth_type == 'non-admin':
username = gen_string('alpha')
user = target_sat.cli_factory.user(
{
'admin': False,
'login': username,
'password': password,
'organization-ids': module_org.id,
}
)
request.addfinalizer(user.delete)
target_sat.cli.User.add_role(
{'id': user['id'], 'login': username, 'role': 'Ansible Roles Manager'}
)

@request.addfinalizer
def _finalize():
result = target_sat.cli.Ansible.roles_delete({'name': SELECTED_ROLE})
assert f'Ansible role [{SELECTED_ROLE}] was deleted.' in result[0]['message']
target_sat.execute(f'rm -rvf /etc/ansible/roles/{SELECTED_ROLE}')

SELECTED_ROLE = gen_string('alphanumeric')
playbook = f'{robottelo_tmp_dir}/playbook.yml'
vars = f'{robottelo_tmp_dir}/vars.yml'
target_sat.execute(f'ansible-galaxy init --init-path /etc/ansible/roles/ {SELECTED_ROLE}')
tasks_file = '/etc/ansible/roles/test_role/tasks/main.yml'
vars_file = f'/etc/ansible/roles/test_role/{"defaults" if is_open("SAT-28198") else "vars"}/main.yml'
tasks_main = [
{
'name': 'Copy SSH keys',
'copy': {
'src': '/var/lib/foreman-proxy/ssh/{{ item }}',
'dest': '/root/.ssh',
'owner': 'root',
'group': 'root',
'mode': '0400',
},
'loop': '{{ ssh_keys }}',
}
]
vars_main = {'ssh_keys': ['id_rsa_foreman_proxy.pub', 'id_rsa_foreman_proxy']}
with open(playbook, 'w') as f:
yaml.dump(tasks_main, f, sort_keys=False, default_flow_style=False)
with open(vars, 'w') as f:
yaml.dump(vars_main, f, sort_keys=False, default_flow_style=False)
target_sat.put(playbook, tasks_file)
target_sat.put(vars, vars_file)

result = rhel_contenthost.register(
module_org,
None,
module_ak_with_cv.name,
target_sat,
auth_username=username,
auth_password=password,
)
assert result.status == 0, f'Failed to register host: {result.stderr}'
proxy_id = target_sat.nailgun_smart_proxy.id
target_host = rhel_contenthost.nailgun_host
target_sat.cli.Ansible.with_user(username, password).roles_sync(
{'role-names': SELECTED_ROLE, 'proxy-id': proxy_id}
)
result = target_sat.cli.Host.with_user(username, password).ansible_roles_assign(
{'id': target_host.id, 'ansible-roles': f'{SELECTED_ROLE}'}
)
assert 'Ansible roles were assigned to the host' in result[0]['message']

result = target_sat.cli.Ansible.with_user(username, password).variables_list(
{'search': f'ansible_role="{SELECTED_ROLE}"'}
)
assert result[0]['variable'] == 'ssh_keys'

job_id = target_sat.cli.Host.ansible_roles_play({'name': rhel_contenthost.hostname})[0].get(
'id'
)
target_sat.wait_for_tasks(
f'resource_type = JobInvocation and resource_id = {job_id} and action ~ "hosts job"'
)
result = target_sat.cli.JobInvocation.info({'id': job_id})['success']
assert result == '1'
16 changes: 0 additions & 16 deletions tests/foreman/ui/test_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,22 +250,6 @@ def test_positive_role_variable_information(self):
:expectedresults: The variables information for the given Host is visible.
"""

@pytest.mark.stubbed
@pytest.mark.tier3
def test_positive_ansible_variables_imported_with_roles(self):
"""Verify that, when Ansible roles are imported, their variables are imported simultaneously
:id: 107c53e8-5a8a-4291-bbde-fbd66a0bb85e
:steps:
1. Import Ansible roles
2. Navigate to Configure > Variables
:expectedresults: Verify that any variables in the role were also imported to Satellite
:CaseAutomation: NotAutomated
"""

@pytest.mark.stubbed
@pytest.mark.tier3
def test_positive_ansible_roles_ignore_list(self):
Expand Down

0 comments on commit 3a73223

Please sign in to comment.