* Always use oslo jsonutils. * Consistently import jsonutils as-is. * Use dump_as_bytes instead of dumps. https://wiki.openstack.org/wiki/Python3#Serialization:_base64.2C_JSON.2C_etc. Change-Id: Ia58b2a6a8740fa7f0796b05e14e812d5240c7acc
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# Copyright 2012 Managed I.T.
|
|
#
|
|
# Author: Kiall Mac Innes <kiall@managedit.ie>
|
|
#
|
|
# 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 os
|
|
|
|
from oslo_serialization import jsonutils
|
|
|
|
from designate.tests import resources
|
|
|
|
|
|
FIXTURES_PATH = os.path.join(resources.path, 'sample_notifications')
|
|
|
|
|
|
class NotificationHandlerMixin(object):
|
|
def get_notification_fixture(self, service, name):
|
|
filename = os.path.join(FIXTURES_PATH, service, '%s.json' % name)
|
|
|
|
if not os.path.exists(filename):
|
|
raise Exception('Invalid notification fixture requested')
|
|
|
|
with open(filename, 'r') as fp:
|
|
fixture = fp.read()
|
|
|
|
return jsonutils.loads(fixture)
|