-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '6.15.z' into cherry-pick-6.15.z-4c00785383e3a0e2c71de44…
…ce9411b41a6956f39
- Loading branch information
Showing
450 changed files
with
1,102 additions
and
347 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
FAM: | ||
SERVER: | ||
# Parameter for all tests | ||
foreman_username: admin | ||
foreman_password: "changeme" | ||
foreman_server_url: "https://foreman.example.com" | ||
foreman_validate_certs: false | ||
|
||
foreman_proxy: "foreman.example.com" | ||
|
||
# Parameter for snapshot test | ||
snapshot_host_name: "test_host" | ||
|
||
# Parameter for job invocation test | ||
foreman_host: "foreman.example.com" | ||
|
||
# Parameter for subscription_manifest test | ||
subscription_manifest_path: "data/manifest_foreman-ansible-modules.zip" | ||
|
||
# Parameter for redhat_manifest test | ||
manifest_name: "katello.example.com" | ||
rhsm_username: "john-smith" | ||
rhsm_password: "changeme" | ||
rhsm_pool_id: 8a85f99a7db4827d017dc512fcad00b0 | ||
rhsm_validate_certs: false | ||
|
||
# Parameter for scc_product test | ||
scc_account_name_for_scc_product: testaccount | ||
scc_account_login_for_scc_product: testuser | ||
scc_account_password_for_scc_product: testpass | ||
|
||
# Parameter for external_usergroup testing | ||
auth_source_ldap_host: ldap.example.com | ||
auth_source_ldap_account: ansible | ||
auth_source_ldap_account_password: pass | ||
auth_source_ldap_base_dn: dc=example,dc=com | ||
auth_source_ldap_attr_login: uid | ||
auth_source_ldap_groups_base: cn=groups,cn=accounts,dc=example,dc=com | ||
external_usergroup_name: "admins" | ||
|
||
COMPUTE_PROFILE: | ||
libvirt: | ||
compute_resource: | ||
name: libvirt-cr01 | ||
organizations: | ||
- Test Organization | ||
locations: | ||
- Test Location | ||
params: | ||
url: qemu+ssh://libvirtuser@localhost/system | ||
compute_profile: | ||
name: app-small | ||
attrs: | ||
cpus: 1 | ||
memory: 2147483648 | ||
nics_attributes: | ||
0: | ||
type: bridge | ||
bridge: "" | ||
model: virtio | ||
volumes_attributes: | ||
0: | ||
pool_name: default | ||
capacity: 10G | ||
allocation: 0G | ||
format_type: raw | ||
ovirt: | ||
compute_resource: | ||
name: ovirt-cr01 | ||
organizations: | ||
- Test Organization | ||
locations: | ||
- Test Location | ||
params: | ||
url: "https://ovirt.example.com/ovirt-engine/api" | ||
user: compute-user@internal | ||
password: ovirtcompute123 | ||
use_v4: true | ||
datacenter: c1479626-99a2-44eb-8401-14b5630f417f | ||
ovirt_quota: 502a76bb-a3fe-42f1-aed6-2a7c892a6786 | ||
compute_profile: | ||
name: app-small | ||
attrs: | ||
cluster: Devel-Infra | ||
cores: 2 | ||
sockets: 1 | ||
memory: 1073741824 | ||
ha: 0 | ||
interfaces_attributes: | ||
0: | ||
name: "" | ||
network: ovirtmgmt | ||
interface: virtio | ||
volumes_attributes: | ||
0: | ||
size_gb: '16' | ||
storage_domain: 'Local-IBM' | ||
preallocate: '1' | ||
wipe_after_delete: '0' | ||
interface: 'virtio_scsi' | ||
bootable: 'true' |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
OSCAP: | ||
CONTENT_PATH: /usr/share/xml/scap/ssg/content/ssg-rhel7-ds.xml | ||
RHEL_MAJOR_VERSION: "@jinja {{this.server.version.rhel_version | int }}" | ||
CONTENT_PATH: '@format /usr/share/xml/scap/ssg/content/ssg-rhel{this.oscap.rhel_major_version}-ds.xml' | ||
# see: robottelo/constants/__init__.py OSCAP_PROFILE | ||
PROFILE: security7 | ||
PROFILE: '@format security{this.oscap.rhel_major_version}' | ||
CONTENT_DIR: /usr/share/xml/scap/ssg/content |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Global Configurations for py.test runner""" | ||
|
||
import pytest | ||
|
||
pytest_plugins = [ | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
http://sphinx-doc.org/config.html | ||
""" | ||
|
||
import builtins | ||
import os | ||
import sys | ||
|
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
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
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
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 |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
update Update an alternate content source. | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
Options: | ||
-h, --help Print help | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
roles Manage ansible roles | ||
variables Manage ansible variables | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
list List ARF reports | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Generic base class for cli hammer commands.""" | ||
|
||
import re | ||
|
||
from wait_for import wait_for | ||
|
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
-h, --help Print help | ||
Update a compute resource. | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
list View content view export histories | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
version Imports a content archive to a content view version | ||
""" | ||
|
||
from robottelo.cli.base import Base | ||
|
||
|
||
|
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
Oops, something went wrong.