-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update AWX collection to use basic authentication
Update AWX collection to use basic authentication when oauth token not provided, and when username and password provided.
- Loading branch information
Showing
2 changed files
with
151 additions
and
36 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,47 @@ | ||
import os | ||
from unittest import mock | ||
|
||
import pytest | ||
|
||
@pytest.mark.parametrize( | ||
"collection_type, env_prefix, controller_host, app_key, endpoint, expected", | ||
[ | ||
# without CONTROLLER_OPTIONAL_API_URLPATTERN_PREFIX env variable | ||
["awx", None, "https://localhost:8043", None, "jobs", "https://localhost:8043/api/v2/jobs/"], | ||
["awx", None, "https://localhost:8043", None, "jobs/209", "https://localhost:8043/api/v2/jobs/209/"], | ||
["awx", None, "https://localhost", "controller", "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["awx", None, "https://localhost", "controller", "jobs/1", "https://localhost/api/controller/v2/jobs/1/"], | ||
["awx", None, "https://localhost", "gateway", "tokens", "https://localhost/api/gateway/v1/tokens/"], | ||
["awx", None, "https://localhost", "gateway", "tokens/199", "https://localhost/api/gateway/v1/tokens/199/"], | ||
["controller", None, "https://localhost", None, "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["controller", None, "https://localhost", None, "jobs/209", "https://localhost/api/controller/v2/jobs/209/"], | ||
["controller", None, "https://localhost", "controller", "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["controller", None, "https://localhost", "controller", "jobs/1", "https://localhost/api/controller/v2/jobs/1/"], | ||
["controller", None, "https://localhost", "gateway", "tokens", "https://localhost/api/gateway/v1/tokens/"], | ||
["controller", None, "https://localhost", "gateway", "tokens/199", "https://localhost/api/gateway/v1/tokens/199/"], | ||
# with CONTROLLER_OPTIONAL_API_URLPATTERN_PREFIX env variable | ||
["awx", "api/controller", "https://localhost", None, "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["awx", "api/controller", "https://localhost", None, "jobs/209", "https://localhost/api/controller/v2/jobs/209/"], | ||
["awx", "api/controller", "https://localhost", "controller", "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["awx", "api/controller", "https://localhost", "controller", "jobs/1", "https://localhost/api/controller/v2/jobs/1/"], | ||
["awx", "api/controller", "https://localhost", "gateway", "tokens", "https://localhost/api/gateway/v1/tokens/"], | ||
["awx", "api/controller", "https://localhost", "gateway", "tokens/199", "https://localhost/api/gateway/v1/tokens/199/"], | ||
["controller", "api/controller", "https://localhost", None, "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["controller", "api/controller", "https://localhost", None, "jobs/209", "https://localhost/api/controller/v2/jobs/209/"], | ||
["controller", "api/controller", "https://localhost", "controller", "jobs", "https://localhost/api/controller/v2/jobs/"], | ||
["controller", "api/controller", "https://localhost", "controller", "jobs/1", "https://localhost/api/controller/v2/jobs/1/"], | ||
["controller", "api/controller", "https://localhost", "gateway", "tokens", "https://localhost/api/gateway/v1/tokens/"], | ||
["controller", "api/controller", "https://localhost", "gateway", "tokens/199", "https://localhost/api/gateway/v1/tokens/199/"], | ||
] | ||
) | ||
def test_controller_api_build_url_with_env(collection_import, collection_type, env_prefix, controller_host, app_key, endpoint, expected): | ||
controller_api_class = collection_import('plugins.module_utils.controller_api').ControllerAPIModule | ||
controller_api = controller_api_class(argument_spec={}, direct_params=dict(controller_host=controller_host)) | ||
controller_api._COLLECTION_TYPE = collection_type | ||
if env_prefix: | ||
with mock.patch.dict(os.environ, {"CONTROLLER_OPTIONAL_API_URLPATTERN_PREFIX": env_prefix}): | ||
request_url = controller_api.build_url(endpoint, app_key=app_key).geturl() | ||
else: | ||
request_url = controller_api.build_url(endpoint, app_key=app_key).geturl() | ||
|
||
assert request_url == expected |