buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_escapeddict.py
changeset 587 85df38eb4012
child 588 c7c26511138f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_escapeddict.py	Tue Apr 27 08:33:08 2010 +0300
@@ -0,0 +1,50 @@
+#============================================================================ 
+#Name        : test_escapeddict.py 
+#Part of     : Helium 
+
+#Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+#All rights reserved.
+#This component and the accompanying materials are made available
+#under the terms of the License "Eclipse Public License v1.0"
+#which accompanies this distribution, and is available
+#at the URL "http://www.eclipse.org/legal/epl-v10.html".
+#
+#Initial Contributors:
+#Nokia Corporation - initial contribution.
+#
+#Contributors:
+#
+#Description:
+#===============================================================================
+
+import logging
+import unittest
+
+import escapeddict
+
+
+logger = logging.getLogger('test.escapeddict')
+
+
+class EscapedDictTest(unittest.TestCase):
+    """ Acceptance tests for escapeddict.py """
+    def test_escape(self):
+        testdict = escapeddict.EscapedDict({'key1': 'value1', 'key2': 'value2 ${key1}'})
+        for key in testdict.keys():
+            logger.info(testdict[key])
+        assert testdict['key1'] == 'value1'
+        assert testdict['key2'] == 'value2 value1'
+        
+    def test_escape_no_value_present(self):
+        testdict = escapeddict.EscapedDict({'key1': 'value1', 'key2': 'value2 ${key_not_present} ${key1}'})
+        for key in testdict.keys():
+            print testdict[key]
+        assert testdict['key1'] == 'value1'
+        assert testdict['key2'] == 'value2 ${key_not_present} value1'
+        
+    def test_escape_value_as_list(self):
+        testdict = escapeddict.EscapedDict({'key1': 'value1', 'key2': ['value2', '${key1}']})
+        for key in testdict.keys():
+            print testdict[key]
+        assert testdict['key1'] == 'value1'
+        assert testdict['key2'] == ['value2', 'value1']
\ No newline at end of file