placement/placement/tests/functional/gabbits/confirm-auth.yaml

33 lines
601 B
YAML

#
# Confirm that the noauth handler is causing a 401 when no fake
# token is provided.
#
fixtures:
- APIFixture
defaults:
request_headers:
accept: application/json
tests:
- name: no token gets 200 at root
GET: /
status: 200
- name: with token 200 at root
GET: /
request_headers:
x-auth-token: admin:admin
status: 200
- name: no token gets 401
GET: /resource_providers
status: 401
- name: with token 200
GET: /resource_providers
request_headers:
x-auth-token: admin:admin
status: 200