A module for faked entities

This module will be shared by unit tests with fake entities.
This commit is contained in:
tengqm 2015-03-13 17:34:21 +08:00
parent 6887af5a79
commit b418655a4e
1 changed files with 51 additions and 0 deletions

51
senlin/tests/fakes.py Normal file
View File

@ -0,0 +1,51 @@
# 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.
'''
A module that contains various fake entities
'''
from senlin.common import schema
from senlin.profiles import base as profile_base
class TestProfile(profile_base.Profile):
spec_schema = {
'INT': schema.Int('int property', default=0),
'STR': schema.String('a string', default='a string'),
'MAP': schema.Map(
'map property',
schema={
'KEY1': schema.Int('key1'),
'KEY2': schema.String('key2')
}
),
'LIST': schema.List(
'list property',
schema=schema.String('list item'),
),
}
def __init__(self, name, type_name='TestProfile', **kwargs):
super(TestProfile, self).__init__(name, type_name, kwargs)
def do_create(self):
return {}
def do_delete(self, id):
return True
def do_update(self, ):
return {}
def do_check(self, id):
return True