Salome HOME
merge from master 8B7B
[tools/sat.git] / test / test_sat5_0 / config / test_option_copy.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 from src.salomeTools import Sat
25
26 class TestCase(unittest.TestCase):
27     """sat config --copy"""
28     
29     def test_010(self):
30         # Test the copy of a pyconf
31         res = "KO"
32         appli_to_copy = "appli-test"
33
34         expected_file = os.path.expanduser(os.path.join('~','.salomeTools', 'Applications', 'LOCAL_' + appli_to_copy + '.pyconf'))
35         if os.path.exists(expected_file):
36             os.remove(expected_file)
37                
38         # The command to test
39         sat = Sat('')
40         sat.config('appli-test -c')
41
42         if os.path.exists(expected_file):
43             res = "OK"
44             os.remove(expected_file)
45         self.assertEqual(res, "OK")
46
47 # test launch
48 if __name__ == '__main__':
49     unittest.main()
50     pass