Salome HOME
merge from master 8B7B
[tools/sat.git] / test / test_sat5_0 / config / test_option_value_2.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 platform
23 import unittest
24
25 from src.salomeTools import Sat
26 from unittestpy.tools import outRedirection
27
28 class TestCase(unittest.TestCase):
29     """sat config -v VARS.python"""
30     
31     def test_010(self):
32         # Test the display of the right value of 'sat config -v VARS.python'
33         OK = 'KO'
34
35         # output redirection
36         my_out = outRedirection()
37
38         # The command to test
39         sat = Sat('')
40         sat.config('-v VARS.python')
41
42         # stop output redirection
43         my_out.end_redirection()
44
45         # get results
46         res = my_out.read_results()
47         
48         
49         if platform.python_version() in res:
50             OK = 'OK'
51         self.assertEqual(OK, 'OK')
52
53     def test_020(self):
54         # Test the display of the right value of 'sat config -s'
55         OK = 'KO'
56
57         # output redirection
58         my_out = outRedirection()
59
60         # The command to test
61         sat = Sat('')
62         sat.config('-s')
63
64         # stop output redirection
65         my_out.end_redirection()
66
67         # get results
68         res = my_out.read_results()
69         
70         
71         if 'INTERNAL' in res:
72             OK = 'OK'
73         self.assertEqual(OK, 'OK')
74         
75     def test_030(self):
76         # Test the display of the right value of 'sat config --info'
77         application = 'appli-test'
78         product = 'PRODUCT_DEV'
79         
80         OK = 'KO'
81
82         # output redirection
83         my_out = outRedirection()
84
85         # The command to test
86         sat = Sat('')
87         sat.config(application + ' --info ' + product)
88
89         # stop output redirection
90         my_out.end_redirection()
91
92         # get results
93         res = my_out.read_results()
94         
95         
96         if 'compilation method = cmake' in res:
97             OK = 'OK'
98         self.assertEqual(OK, 'OK')
99
100 # test launch
101 if __name__ == '__main__':
102     unittest.main()
103     pass