-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
11 changed files
with
163 additions
and
433 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
Empty file.
This file was deleted.
Oops, something went wrong.
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 +1,7 @@ | ||
"""Tests for ansible plugin.""" | ||
|
||
try: | ||
from pulp_ansible.tests.functional.conftest import * # noqa | ||
|
||
except ImportError: | ||
pass |
165 changes: 0 additions & 165 deletions
165
pulp_ansible/tests/functional/api/role/test_crd_distribution.py
This file was deleted.
Oops, something went wrong.
76 changes: 76 additions & 0 deletions
76
pulp_ansible/tests/functional/api/role/test_crud_distribution.py
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,76 @@ | ||
"""CRUD tests for AnsibleDistribution.""" | ||
|
||
import pytest | ||
from collections import namedtuple | ||
|
||
from pulpcore.client.pulp_ansible import ApiException | ||
|
||
|
||
FakeRepository = namedtuple("FakeRepository", "pulp_href") | ||
|
||
|
||
@pytest.mark.parallel | ||
def test_crud_distribution( | ||
ansible_distro_api_client, | ||
ansible_role_remote_factory, | ||
ansible_sync_factory, | ||
ansible_distribution_factory, | ||
monitor_task, | ||
): | ||
repository = ansible_sync_factory(remote=ansible_role_remote_factory().pulp_href) | ||
distribution = ansible_distribution_factory(repository=repository) | ||
assert distribution.repository == repository.pulp_href | ||
assert distribution.repository_version is None | ||
|
||
with pytest.raises(ApiException) as exc_info: | ||
fake_repository = FakeRepository( | ||
pulp_href=repository.pulp_href[:-37] + "00000000-0000-0000-0000-000000000000/" | ||
) | ||
ansible_distribution_factory(repository=fake_repository) | ||
assert "Invalid hyperlink - Object does not exist." in exc_info.value.body | ||
|
||
with pytest.raises(ApiException) as exc_info: | ||
ansible_distro_api_client.partial_update( | ||
distribution.pulp_href, {"repository": "this-is-invalid"} | ||
) | ||
assert "Invalid hyperlink - No URL match." in exc_info.value.body | ||
|
||
ansible_distro_api_client.partial_update(distribution.pulp_href, {"repository": None}) | ||
monitor_task( | ||
ansible_distro_api_client.partial_update( | ||
distribution.pulp_href, {"repository_version": repository.latest_version_href} | ||
).task | ||
) | ||
distribution = ansible_distro_api_client.read(distribution.pulp_href) | ||
assert distribution.repository is None | ||
assert distribution.repository_version == repository.latest_version_href | ||
|
||
if not False: | ||
# TODO This fails by complaining repository and version cannot be used together. | ||
body = { | ||
"name": distribution.name, | ||
"base_path": distribution.base_path, | ||
"repository": repository.pulp_href, | ||
} | ||
monitor_task(ansible_distro_api_client.update(distribution.pulp_href, body).task) | ||
distribution = ansible_distro_api_client.read(distribution.pulp_href) | ||
assert distribution.repository == repository.pulp_href | ||
assert distribution.repository_version is None | ||
|
||
body = { | ||
"name": distribution.name, | ||
"base_path": distribution.base_path, | ||
"repository": repository.pulp_href, | ||
"repository_version": repository.latest_version_href, | ||
} | ||
with pytest.raises(ApiException) as exc_info: | ||
ansible_distro_api_client.update(distribution.pulp_href, body) | ||
assert ( | ||
"Only one of the attributes 'repository' and 'repository_version' may be used simultaneously." | ||
in exc_info.value.body | ||
) | ||
|
||
monitor_task(ansible_distro_api_client.delete(distribution.pulp_href).task) | ||
with pytest.raises(ApiException) as exc_info: | ||
ansible_distro_api_client.delete(distribution.pulp_href) | ||
assert "Not found." in exc_info.value.body |
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.