Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / TEST_CPP / test_tools.cxx
1
2 // C++ : Outils communs aux tests unitaires
3
4 // Copyright (C) 2009-2024  CEA, EDF
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, or (at your option) any later version.
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/ or email : webmaster.salome@opencascade.com
21 //
22
23
24 #include "test_unit.hxx"
25
26 #include <string>
27 #include <cstdlib>
28 #ifndef WIN32
29 #include <unistd.h>
30 #endif
31
32 #include <sys/types.h>   // pour getpid()
33 #ifndef WIN32
34 #include <unistd.h>      // pour getpid()
35 #else
36 #include <direct.h>
37 #include <process.h>
38 #endif
39
40
41 static int nbr_vtk = 0;
42 static cpchar case_name = "hexa";
43 static Hex::Document*   docu = NULL;
44
45 static string workspace = "/tmp/test_hexablock";
46 static bool   w_default = true;
47
48 // ======================================================== call_system 
49 void call_system (const string&  command)
50 {
51    system (command.c_str());
52 }
53 // ======================================================== goto_workspace
54 void goto_workspace ()
55 {
56    string rmdir = "rm -rf ";
57    string mkdir = "mkdir -p ";
58
59    if (w_default)
60       {
61 #ifndef WIN32
62       pid_t pid = getpid ();
63 #else
64      int pid = _getpid ();
65 #endif
66       char     bufpid [8];
67       sprintf (bufpid, "_p%d", pid);
68       workspace += bufpid;
69       w_default = false;
70       }
71
72    call_system (rmdir + workspace);
73    call_system (mkdir + workspace);
74
75 #ifndef WIN32
76    chdir (workspace.c_str());
77 #else
78    _chdir (workspace.c_str());
79 #endif
80
81 }
82 // ======================================================== free_workspace
83 void free_workspace ()
84 {
85    string chmod = "chmod 777 ";
86
87    call_system (chmod + workspace);
88    call_system (chmod + workspace + "/*");
89 }