
The new hacking rules will enforce a license header check. This patch updates a few recent files to clean up the header, and remove an extraneous print function that snuck in. Change-Id: Iab5e42d139d4414eb74b0ecc62710f0b23b882e4
66 lines
2.0 KiB
Python
66 lines
2.0 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
"""
|
|
Utils for testing the API service.
|
|
"""
|
|
|
|
import datetime
|
|
import json
|
|
|
|
ADMIN_TOKEN = '4562138218392831'
|
|
MEMBER_TOKEN = '4562138218392832'
|
|
|
|
|
|
class FakeMemcache(object):
|
|
"""Fake cache that is used for keystone tokens lookup."""
|
|
|
|
_cache = {
|
|
'tokens/%s' % ADMIN_TOKEN: {
|
|
'access': {
|
|
'token': {'id': ADMIN_TOKEN},
|
|
'user': {'id': 'user_id1',
|
|
'name': 'user_name1',
|
|
'tenantId': '123i2910',
|
|
'tenantName': 'mytenant',
|
|
'roles': [{'name': 'admin'}]
|
|
},
|
|
}
|
|
},
|
|
'tokens/%s' % MEMBER_TOKEN: {
|
|
'access': {
|
|
'token': {'id': MEMBER_TOKEN},
|
|
'user': {'id': 'user_id2',
|
|
'name': 'user-good',
|
|
'tenantId': 'project-good',
|
|
'tenantName': 'goodies',
|
|
'roles': [{'name': 'Member'}]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
def __init__(self):
|
|
self.set_key = None
|
|
self.set_value = None
|
|
self.token_expiration = None
|
|
|
|
def get(self, key):
|
|
dt = datetime.datetime.now() + datetime.timedelta(minutes=5)
|
|
return json.dumps((self._cache.get(key), dt.strftime('%s')))
|
|
|
|
def set(self, key, value, timeout=None):
|
|
self.set_value = value
|
|
self.set_key = key
|