Salome HOME
add AllTestLauncher and src/loggingSimple.py etc...
[tools/sat.git] / test / config / create_user_pyconf.py
diff --git a/test/config/create_user_pyconf.py b/test/config/create_user_pyconf.py
deleted file mode 100644 (file)
index 6036d30..0000000
+++ /dev/null
@@ -1,141 +0,0 @@
-#!/usr/bin/env python
-#-*- coding:utf-8 -*-
-#  Copyright (C) 2010-2012  CEA/DEN
-#
-#  This library is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU Lesser General Public
-#  License as published by the Free Software Foundation; either
-#  version 2.1 of the License.
-#
-#  This library is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  Lesser General Public License for more details.
-#
-#  You should have received a copy of the GNU Lesser General Public
-#  License along with this library; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-
-import unittest
-import os
-import sys
-import shutil
-
-# get execution path
-testdir = os.path.dirname(os.path.realpath(__file__))
-sys.path.append(os.path.join(testdir, '..', '..'))
-sys.path.append(os.path.join(testdir, '..', '_testTools'))
-
-from salomeTools import Sat
-import HTMLTestRunner
-
-class TestConfig(unittest.TestCase):
-    '''pyunit class : each method execute one test.
-    '''
-    
-    def test_user_dir_creation(self):
-        '''Creation of ~/.salomeTools/salomeTools.pyconf
-        '''
-        res = "KO"
-        user_dir = os.path.expanduser(os.path.join('~','.salomeTools'))
-        user_dir_save = os.path.expanduser(os.path.join('~','.salomeTools_save'))
-        if os.path.exists(user_dir_save):
-            shutil.rmtree(user_dir_save)
-        if os.path.exists(user_dir):
-            shutil.move(user_dir, user_dir_save)
-               
-        # The command to test
-        sat = Sat('')
-        sat.config('-v .')
-
-        expected_file = os.path.expanduser(os.path.join('~','.salomeTools', 'salomeTools.pyconf'))
-
-        if os.path.exists(expected_file):
-            res = "OK"
-
-        shutil.rmtree(user_dir)
-        shutil.move(user_dir_save, user_dir)
-
-        # pyunit method to compare 2 str
-        self.assertEqual(res, "OK")
-
-    def test_override_VARS(self):
-        '''override VARS
-        '''
-        OK = "KO"
-        
-        # The command to test
-        sat = Sat("-oVARS.user='user_test'")
-        sat.config()
-
-        if sat.cfg.VARS.user == 'user_test':
-            OK = "OK"
-
-        # pyunit method to compare 2 str
-        self.assertEqual(OK, "OK")
-
-    def test_override_INTERNAL(self):
-        '''override INTERNAL
-        '''
-        OK = "KO"
-        
-        # The command to test
-        sat = Sat("-oINTERNAL.sat_version='V0'")
-        sat.config()
-
-        if sat.cfg.INTERNAL.sat_version == 'V0':
-            OK = "OK"
-
-        # pyunit method to compare 2 str
-        self.assertEqual(OK, "OK")
-
-    """
-    def test_override_SITE(self):
-        '''override SITE
-        '''
-        OK = "KO"
-        
-        # The command to test
-        sat = Sat("-oSITE.jobs.config_path='/tmp'")
-        sat.config()
-
-        if sat.cfg.SITE.jobs.config_path == '/tmp':
-            OK = "OK"
-
-        # pyunit method to compare 2 str
-        self.assertEqual(OK, "OK")
-    """
-
-    def test_override_APPLICATION(self):
-        '''override APPLICATION
-        '''
-        OK = "KO"
-        
-        # The command to test
-        sat = Sat("-oAPPLICATION.out_dir='/tmp'")
-        sat.config('appli-test')
-
-        if sat.cfg.APPLICATION.out_dir == '/tmp':
-            OK = "OK"
-
-        # pyunit method to compare 2 str
-        self.assertEqual(OK, "OK")
-
-    def test_override_PRODUCTS(self):
-        '''override PRODUCTS
-        '''
-        OK = "KO"
-        
-        # The command to test
-        sat = Sat("-oPRODUCTS.PRODUCT_GIT.default.name='test'")
-        sat.config('')
-
-        if sat.cfg.PRODUCTS.PRODUCT_GIT.default.name == 'test':
-            OK = "OK"
-
-        # pyunit method to compare 2 str
-        self.assertEqual(OK, "OK")
-
-# test launch
-if __name__ == '__main__':
-    HTMLTestRunner.main()