solar/resources/keystone_user/test.py
2015-07-09 13:02:39 +02:00

28 lines
863 B
Python

import json
import requests
from solar.core.log import log
def test(resource):
log.debug('Testing keystone_user %s', resource.args['user_name'].value)
token_data = requests.post(
'http://%s:%s/v2.0/tokens' % (resource.args['keystone_host'].value,
resource.args['keystone_port'].value),
json.dumps({
'auth': {
'tenantName': resource.args['tenant_name'].value,
'passwordCredentials': {
'username': resource.args['user_name'].value,
'password': resource.args['user_password'].value,
},
},
}),
headers={'Content-Type': 'application/json'}
)
token = token_data.json()['access']['token']['id']
log.debug('%s TOKEN: %s', resource.args['user_name'].value, token)