1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
25 * Author : Renaud BARATE - EDF R&D
34 #include <Batch_Constants.hxx>
35 #include <Batch_Job.hxx>
36 #include <Batch_BatchManagerCatalog.hxx>
37 #include <Batch_FactBatchManager.hxx>
38 #include <Batch_FactBatchManager_eLL.hxx>
39 #include <Batch_BatchManager.hxx>
41 #include <SimpleParser.hxx>
44 using namespace Batch;
48 cout << "usage: Test_eLL PROTOCOL" << endl;
49 cout << " PROTOCOL \"SSH\" or \"RSH\"" << endl;
52 int main(int argc, char** argv)
59 CommunicationProtocolType protocol;
60 if (strcmp(argv[1], "SSH") == 0)
62 else if (strcmp(argv[1], "RSH") == 0)
69 cout << "*******************************************************************************************" << endl;
70 cout << "This program tests the batch submission based on LoadLeveler emulation. Passwordless" << endl;
71 cout << "authentication must be used for this test to pass. For SSH, this can be configured with" << endl;
72 cout << "ssh-agent for instance. For RSH, this can be configured with the .rhosts file." << endl;
73 cout << "*******************************************************************************************" << endl;
75 // eventually remove any previous result
79 // Parse the test configuration file
81 parser.parseTestConfigFile();
82 const string & homedir = parser.getValue("TEST_ELL_HOMEDIR");
83 const string & host = parser.getValue("TEST_ELL_HOST");
84 const string & user = parser.getValue("TEST_ELL_USER");
85 const string & queue = parser.getValue("TEST_ELL_QUEUE");
86 const string & jobType = parser.getValue("TEST_ELL_JOBTYPE");
87 int timeout = parser.getValueAsInt("TEST_ELL_TIMEOUT");
91 // ... and its parameters ...
93 p[EXECUTABLE] = "./test-script.sh";
94 p[NAME] = string("Test_eLL_") + argv[1];
95 p[WORKDIR] = homedir + "/tmp/Batch";
96 p[INFILE] = Couple("seta.sh", "tmp/Batch/seta.sh");
97 p[INFILE] += Couple("setb.sh", "tmp/Batch/setb.sh");
98 p[OUTFILE] = Couple("result.txt", "tmp/Batch/result.txt");
102 p[HOMEDIR] = homedir;
104 p[LL_JOBTYPE] = jobType;
105 p[EXCLUSIVE] = false;
107 // ... and its environment
109 e["MYENVVAR"] = "MYVALUE";
110 job.setEnvironnement(e);
114 BatchManagerCatalog& c = BatchManagerCatalog::getInstance();
116 // Create a BatchManager of type ePBS on localhost
117 FactBatchManager * fbm = c("LL");
118 BatchManager * bm = (*fbm)(host.c_str(), user.c_str(), protocol);
120 // Submit the job to the BatchManager
121 JobId jobid = bm->submitJob(job);
122 cout << jobid.__repr__() << endl;
124 // Wait for the end of the job
125 string state = bm->waitForJobEnd(jobid, timeout);
127 if (state == FINISHED) {
128 cout << "Job " << jobid.__repr__() << " is done" << endl;
129 bm->importOutputFiles(job, "resultdir/seconddirname");
130 } else if (state == FAILED) {
131 cerr << "Job " << jobid.__repr__() << " finished in error" << endl;
132 bm->importOutputFiles(job, "resultdir/seconddirname");
135 cerr << "Timeout while executing job" << endl;
139 } catch (GenericException e) {
140 cerr << "Error: " << e << endl;
142 } catch (ParserException e) {
143 cerr << "Parser error: " << e.what() << endl;
147 // test the result file
149 SimpleParser resultParser;
150 resultParser.parse("resultdir/seconddirname/result.txt");
151 cout << "Result:" << endl << resultParser;
152 const string & envvar = resultParser.getValue("MYENVVAR");
153 int result = resultParser.getValueAsInt("c");
154 if (envvar == "MYVALUE" && result == 12) {
155 cout << "OK, Expected result found." << endl;
158 cerr << "Error, result is not the expected one (MYENVVAR = MYVALUE, c = 12)." << endl;
161 } catch (ParserException e) {
162 cerr << "Parser error on result file: " << e.what() << endl;