Salome HOME
c156419a9fdad05dc025f6c47aef276af42be0a8
[tools/sat.git] / test / config / option_edit.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 threading
23 import time
24
25 # get execution path
26 testdir = os.path.dirname(os.path.realpath(__file__))
27 sys.path.append(os.path.join(testdir, '..', '..'))
28 sys.path.append(os.path.join(testdir, '..', '_testTools'))
29
30 from salomeTools import Sat
31 from tools import check_proc_existence_and_kill
32 import HTMLTestRunner
33
34 sleep_time = 3
35
36 class TestConfig(unittest.TestCase):
37     '''OPTION EDIT.
38     '''
39     
40     def test_edit_userconfig(self):
41         '''Test the launch of the editor when invoking the config -e
42         '''
43
44         OK = "KO"
45
46         sat = Sat("-oUSER.editor='cooledit'")
47         cmd_config = threading.Thread(target=sat.config, args=('-e',))
48         cmd_config.start()
49
50         time.sleep(sleep_time)
51
52         editor = sat.cfg.USER.editor
53         pid = check_proc_existence_and_kill(editor + ".*" + "salomeTools\.pyconf")
54
55         if pid:
56             OK = "OK"
57         # pyunit method to compare 2 str
58         self.assertEqual(OK, "OK")
59
60     def test_edit_appli(self):
61         '''Test the launch of the editor when invoking the config -e appli-test
62         '''
63
64         OK = "KO"
65
66         sat = Sat("-oUSER.editor='cooledit'")
67         cmd_config = threading.Thread(target=sat.config, args=('appli-test -e',))
68         cmd_config.start()
69
70         time.sleep(sleep_time)
71
72         editor = sat.cfg.USER.editor
73         pid = check_proc_existence_and_kill(editor + ".*" + "appli-test\.pyconf")
74
75         if pid:
76             OK = "OK"
77         # pyunit method to compare 2 str
78         self.assertEqual(OK, "OK")
79  
80 # test launch
81 if __name__ == '__main__':
82     HTMLTestRunner.main()