Source code for aiida.backends.tests.orm.data.frozendict

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida_core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
from aiida.backends.testbase import AiidaTestCase
from aiida.orm.data.frozendict import FrozenDict
from aiida.orm.data.base import Int, Str


[docs]class TestFrozenDict(AiidaTestCase):
[docs] def test_create(self): d = FrozenDict(dict={})
[docs] def test_create_invalid(self): with self.assertRaises(AssertionError): d = FrozenDict(dict={'a': 5})
[docs] def test_get_value(self): input = {'a': Int(5).store()} d = FrozenDict(dict=input) self.assertEqual(d['a'], input['a'])
[docs] def test_iterate(self): input = {'a': Int(5).store(), 'b': Str('testing').store()} d = FrozenDict(dict=input) for k, v in d.iteritems(): self.assertEqual(input[k], v)
[docs] def test_length(self): input = {'a': Int(5).store(), 'b': Str('testing').store()} d = FrozenDict(dict=input) self.assertEqual(len(input), len(d))