Salome HOME
style: black format
[tools/sat.git] / test / test_sat5_0 / prepare / test_prepare.py
index 334054772909d6c934b4013c23abcdbc871cb46c..92f5e04a8ac05616b47117b5c6188b4c9572ee82 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-#-*- coding:utf-8 -*-
+# -*- coding:utf-8 -*-
 
 #  Copyright (C) 2010-2018  CEA/DEN
 #
@@ -25,87 +25,93 @@ import unittest
 import src
 from src.salomeTools import Sat
 
+
 class TestCase(unittest.TestCase):
     """Test of the prepare command"""
 
     def test_010(self):
         # Test the prepare command with a product in dev mode
-        OK = 'KO'
+        OK = "KO"
 
-        appli = 'appli-test'
-        product_name = 'PRODUCT_DEV'
+        appli = "appli-test"
+        product_name = "PRODUCT_DEV"
 
         sat = Sat()
-               
+
         sat.config(appli)
-        
-        expected_src_dir = src.product.get_product_config(sat.cfg, product_name).source_dir
-        expected_file_path = os.path.join(expected_src_dir, 'my_test_file.txt')
-        expected_text = 'HELLO WORLD\n'
-        
+
+        expected_src_dir = src.product.get_product_config(
+            sat.cfg, product_name
+        ).source_dir
+        expected_file_path = os.path.join(expected_src_dir, "my_test_file.txt")
+        expected_text = "HELLO WORLD\n"
+
         if os.path.exists(expected_src_dir):
             shutil.rmtree(expected_src_dir)
-        
-        sat.prepare(appli + ' --product ' + product_name)
-        
-        f = open(expected_file_path, 'r')
+
+        sat.prepare(appli + " --product " + product_name)
+
+        f = open(expected_file_path, "r")
         text = f.readlines()[0]
         if text == expected_text:
-            OK = 'OK'
-        self.assertEqual(OK, 'OK')
+            OK = "OK"
+        self.assertEqual(OK, "OK")
 
     def test_020(self):
         # Test the prepare command with all products
-        OK = 'KO'
+        OK = "KO"
 
-        appli = 'appli-test'
-        product_name = 'PRODUCT_DEV'
+        appli = "appli-test"
+        product_name = "PRODUCT_DEV"
 
         sat = Sat()
         sat.config(appli)
-        
-        expected_src_dir = src.product.get_product_config(sat.cfg, product_name).source_dir
-        expected_file_path = os.path.join(expected_src_dir, 'my_test_file.txt')
-        expected_text = 'HELLO WORLD\n'
-        
+
+        expected_src_dir = src.product.get_product_config(
+            sat.cfg, product_name
+        ).source_dir
+        expected_file_path = os.path.join(expected_src_dir, "my_test_file.txt")
+        expected_text = "HELLO WORLD\n"
+
         if os.path.exists(expected_src_dir):
             shutil.rmtree(expected_src_dir)
-        
+
         sat.prepare(appli)
-        
-        f = open(expected_file_path, 'r')
+
+        f = open(expected_file_path, "r")
         text = f.readlines()[0]
         if text == expected_text:
-            OK = 'OK'
-        self.assertEqual(OK, 'OK')
+            OK = "OK"
+        self.assertEqual(OK, "OK")
 
     def test_030(self):
         # Test the prepare command with all products
-        OK = 'KO'
+        OK = "KO"
 
-        appli = 'appli-test'
+        appli = "appli-test"
 
         sat = Sat()
         sat.config(appli)
-       
+
         try:
             sat.prepare(appli + " --force --force_patch")
-            OK = 'OK'
+            OK = "OK"
         except:
             pass
-        self.assertEqual(OK, 'OK')
+        self.assertEqual(OK, "OK")
 
     def test_040(self):
         # Test the sat -h prepare
         OK = "KO"
 
         import prepare
-        
+
         if "The prepare command gets the sources" in prepare.description():
             OK = "OK"
         self.assertEqual(OK, "OK")
 
+
 # test launch
-if __name__ == '__main__':
+if __name__ == "__main__":
     unittest.main()
     pass