summaryrefslogtreecommitdiffstats
path: root/snaps/domain
diff options
context:
space:
mode:
authorspisarski <s.pisarski@cablelabs.com>2017-07-06 14:28:49 -0600
committerspisarski <s.pisarski@cablelabs.com>2017-07-07 08:26:48 -0600
commit56ad05c9ed980a5e4c71d18bb4067519ae7efa49 (patch)
tree93ec8bfad4df14e47432f5dc05191ddc5e1119e7 /snaps/domain
parente05d0deffeeda87c43e746fc09cad2249f2adcc5 (diff)
Created domain object for users.
OpenStack implementation details were leaking out into the user creator. JIRA: SNAPS-117 Change-Id: I67c77c75055b37819512d1e7712925b839fbc047 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
Diffstat (limited to 'snaps/domain')
-rw-r--r--snaps/domain/test/user_tests.py33
-rw-r--r--snaps/domain/user.py32
2 files changed, 65 insertions, 0 deletions
diff --git a/snaps/domain/test/user_tests.py b/snaps/domain/test/user_tests.py
new file mode 100644
index 0000000..c9b82c8
--- /dev/null
+++ b/snaps/domain/test/user_tests.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.
+
+import unittest
+from snaps.domain.user import User
+
+
+class UserDomainObjectTests(unittest.TestCase):
+ """
+ Tests the construction of the snaps.domain.test.User class
+ """
+
+ def test_construction_positional(self):
+ user = User('foo', '123-456')
+ self.assertEqual('foo', user.name)
+ self.assertEqual('123-456', user.id)
+
+ def test_construction_named(self):
+ user = User(user_id='123-456', name='foo')
+ self.assertEqual('foo', user.name)
+ self.assertEqual('123-456', user.id)
diff --git a/snaps/domain/user.py b/snaps/domain/user.py
new file mode 100644
index 0000000..0631642
--- /dev/null
+++ b/snaps/domain/user.py
@@ -0,0 +1,32 @@
+# 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 User:
+ """
+ SNAPS domain object for Users. Should contain attributes that
+ are shared amongst cloud providers
+ """
+ def __init__(self, name, user_id):
+ """
+ Constructor
+ :param name: the user's name
+ :param id: the user's id
+ """
+ self.name = name
+ self.id = user_id
+
+ def __eq__(self, other):
+ return self.name == other.name and self.id == other.id