# # 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 imghdr import os import murano.packages.load_utils as load_utils import murano.tests.unit.base as test_base class TestHotV1(test_base.MuranoTestCase): def test_supplier_info_load(self): package_dir = os.path.abspath( os.path.join(__file__, '../../test_packages/test.hot.v1.app') ) package = load_utils.load_from_dir(package_dir) self.assertNotEqual(package.supplier, None) self.assertEqual('Supplier Name', package.supplier['Name']) self.assertEqual({'Link': 'http://example.com', 'Text': 'Example Company'}, package.supplier['CompanyUrl']) self.assertEqual( 'Company summary goes here', package.supplier['Summary'] ) self.assertEqual( 'Marked up company description goes here', package.supplier['Description'] ) self.assertEqual('test_supplier_logo.png', package.supplier['Logo']) self.assertEqual('png', imghdr.what('', package.supplier_logo))