Пример #1
0
 def test_child_dict(self):
     value = {1: 1, 2: 2, 3: 4}
     expected_result = Root.doformat(value)
     self.root.part_dic = value
     result = self.red.hgetall('root.part_dic')
     self.assertEqual(result, expected_result)
     self.root.flush()
     self.assertEqual(self.root.part_dic, value)
Пример #2
0
 def test_child_nested_dict(self):
     value = {1: 1, 2: {"a": "hello"}, 3: 4}
     expected_result = Root.doformat(value)
     self.root.part = value
     result = self.red.hgetall('root.part')
     self.assertEqual(result, expected_result)
     self.root.flush()
     self.assertEqual(self.root.part, value)
Пример #3
0
 def test_child_set(self):
     value = {1, 2, 4}
     expected_result = set(Root.doformat(value))
     self.root.part_set = value
     result = self.red.smembers('root.part_set')
     self.assertEqual(result, expected_result)
     self.root.flush()
     self.assertEqual(self.root.part_set, value)
Пример #4
0
 def test_child_nested_iterable(self):
     value = [1, 3, ["a", 3]]
     expected_result = Root.doformat(value)
     self.root.part = value
     result = self.red.lrange("root.part", 0, -1)
     self.assertEqual(result, expected_result)
     self.root.flush()
     self.assertEqual(self.root.part, value)
Пример #5
0
 def test_grandchild(self):
     string = "for real?"
     self.root.haha.wahaha = string
     result = self.red.get('root.haha.wahaha')
     expected_result = Root.doformat(string)
     self.assertEqual(result, expected_result)
     self.root.flush()
     self.assertEqual(self.root.haha.wahaha, string)
     self.assertEqual(self.root['haha.wahaha'], string)
Пример #6
0
 def test_nested_format(self):
     value = {1: 1, 2: {"a": "hello"}}
     result = Root.doformat(value)
     int_str = bTYPE_IDENTIFIER + b'num' + bITEM_DIVIDER + b'int' + bITEM_DIVIDER
     expected_result = {int_str + b'1': int_str + b'1',
                        int_str + b'2': bTYPE_IDENTIFIER +
                        b'dict' + bITEM_DIVIDER +
                        b'dict' + bITEM_DIVIDER + b'{"a": "hello"}'}
     self.assertEqual(result, expected_result)
Пример #7
0
    def test_numbers(self):
        today = datetime.date.today()
        now = datetime.datetime.utcnow()
        items = (10, 10.1, Decimal("10"), 10+1j, today, now)

        for val in items:
            self.root.part = val
            result = self.red.get('root.part')
            expected_result = Root.doformat(val)
            self.assertEqual(result, expected_result)
            # flushing dotobject local cache
            self.root.flush()
            self.assertEqual(self.root.part, val)