summaryrefslogtreecommitdiffstats
path: root/snaps/domain
diff options
context:
space:
mode:
authorspisarski <s.pisarski@cablelabs.com>2017-04-20 14:15:30 -0600
committerspisarski <s.pisarski@cablelabs.com>2017-04-26 09:18:20 +0200
commitbecbbabc63b0eff15ed6979947aeb75ddf6819c9 (patch)
treee88dfc06420ddaa66745df6523a25ceb80f3417f /snaps/domain
parent02fa5b4fcc78e8ea7cb34acd1175ede6af48df00 (diff)
Added support for Glance v2
Updated copyright date on new and edited files to current year. JIRA: SNAPS-66 Change-Id: I491157d6ced8bd9322f99272fc14e00168faaf29 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
Diffstat (limited to 'snaps/domain')
-rw-r--r--snaps/domain/__init__.py15
-rw-r--r--snaps/domain/image.py33
-rw-r--r--snaps/domain/test/__init__.py15
-rw-r--r--snaps/domain/test/image_tests.py39
4 files changed, 102 insertions, 0 deletions
diff --git a/snaps/domain/__init__.py b/snaps/domain/__init__.py
new file mode 100644
index 0000000..271c742
--- /dev/null
+++ b/snaps/domain/__init__.py
@@ -0,0 +1,15 @@
+# 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.
+__author__ = 'spisarski'
diff --git a/snaps/domain/image.py b/snaps/domain/image.py
new file mode 100644
index 0000000..2a9c7b9
--- /dev/null
+++ b/snaps/domain/image.py
@@ -0,0 +1,33 @@
+# 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.
+
+
+class Image:
+ """
+ SNAPS domain object for Images. Should contain attributes that
+ are shared amongst cloud providers
+ """
+ def __init__(self, name, image_id, size, properties=None):
+ """
+ Constructor
+ :param name: the image's name
+ :param image_id: the image's id
+ :param size: the size of the image in bytes
+ :param properties: the image's custom properties
+ """
+ self.name = name
+ self.id = image_id
+ self.size = size
+ self.properties = properties
diff --git a/snaps/domain/test/__init__.py b/snaps/domain/test/__init__.py
new file mode 100644
index 0000000..271c742
--- /dev/null
+++ b/snaps/domain/test/__init__.py
@@ -0,0 +1,15 @@
+# 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.
+__author__ = 'spisarski'
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)