aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests/unit/base/test_general_object.py
diff options
context:
space:
mode:
authorAlexander Kabui2020-11-27 16:11:06 +0300
committerAlexander Kabui2020-11-27 16:11:06 +0300
commit8485dfd5aa02f451a646f643f503ccb02779430b (patch)
tree1df6291f98a6be1939a908271f45a6f54639f7b7 /wqflask/tests/unit/base/test_general_object.py
parent77dff447c83a4b0824fe6626d16484cfd826ca77 (diff)
parent39accba7e31beb6f0df5ddb96fb3062d527b12af (diff)
downloadgenenetwork2-8485dfd5aa02f451a646f643f503ccb02779430b.tar.gz
Merge branch 'testing' of https://github.com/genenetwork/genenetwork2 into test-regression
Diffstat (limited to 'wqflask/tests/unit/base/test_general_object.py')
-rw-r--r--wqflask/tests/unit/base/test_general_object.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/wqflask/tests/unit/base/test_general_object.py b/wqflask/tests/unit/base/test_general_object.py
new file mode 100644
index 00000000..00fd3c72
--- /dev/null
+++ b/wqflask/tests/unit/base/test_general_object.py
@@ -0,0 +1,40 @@
+import unittest
+
+from base.GeneralObject import GeneralObject
+
+
+class TestGeneralObjectTests(unittest.TestCase):
+ """
+ Test the GeneralObject base class
+ """
+
+ def test_object_contents(self):
+ """Test whether base contents are stored properly"""
+ test_obj = GeneralObject("a", "b", "c")
+ self.assertEqual("abc", ''.join(test_obj.contents))
+ self.assertEqual(len(test_obj), 0)
+
+ def test_object_dict(self):
+ """Test whether the base class is printed properly"""
+ test_obj = GeneralObject("a", name="test", value=1)
+ self.assertEqual(str(test_obj), "name = test\nvalue = 1\n")
+ self.assertEqual(
+ repr(test_obj), "contents = ['a']\nname = test\nvalue = 1\n")
+ self.assertEqual(len(test_obj), 2)
+ self.assertEqual(test_obj["value"], 1)
+ test_obj["test"] = 1
+ self.assertEqual(test_obj["test"], 1)
+
+ def test_get_attribute(self):
+ "Test that getattr works"
+ test_obj = GeneralObject("a", name="test", value=1)
+ self.assertEqual(getattr(test_obj, "value", None), 1)
+ self.assertEqual(getattr(test_obj, "non-existent", None), None)
+
+ def test_object_comparisons(self):
+ "Test that 2 objects of the same length are equal"
+ test_obj1 = GeneralObject("a", name="test", value=1)
+ test_obj2 = GeneralObject("b", name="test2", value=2)
+ test_obj3 = GeneralObject("a", name="test", x=1, y=2)
+ self.assertTrue(test_obj1 == test_obj2)
+ self.assertFalse(test_obj1 == test_obj3)