Salome HOME
Merge from V6_main 13/12/2012
[modules/hexablock.git] / src / HEXABLOCK / test_tools.cxx
1
2 // C++ : Outils communs aux tests unitaires
3
4 //  Copyright (C) 2009-2011  CEA/DEN, EDF R&D
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 //  See http://www.salome-platform.org/ 
21 //  or email : webmaster.salome@opencascade.com
22
23
24 #include "test_unit.hxx"
25
26 #include <string>
27 #include <cstdlib>
28 #include <unistd.h>
29
30 static int nbr_vtk = 0;
31 static cpchar case_name = "hexa";
32 static Hex::Document*   docu = NULL;
33
34 static string workspace = "/tmp/test_hexablock";
35
36 // ======================================================== call_system 
37 void call_system (const string&  command)
38 {
39    system (command.c_str());
40 }
41 // ======================================================== goto_workspace
42 void goto_workspace ()
43 {
44    string rmdir = "rm -rf ";
45    string mkdir = "mkdir -p ";
46
47    call_system (rmdir + workspace);
48    call_system (mkdir + workspace);
49
50    chdir (workspace.c_str());
51 }
52 // ======================================================== free_workspace
53 void free_workspace ()
54 {
55    string chmod = "chmod 777 ";
56
57    call_system (chmod + workspace);
58    call_system (chmod + workspace + "/*");
59 }