Salome HOME
4f709949ee764beca8f95c0e7ff83e67bfa60d85
[tools/sat.git] / test / config / option_copy.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 #  Copyright (C) 2010-2012  CEA/DEN
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18
19 import unittest
20 import os
21 import sys
22 import shutil
23
24 # get execution path
25 testdir = os.path.dirname(os.path.realpath(__file__))
26 sys.path.append(os.path.join(testdir, '..', '..'))
27 sys.path.append(os.path.join(testdir, '..', '_testTools'))
28
29 from salomeTools import Sat
30 import HTMLTestRunner
31
32 class TestConfig(unittest.TestCase):
33     '''sat config -c
34     '''
35     
36     def test_option_copy(self):
37         '''Test the copy of a pyconf
38         '''
39         res = "KO"
40         appli_to_copy = "appli-test"
41
42         expected_file = os.path.expanduser(os.path.join('~','.salomeTools', 'Applications', 'LOCAL_' + appli_to_copy + '.pyconf'))
43         if os.path.exists(expected_file):
44             os.remove(expected_file)
45                
46         # The command to test
47         sat = Sat('')
48         sat.config('appli-test -c')
49
50
51         if os.path.exists(expected_file):
52             res = "OK"
53             os.remove(expected_file)
54
55         # pyunit method to compare 2 str
56         self.assertEqual(res, "OK")
57
58 # test launch
59 if __name__ == '__main__':
60     HTMLTestRunner.main()