Salome HOME
38a61841058e585282c4d282d8af9e1627a7867c
[tools/sat.git] / test / test_sat5_0 / log / test_launch_browser2.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3
4 #  Copyright (C) 2010-2018  CEA/DEN
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19
20 import os
21 import sys
22 import threading
23 import time
24 import unittest
25
26 from src.salomeTools import Sat
27 from unittestpy.tools import check_proc_existence_and_kill_multi
28
29 sleep_time = 2
30
31 class TestCase(unittest.TestCase):
32     """Test of log command: launch of browser"""
33
34     def test_010(self):
35         # Test the launch of browser when invoking the log command
36         OK = "KO"
37
38         sat = Sat("-oUSER.browser='konqueror'")
39         time.sleep(sleep_time)
40         cmd_log = threading.Thread(target=sat.log, args=('',))
41         cmd_log.start()
42
43         time.sleep(sleep_time)
44         
45         sat.config("")
46         browser = sat.cfg.USER.browser
47         pid = check_proc_existence_and_kill_multi(browser + ".*" + "hat\.xml", 10)
48
49         if pid:
50             OK = "OK"
51         self.assertEqual(OK, "OK")
52
53 # test launch
54 if __name__ == '__main__':
55     unittest.main()
56     pass