Salome HOME
style: black format
[tools/sat.git] / test / test_sat5_0 / compilation / test_makeinstall.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 unittest
23
24 import src.product
25 from src.salomeTools import Sat
26
27
28 class TestMakeinstall(unittest.TestCase):
29     """Test of the makeinstall command"""
30
31     def test_010(self):
32         # Test the configure-make-makeinstall command without any option
33         OK = "KO"
34
35         appli = "appli-test"
36         product_name = "PRODUCT_GIT"
37
38         sat = Sat()
39
40         sat.prepare(appli + " --product " + product_name)
41         expected_install_dir = src.product.get_product_config(
42             sat.cfg, product_name
43         ).install_dir
44         expected_file_path = os.path.join(expected_install_dir, "bin/hello")
45
46         sat.configure(appli + " --product " + product_name)
47
48         sat.make(appli + " --product " + product_name)
49
50         sat.makeinstall(appli + " --product " + product_name)
51
52         if os.path.exists(expected_file_path):
53             OK = "OK"
54         # pyunit method to compare 2 str
55         self.assertEqual(OK, "OK")
56
57     def test_020(self):
58         # Test the sat -h make
59         OK = "KO"
60
61         import makeinstall
62
63         if (
64             "The makeinstall command executes the 'make install' command"
65             in makeinstall.description()
66         ):
67             OK = "OK"
68
69         # pyunit method to compare 2 str
70         self.assertEqual(OK, "OK")
71
72
73 # test launch
74 if __name__ == "__main__":
75     unittest.main()
76     pass