Skip to content

Commit

Permalink
[6.15.z] virt-who config SCA-compliant (#14776)
Browse files Browse the repository at this point in the history
virt-who config SCA-compliant (#14775)

(cherry picked from commit 21e1d41)

Co-authored-by: yanpliu <[email protected]>
  • Loading branch information
Satellite-QE and yanpliu authored Apr 15, 2024
1 parent 0880008 commit 02608e0
Showing 1 changed file with 9 additions and 39 deletions.
48 changes: 9 additions & 39 deletions tests/upgrades/test_virtwho.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class TestScenarioPositiveVirtWho:

@pytest.mark.pre_upgrade
def test_pre_create_virt_who_configuration(
self, form_data, save_test_data, target_sat, function_entitlement_manifest
self, form_data, save_test_data, target_sat, module_sca_manifest_org
):
"""Create and deploy virt-who configuration.
Expand All @@ -69,57 +69,27 @@ def test_pre_create_virt_who_configuration(
1. Config can be created and deployed by command.
2. No error msg in /var/log/rhsm/rhsm.log.
3. Report is sent to satellite.
4. Virtual sku can be generated and attached.
"""
org = target_sat.api.Organization(name=ORG_DATA['name']).create()
target_sat.api.Location(organization=[org]).create()
org.sca_disable()
target_sat.upload_manifest(org.id, function_entitlement_manifest.content)
form_data.update({'organization_id': org.id})
form_data.update({'organization_id': module_sca_manifest_org.id})
vhd = target_sat.api.VirtWhoConfig(**form_data).create()
assert vhd.status == 'unknown'
command = get_configure_command(vhd.id, org=org.name)
command = get_configure_command(vhd.id, org=module_sca_manifest_org.name)
hypervisor_name, guest_name = deploy_configure_by_command(
command, form_data['hypervisor_type'], debug=True, org=org.label
command, form_data['hypervisor_type'], debug=True, org=module_sca_manifest_org.label
)
virt_who_instance = (
target_sat.api.VirtWhoConfig(organization_id=org.id)
target_sat.api.VirtWhoConfig(organization_id=module_sca_manifest_org.id)
.search(query={'search': f'name={form_data["name"]}'})[0]
.status
)
assert virt_who_instance == 'ok'
hosts = [
(hypervisor_name, f'product_id={settings.virtwho.sku.vdc_physical} and type=NORMAL'),
(guest_name, f'product_id={settings.virtwho.sku.vdc_physical} and type=STACK_DERIVED'),
]
for hostname, sku in hosts:
host = target_sat.cli.Host.list({'search': hostname})[0]
subscriptions = target_sat.cli.Subscription.list(
{'organization-id': org.id, 'search': sku}
)
vdc_id = subscriptions[0]['id']
if 'type=STACK_DERIVED' in sku:
for item in subscriptions:
if hypervisor_name.lower() in item['type']:
vdc_id = item['id']
break
target_sat.api.HostSubscription(host=host['id']).add_subscriptions(
data={'subscriptions': [{'id': vdc_id, 'quantity': 'Automatic'}]}
)
result = (
target_sat.api.Host(organization=org.id)
.search(query={'search': hostname})[0]
.read_json()
)
assert result['subscription_status_label'] == 'Fully entitled'

save_test_data(
{
'hypervisor_name': hypervisor_name,
'guest_name': guest_name,
'org_id': org.id,
'org_name': org.name,
'org_label': org.label,
'org_id': module_sca_manifest_org.id,
'org_name': module_sca_manifest_org.name,
'org_label': module_sca_manifest_org.label,
'name': vhd.name,
}
)
Expand Down Expand Up @@ -174,7 +144,7 @@ def test_post_crud_virt_who_configuration(self, form_data, pre_upgrade_data, tar
.search(query={'search': hostname})[0]
.read_json()
)
assert result['subscription_status_label'] == 'Fully entitled'
assert result['subscription_status_label'] == 'Simple Content Access'

# Verify the virt-who config-file exists.
config_file = get_configure_file(vhd.id)
Expand Down

0 comments on commit 02608e0

Please sign in to comment.