X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=snaps%2Fdomain%2Ftest%2Fimage_tests.py;fp=snaps%2Fdomain%2Ftest%2Fimage_tests.py;h=de517eb413ca410ed7b165aefbaa0f98c5ca88ae;hb=becbbabc63b0eff15ed6979947aeb75ddf6819c9;hp=0000000000000000000000000000000000000000;hpb=02fa5b4fcc78e8ea7cb34acd1175ede6af48df00;p=snaps.git diff --git a/snaps/domain/test/image_tests.py b/snaps/domain/test/image_tests.py new file mode 100644 index 0000000..de517eb --- /dev/null +++ b/snaps/domain/test/image_tests.py @@ -0,0 +1,39 @@ +# Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs") +# and others. All rights reserved. +# +# 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 unittest +from snaps.domain.image import Image + + +class ImageDomainObjectTests(unittest.TestCase): + """ + Tests the construction of the snaps.domain.test.Image class + """ + + def test_construction_positional(self): + props = {'foo': 'bar'} + image = Image('name', 'id', 100, props) + self.assertEquals('name', image.name) + self.assertEquals('id', image.id) + self.assertEquals(100, image.size) + self.assertEquals(props, image.properties) + + def test_construction_named(self): + props = {'foo': 'bar'} + image = Image(image_id='id', properties=props, name='name', size=101) + self.assertEquals('name', image.name) + self.assertEquals('id', image.id) + self.assertEquals(101, image.size) + self.assertEquals(props, image.properties)