buildframework/helium/sf/python/pythoncore/lib/pythoncorecpythontests/test_atsant.py
changeset 587 85df38eb4012
child 588 c7c26511138f
child 618 df88fead2976
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncorecpythontests/test_atsant.py	Tue Apr 27 08:33:08 2010 +0300
@@ -0,0 +1,43 @@
+#============================================================================ 
+#Name        : test_atsant.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:
+#===============================================================================
+
+""" atsant.py module tests. """
+
+import os
+import logging
+import tempfile
+import shutil
+_logger = logging.getLogger('test.atsant')
+
+import atsant
+
+def test_atsant():
+    """test atsant and check 3 files in the file"""
+    files = atsant.files_to_test(os.path.join(os.environ['TEST_DATA'], 'data/packageiad/layers.sysdef.xml'), None, None, 'z:')
+    assert len(files) == 3
+    
+def test_IConfigATS():
+    tmpdir = tempfile.mkdtemp()
+    shutil.copy(os.path.join(os.environ['TEST_DATA'], 'data', 'example_corernd.iconfig.xml'), os.path.join(tmpdir, 'example_corernd.iconfig.xml'))
+    open(os.path.join(tmpdir, 'RX-60_00_rnd.core.fpsx'), 'w').close()
+    open(os.path.join(tmpdir, 'RX-60_00.01_rnd.rofs2.fpsx'), 'w').close()
+    open(os.path.join(tmpdir, 'RX-60_00_rnd.rofs3.fpsx'), 'w').close()
+    open(os.path.join(tmpdir, 'RX-60_00_rnd.udaerase.fpsx'), 'w').close()
+    ic = atsant.IConfigATS(tmpdir)
+    ic.findimages()
\ No newline at end of file