Salome HOME
style: black format
[tools/sat.git] / test / test_sat5_0 / compilation / test_make.py
index c9569654d2fecea3fde5ac8ee1b0a2a3a753453d..b00fd8d4dc3e7fccd25b3d4b0ea5de09c9a8e7a7 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-#-*- coding:utf-8 -*-
+# -*- coding:utf-8 -*-
 
 #  Copyright (C) 2010-2018  CEA/DEN
 #
@@ -24,83 +24,91 @@ import unittest
 import src.product
 from src.salomeTools import Sat
 
+
 class TestCase(unittest.TestCase):
     """Test of the make command"""
 
     def test_010(self):
         # Test the configure command without any option
-        OK = 'KO'
+        OK = "KO"
 
-        appli = 'appli-test'
-        product_name = 'PRODUCT_GIT'
+        appli = "appli-test"
+        product_name = "PRODUCT_GIT"
 
         sat = Sat()
-                            
-        sat.prepare(appli + ' --product ' + product_name)
-        expected_build_dir = src.product.get_product_config(sat.cfg, product_name).build_dir
-        expected_file_path = os.path.join(expected_build_dir, 'hello')
-       
-        sat.configure(appli + ' --product ' + product_name)        
-        sat.make(appli + ' --product ' + product_name)
-        
+
+        sat.prepare(appli + " --product " + product_name)
+        expected_build_dir = src.product.get_product_config(
+            sat.cfg, product_name
+        ).build_dir
+        expected_file_path = os.path.join(expected_build_dir, "hello")
+
+        sat.configure(appli + " --product " + product_name)
+        sat.make(appli + " --product " + product_name)
+
         if os.path.exists(os.path.join(expected_build_dir, expected_file_path)):
-            OK = 'OK'         
+            OK = "OK"
         # pyunit method to compare 2 str
-        self.assertEqual(OK, 'OK')
+        self.assertEqual(OK, "OK")
 
     def test_020(self):
         # Test the make command with an option
-        OK = 'KO'
-        appli = 'appli-test'
-        product_name = 'PRODUCT_GIT'
+        OK = "KO"
+        appli = "appli-test"
+        product_name = "PRODUCT_GIT"
 
         sat = Sat()
-                            
-        sat.prepare(appli + ' --product ' + product_name)
-        expected_build_dir = src.product.get_product_config(sat.cfg, product_name).build_dir
-        expected_file_path = os.path.join(expected_build_dir, 'hello')
-       
-        sat.configure(appli + ' --product ' + product_name)   
-        sat.make(appli + ' --product ' + product_name + ' --option -j3')
-        
+
+        sat.prepare(appli + " --product " + product_name)
+        expected_build_dir = src.product.get_product_config(
+            sat.cfg, product_name
+        ).build_dir
+        expected_file_path = os.path.join(expected_build_dir, "hello")
+
+        sat.configure(appli + " --product " + product_name)
+        sat.make(appli + " --product " + product_name + " --option -j3")
+
         if os.path.exists(os.path.join(expected_build_dir, expected_file_path)):
-            OK = 'OK'         
+            OK = "OK"
         # pyunit method to compare 2 str
-        self.assertEqual(OK, 'OK')
+        self.assertEqual(OK, "OK")
 
     def test_030(self):
         # Test the make command with a product in script mode
-        OK = 'KO'
+        OK = "KO"
 
-        appli = 'appli-test'
-        product_name = 'Python'
+        appli = "appli-test"
+        product_name = "Python"
 
         sat = Sat()
-                            
-        sat.prepare(appli + ' --product ' + product_name)
-        expected_install_dir = src.product.get_product_config(sat.cfg, product_name).install_dir
+
+        sat.prepare(appli + " --product " + product_name)
+        expected_install_dir = src.product.get_product_config(
+            sat.cfg, product_name
+        ).install_dir
         expected_file = "bin/python2.7"
-        
-        sat.make(appli + ' --product ' + product_name)
-        
+
+        sat.make(appli + " --product " + product_name)
+
         if os.path.exists(os.path.join(expected_install_dir, expected_file)):
-            OK = 'OK'         
+            OK = "OK"
         # pyunit method to compare 2 str
-        self.assertEqual(OK, 'OK')
+        self.assertEqual(OK, "OK")
 
     def test_040(self):
-        # Test the sat -h make 
+        # Test the sat -h make
         OK = "KO"
 
         import make
-        
-        if "The make command executes the \"make\" command" in make.description():
+
+        if 'The make command executes the "make" command' in make.description():
             OK = "OK"
 
         # pyunit method to compare 2 str
         self.assertEqual(OK, "OK")
 
+
 # test launch
-if __name__ == '__main__':
+if __name__ == "__main__":
     unittest.main()
     pass