Browse Source

Added LeObjectIdentifier and UniqId tests

Quentin Bonaventure 8 years ago
parent
commit
5565ce72f0
2 changed files with 110 additions and 0 deletions
  1. 57
    0
      tests/datahandlers/test_leobjectidentifier.py
  2. 53
    0
      tests/datahandlers/test_uniqid.py

+ 57
- 0
tests/datahandlers/test_leobjectidentifier.py View File

@@ -0,0 +1,57 @@
1
+import unittest
2
+import inspect
3
+from unittest import mock 
4
+from unittest.mock import patch
5
+
6
+import leapi_dyncode as dyncode
7
+
8
+from types import *
9
+
10
+from lodel.leapi.datahandlers.datas import LeobjectSubclassIdentifier as Testee
11
+
12
+
13
+class LeresultectSubclassIdentifierTestCase(unittest.TestCase):        
14
+        
15
+    def test_has_base_type_property(self):
16
+        self.assertTrue(hasattr(Testee, 'base_type'))
17
+        
18
+        
19
+    def test_base_type_is_varchar(self):
20
+        self.assertEqual(Testee.base_type, 'varchar')
21
+        
22
+        
23
+    def test_has_help_property(self):
24
+        self.assertTrue(hasattr(Testee, 'help'))
25
+        
26
+        
27
+    def test_help_property_str_is_set(self):
28
+        self.assertEqual(type(Testee.help), str)
29
+        
30
+    
31
+    def test_throws_error_if_set_as_external(self):
32
+        self.assertRaises(RuntimeError, Testee, internal=False)
33
+        
34
+    
35
+    def test_set_as_internal_by_default(self):
36
+        self.assertTrue(Testee().internal)
37
+        
38
+        
39
+    def test_passing_class_returns_class_name(self):
40
+        result = Testee.construct_data(None, object, None, None, None)
41
+        
42
+        self.assertEqual(result, object .__name__)
43
+        self.assertEqual(type(result), str)
44
+        
45
+        
46
+    def test_passing_instance_returns_class_name(self):
47
+        result = Testee.construct_data(None,  object(), None, None, None)
48
+        
49
+        self.assertTrue(result, object.__name__)
50
+        self.assertEqual(type(result), str)
51
+        
52
+        
53
+    def test_passing_instance_and_class_same_result(self):
54
+        objResult = Testee.construct_data(None,  Testee(), None, None, None)
55
+        clsResult = Testee.construct_data(None, Testee, None, None, None)
56
+        
57
+        self.assertEqual(objResult, clsResult)

+ 53
- 0
tests/datahandlers/test_uniqid.py View File

@@ -0,0 +1,53 @@
1
+import unittest
2
+from unittest import mock 
3
+from unittest.mock import patch
4
+
5
+import leapi_dyncode as dyncode
6
+
7
+from lodel.leapi.datahandlers.datas import UniqID as Testee
8
+from lodel.plugins.dummy_datasource.datasource import DummyDatasource
9
+
10
+
11
+class UniqIDTestCase(unittest.TestCase):
12
+        
13
+        
14
+    def test_has_base_type_property(self):
15
+        self.assertTrue(hasattr(Testee, 'base_type'))
16
+        
17
+        
18
+    def test_base_type_is_int(self):
19
+        self.assertEqual(Testee.base_type, 'int')
20
+        
21
+        
22
+    def test_has_help_property(self):
23
+        self.assertTrue(hasattr(Testee, 'help'))
24
+        
25
+        
26
+    def test_help_property_str_is_set(self):
27
+        self.assertEqual(type(Testee.help), str)
28
+        
29
+        
30
+    def test_internal_set_as_automatic_by_default(self):
31
+        self.assertEqual(Testee().internal, 'automatic')
32
+        
33
+    
34
+    def test_construct_data_sets_new_uid_if_none(self):
35
+        sent_uid = None
36
+        mocked_returned_uid = 987654321
37
+        
38
+        with patch.object(DummyDatasource, 'new_numeric_id', return_value=mocked_returned_uid) as mock_method:
39
+            returned_uid = Testee.construct_data(None, dyncode.Object, None, None, sent_uid)
40
+            
41
+            mock_method.assert_called_once_with(dyncode.Object)
42
+            self.assertEqual(returned_uid, mocked_returned_uid)
43
+            
44
+
45
+    def test_construct_data_returns_already_set_uid(self):
46
+        sent_uid = 123456789
47
+        mocked_returned_uid = 987654321
48
+        
49
+        with patch.object(DummyDatasource, 'new_numeric_id', return_value=mocked_returned_uid) as mock_method:
50
+            returned_uid = Testee.construct_data(None, dyncode.Object, None, None, sent_uid)
51
+
52
+            self.assertEqual(returned_uid, sent_uid)
53
+            mock_method.assert_not_called()     

Loading…
Cancel
Save