You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
642 B
YAML
25 lines
642 B
YAML
# issue #113: ensure CookieJar duplicate import issue does not reappear simply
|
|
# by exercisizng the uri package.
|
|
|
|
- name: regression/issue_113__duplicate_module_imports.yml
|
|
any_errors_fatal: true
|
|
hosts: test-targets
|
|
tasks:
|
|
|
|
- name: Get auth token
|
|
uri:
|
|
url: "http://127.0.0.1:14321/post"
|
|
method: POST
|
|
body: "client_id=admin-cli&username=admin&\
|
|
password=keycloak_admin_password&grant_type=password"
|
|
return_content: true
|
|
validate_certs: false
|
|
register: out
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- out.status == -1
|
|
- out.url == 'http://127.0.0.1:14321/post'
|
|
|