initial version
Change-Id: I699e0ab082657880998d8618fe29eb7f56c6c661
This commit is contained in:
93
watcher/tests/fakes.py
Normal file
93
watcher/tests/fakes.py
Normal file
@@ -0,0 +1,93 @@
|
||||
# -*- coding: 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.
|
||||
|
||||
import mock
|
||||
|
||||
fakeAuthTokenHeaders = {'X-User-Id': u'773a902f022949619b5c2f32cd89d419',
|
||||
'X-Roles': u'admin, ResellerAdmin, _member_',
|
||||
'X-Project-Id': u'5588aebbcdc24e17a061595f80574376',
|
||||
'X-Project-Name': 'test',
|
||||
'X-User-Name': 'test',
|
||||
'X-Auth-Token': u'5588aebbcdc24e17a061595f80574376',
|
||||
'X-Forwarded-For': u'10.10.10.10, 11.11.11.11',
|
||||
'X-Service-Catalog': u'{test: 12345}',
|
||||
'X-Auth-Url': 'fake_auth_url',
|
||||
'X-Identity-Status': 'Confirmed',
|
||||
'X-User-Domain-Name': 'domain',
|
||||
'X-Project-Domain-Id': 'project_domain_id',
|
||||
'X-User-Domain-Id': 'user_domain_id',
|
||||
}
|
||||
|
||||
|
||||
class FakePecanRequest(mock.Mock):
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super(FakePecanRequest, self).__init__(**kwargs)
|
||||
self.host_url = 'http://test_url:8080/test'
|
||||
self.context = {}
|
||||
self.body = ''
|
||||
self.content_type = 'text/unicode'
|
||||
self.params = {}
|
||||
self.path = '/v1/services'
|
||||
self.headers = fakeAuthTokenHeaders
|
||||
self.environ = {}
|
||||
|
||||
def __setitem__(self, index, value):
|
||||
setattr(self, index, value)
|
||||
|
||||
|
||||
class FakePecanResponse(mock.Mock):
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super(FakePecanResponse, self).__init__(**kwargs)
|
||||
self.status = None
|
||||
|
||||
|
||||
class FakeApp(object):
|
||||
pass
|
||||
|
||||
|
||||
class FakeService(mock.Mock):
|
||||
def __init__(self, **kwargs):
|
||||
super(FakeService, self).__init__(**kwargs)
|
||||
self.__tablename__ = 'service'
|
||||
self.__resource__ = 'services'
|
||||
self.user_id = 'fake user id'
|
||||
self.project_id = 'fake project id'
|
||||
self.uuid = 'test_uuid'
|
||||
self.id = 8
|
||||
self.name = 'james'
|
||||
self.service_type = 'not_this'
|
||||
self.description = 'amazing'
|
||||
self.tags = ['this', 'and that']
|
||||
self.read_only = True
|
||||
|
||||
def as_dict(self):
|
||||
return dict(service_type=self.service_type,
|
||||
user_id=self.user_id,
|
||||
project_id=self.project_id,
|
||||
uuid=self.uuid,
|
||||
id=self.id,
|
||||
name=self.name,
|
||||
tags=self.tags,
|
||||
read_only=self.read_only,
|
||||
description=self.description)
|
||||
|
||||
|
||||
class FakeAuthProtocol(mock.Mock):
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super(FakeAuthProtocol, self).__init__(**kwargs)
|
||||
self.app = FakeApp()
|
||||
self.config = ''
|
||||
Reference in New Issue
Block a user