]> SALOME platform Git repositories - tools/libbatch.git/blob - src/Local/Test/Test_Local_RSH.cxx
Salome HOME
5bd5c05a311823d1f89d72df27c811804c9fdfd7
[tools/libbatch.git] / src / Local / Test / Test_Local_RSH.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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/ or email : webmaster.salome@opencascade.com
21 //
22 /*
23  * Test_Local_RSH.cxx :
24  *
25  * Author : Renaud BARATE - EDF R&D
26  * Date   : April 2009
27  *
28  */
29
30 #include <iostream>
31 #include <fstream>
32
33 #include <Batch_Job.hxx>
34 #include <Batch_BatchManagerCatalog.hxx>
35 #include <Batch_FactBatchManager.hxx>
36 #include <Batch_BatchManager.hxx>
37 #include <Test_Local_config.h>
38
39 using namespace std;
40 using namespace Batch;
41
42 int main(int argc, char** argv)
43 {
44   cout << "*******************************************************************************************" << endl;
45   cout << "This program tests the local batch submission based on RSH. Passwordless RSH authentication" << endl;
46   cout << "must be used for this test to pass (this can be configured with the .rhosts file)." << endl;
47   cout << "*******************************************************************************************" << endl;
48
49   // eventually remove any previous result
50   remove("result.txt");
51
52   try {
53     // Define the job...
54     Job job;
55     // ... and its parameters ...
56     Parametre p;
57     p["EXECUTABLE"]    = "./copied-test-script.sh";
58     p["NAME"]          = "Test_Local_RSH";
59     p["WORKDIR"]       = TEST_LOCAL_RSH_WORK_DIR;
60     p["INFILE"]        = Couple("seta.sh", "copied-seta.sh");
61     p["INFILE"]       += Couple("setb.sh", "copied-setb.sh");
62     p["INFILE"]       += Couple("test-script.sh", "copied-test-script.sh");
63     p["OUTFILE"]       = Couple("result.txt", "orig-result.txt");
64     p["EXECUTIONHOST"] = TEST_LOCAL_RSH_EXECUTION_HOST;
65     job.setParametre(p);
66     // ... and its environment
67     Environnement e;
68     job.setEnvironnement(e);
69     cout << job << endl;
70
71     // Get the catalog
72     BatchManagerCatalog& c = BatchManagerCatalog::getInstance();
73
74     // Create a BatchManager of type Local_RSH on localhost
75     FactBatchManager * fbm = c("RSH");
76     BatchManager * bm = (*fbm)("localhost");
77
78     // Submit the job to the BatchManager
79     JobId jobid = bm->submitJob(job);
80     cout << jobid.__repr__() << endl;
81
82     // Wait for the end of the job
83     string state = "Unknown";
84     for (int i=0 ; i<100 && state != "Done" ; i++) {
85       usleep(100000);
86       Versatile paramState = jobid.queryJob().getParametre()["STATE"];
87       state = (paramState.size() > 0) ? paramState.str() : "Unknown";
88       cout << "Job state is: " << state << endl;
89     }
90
91     if (state != "Done") {
92       cerr << "Error: Job not finished after timeout" << endl;
93       return 1;
94     }
95
96     cout << "Job " << jobid.__repr__() << " is done" << endl;
97
98   } catch (GenericException e) {
99     cerr << "Error: " << e << endl;
100     return 1;
101   }
102
103   // wait for 5 more seconds for the copy of output files and the cleanup
104   // (there's no cleaner way to do that yet)
105   sleep(5);
106
107   // test the result file
108   string exp = "c = 12";
109   string res;
110   ifstream f("result.txt");
111   getline(f, res);
112   f.close();
113
114   cout << "result found : " << res << ", expected : " << exp << endl;
115
116   if (res == exp)
117     return 0;
118   else
119     return 1;
120 }