-
Notifications
You must be signed in to change notification settings - Fork 14
Add unit tests for coriolisclient.cli: shell, utils and formatter modules
#85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1ed38ac
Add unit tests for `coriolisclient.cli.formatter` module
Cristi1324 5bf43b2
Add unit tests for `coriolisclient.cli.shell` module
Cristi1324 88e1cea
Add unit tests for `coriolisclient.cli.utils` module
Cristi1324 f2de647
Change generic Exception to CoriolisException in `coriolisclient.cli.…
Cristi1324 14f2ba8
Remove idempotent condition in method: `get_option_value_from_args` f…
Cristi1324 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
129 changes: 129 additions & 0 deletions
129
coriolisclient/tests/cli/data/shell_check_auth_arguments.yml
This file contains hidden or 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,129 @@ | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| os_project_domain_id: "mock_os_project_domain_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| os_project_domain_id: "mock_os_project_domain_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| api_version: | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_name: "mock_os_project_name" | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| api_version: '3' | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| api_version: | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| api_version: | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| api_version: | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| api_version: | ||
| raise_exc: True | ||
| expected_result: | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| os_project_domain_id: "mock_os_project_domain_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| api_version: '2' | ||
| raise_exc: False | ||
| expected_result: False | ||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| api_version: '2' | ||
| raise_exc: False | ||
| expected_result: True | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| api_version: '2' | ||
| raise_exc: False | ||
| expected_result: False |
133 changes: 133 additions & 0 deletions
133
coriolisclient/tests/cli/data/shell_create_keystone_auth.yml
This file contains hidden or 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,133 @@ | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| os_project_domain_id: "mock_os_project_domain_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| insecure: True | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| project_id: "mock_os_project_id" | ||
| project_name: "mock_os_project_name" | ||
| project_domain_name: "mock_os_project_domain_name" | ||
| project_domain_id: "mock_os_project_domain_id" | ||
| verify: False | ||
| api_version: '3' | ||
| auth_type: 'token' | ||
| auth_fun: 'keystoneauth1.identity.v3.Token' | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| project_id: "mock_os_project_id" | ||
| api_version: '3' | ||
| auth_type: 'token' | ||
| auth_fun: 'keystoneauth1.identity.v3.Token' | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| project_id: "mock_os_project_id" | ||
| api_version: '3' | ||
| auth_type: 'other' | ||
| auth_fun: 'keystoneauth1.identity.v3.Password' | ||
|
|
||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| project_id: "mock_os_project_id" | ||
| api_version: '3' | ||
| auth_type: | ||
| auth_fun: 'keystoneauth1.identity.v3.Password' | ||
|
|
||
| - config: | ||
| args: | ||
| os_project_id: "mock_os_project_id" | ||
| os_project_name: "mock_os_project_name" | ||
| os_project_domain_name: "mock_os_project_domain_name" | ||
| os_project_domain_id: "mock_os_project_domain_id" | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| tenant_id: "mock_os_tenant_id" | ||
| tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| auth_type: 'token' | ||
| auth_fun: 'keystoneauth1.identity.v2.Token' | ||
|
|
||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| token: "mock_token" | ||
| tenant_id: "mock_os_tenant_id" | ||
| tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| auth_type: 'token' | ||
| auth_fun: 'keystoneauth1.identity.v2.Token' | ||
|
|
||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| tenant_id: "mock_os_tenant_id" | ||
| tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| auth_type: 'other' | ||
| auth_fun: 'keystoneauth1.identity.v2.Password' | ||
|
|
||
|
|
||
| - config: | ||
| args: | ||
| os_tenant_id: "mock_os_tenant_id" | ||
| os_tenant_name: "mock_os_tenant_name" | ||
| kwargs: | ||
| auth_url: "mock_auth_url" | ||
| expected_kwargs: | ||
| auth_url: "mock_auth_url" | ||
| tenant_id: "mock_os_tenant_id" | ||
| tenant_name: "mock_os_tenant_name" | ||
| api_version: '2' | ||
| auth_type: | ||
| auth_fun: 'keystoneauth1.identity.v2.Password' |
This file contains hidden or 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,2 @@ | ||
| "mock_script1" | ||
| "mock_script2" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.