Salome HOME
c427f17c40adcbe1cc89980d3649b0ccb142b4db
[tools/libbatch.git] / src / PBS / Test / Test_ePBS.cxx
1 //  Copyright (C) 2007-2010  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_ePBS.cxx :
24  *
25  * Author : Renaud BARATE - EDF R&D
26  * Date   : April 2009
27  *
28  */
29
30 #include <iostream>
31 #include <fstream>
32 #include <cstring>
33
34 #include <Batch_Job.hxx>
35 #include <Batch_BatchManagerCatalog.hxx>
36 #include <Batch_FactBatchManager.hxx>
37 #include <Batch_FactBatchManager_eClient.hxx>
38 #include <Batch_BatchManager.hxx>
39 #include <Batch_BatchManager_eClient.hxx>
40
41 #include <SimpleParser.hxx>
42
43 using namespace std;
44 using namespace Batch;
45
46 void print_usage()
47 {
48   cout << "usage: Test_ePBS PROTOCOL" << endl;
49   cout << "    PROTOCOL      \"SSH\" or \"RSH\"" << endl;
50 }
51
52 int main(int argc, char** argv)
53 {
54   // Parse argument
55   if (argc != 2) {
56     print_usage();
57     return 1;
58   }
59   CommunicationProtocolType protocol;
60   if (strcmp(argv[1], "SSH") == 0)
61     protocol = SSH;
62   else if (strcmp(argv[1], "RSH") == 0)
63     protocol = RSH;
64   else {
65     print_usage();
66     return 1;
67   }
68
69   cout << "*******************************************************************************************" << endl;
70   cout << "This program tests the batch submission based on PBS emulation. Passwordless authentication" << endl;
71   cout << "must be used for this test to pass. For SSH, this can be configured with ssh-agent for" << endl;
72   cout << "instance. For RSH, this can be configured with the .rhosts file." << endl;
73   cout << "*******************************************************************************************" << endl;
74
75   // eventually remove any previous result
76   remove("result.txt");
77
78   try {
79     // Parse the test configuration file
80     SimpleParser parser;
81     parser.parseTestConfigFile();
82     const string & homedir = parser.getValue("TEST_EPBS_HOMEDIR");
83     const string & host = parser.getValue("TEST_EPBS_HOST");
84     const string & user = parser.getValue("TEST_EPBS_USER");
85     const string & queue = parser.getValue("TEST_EPBS_QUEUE");
86     int timeout = parser.getValueAsInt("TEST_EPBS_TIMEOUT");
87
88     // Define the job...
89     Job job;
90     // ... and its parameters ...
91     Parametre p;
92     p[EXECUTABLE]    = "./test-script.sh";
93     p[NAME]          = string("Test_ePBS_") + argv[1];
94     p[WORKDIR]       = homedir + "/tmp/Batch";
95     p[INFILE]        = Couple("seta.sh", "tmp/Batch/seta.sh");
96     p[INFILE]       += Couple("setb.sh", "tmp/Batch/setb.sh");
97     p[OUTFILE]       = Couple("result.txt", "tmp/Batch/result.txt");
98     p[TMPDIR]        = "tmp/Batch/";
99     p[USER]          = user;
100     p[NBPROC]        = 1;
101     p[MAXWALLTIME]   = 1;
102     p[MAXRAMSIZE]    = 1;
103     p[HOMEDIR]       = homedir;
104     p[QUEUE]         = queue;
105     job.setParametre(p);
106     // ... and its environment
107     Environnement e;
108     e["MYENVVAR"] = "MYVALUE";
109     job.setEnvironnement(e);
110     cout << job << endl;
111
112     // Get the catalog
113     BatchManagerCatalog& c = BatchManagerCatalog::getInstance();
114
115     // Create a BatchManager of type ePBS on localhost
116     FactBatchManager_eClient * fbm = (FactBatchManager_eClient *)(c("ePBS"));
117     BatchManager_eClient * bm = (*fbm)(host.c_str(), protocol, "lam");
118
119     // Submit the job to the BatchManager
120     JobId jobid = bm->submitJob(job);
121     cout << jobid.__repr__() << endl;
122
123     // Wait for the end of the job
124     string state = bm->waitForJobEnd(jobid, timeout);
125
126     if (state == FINISHED || state == FAILED) {
127       cout << "Job " << jobid.__repr__() << " is done" << endl;
128       bm->importOutputFiles(job, "resultdir/seconddirname");
129     } else {
130       cerr << "Timeout while executing job" << endl;
131       return 1;
132     }
133
134   } catch (GenericException e) {
135     cerr << "Error: " << e << endl;
136     return 1;
137   } catch (ParserException e) {
138     cerr << "Parser error: " << e.what() << endl;
139     return 1;
140   }
141
142   // test the result file
143   try {
144     SimpleParser resultParser;
145     resultParser.parse("resultdir/seconddirname/result.txt");
146     cout << "Result:" << endl << resultParser;
147     const string & envvar = resultParser.getValue("MYENVVAR");
148     int result = resultParser.getValueAsInt("c");
149     if (envvar == "MYVALUE" && result == 12) {
150       cout << "OK, Expected result found." << endl;
151       return 0;
152     } else {
153       cerr << "Error, result is not the expected one (MYENVVAR = MYVALUE, c = 12)." << endl;
154       return 1;
155     }
156   } catch (ParserException e) {
157     cerr << "Parser error on result file: " << e.what() << endl;
158     return 1;
159   }
160 }