Salome HOME
Initial import: adding files
[tools/libbatch.git] / src / Local / Test / Test_Local_SSH.cxx
diff --git a/src/Local/Test/Test_Local_SSH.cxx b/src/Local/Test/Test_Local_SSH.cxx
new file mode 100644 (file)
index 0000000..f946b43
--- /dev/null
@@ -0,0 +1,109 @@
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
+//
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
+//
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+/*
+ * Test_Local_SSH.cxx :
+ *
+ * Author : Renaud BARATE - EDF R&D
+ * Date   : April 2009
+ *
+ */
+
+#include <iostream>
+#include <fstream>
+
+#include <Batch_Job.hxx>
+#include <Batch_BatchManagerCatalog.hxx>
+#include <Batch_FactBatchManager.hxx>
+#include <Batch_BatchManager.hxx>
+#include <Test_Local_config.h>
+
+using namespace std;
+using namespace Batch;
+
+int main(int argc, char** argv)
+{
+  cout << "*******************************************************************************************" << endl;
+  cout << "This program tests the local batch submission based on SSH. Passwordless SSH authentication" << endl;
+  cout << "must be used for this test to pass (this can be configured with ssh-agent for instance)." << endl;
+  cout << "*******************************************************************************************" << endl;
+
+  // eventually remove any previous result
+  remove("result.txt");
+
+  // Define the job...
+  Job job;
+  // ... and its parameters ...
+  Parametre p;
+  p["EXECUTABLE"]    = "./copied-test-script.sh";
+  p["NAME"]          = "Test_Local_SSH";
+  p["WORKDIR"]       = TEST_LOCAL_SSH_WORK_DIR;
+  p["INFILE"]        = Couple("seta.sh", "copied-seta.sh");
+  p["INFILE"]       += Couple("setb.sh", "copied-setb.sh");
+  p["INFILE"]       += Couple("test-script.sh", "copied-test-script.sh");
+  p["OUTFILE"]       = Couple("result.txt", "orig-result.txt");
+  p["EXECUTIONHOST"] = TEST_LOCAL_SSH_EXECUTION_HOST;
+  job.setParametre(p);
+  // ... and its environment (SSH_AUTH_SOCK env var is important for ssh agent authentication)
+  Environnement e;
+  e["SSH_AUTH_SOCK"] = getenv("SSH_AUTH_SOCK");
+  job.setEnvironnement(e);
+  cout << job << endl;
+
+  // Get the catalog
+  BatchManagerCatalog& c = BatchManagerCatalog::getInstance();
+
+  // Create a BatchManager of type Local_SSH on localhost
+  FactBatchManager * fbm = c("SSH");
+  BatchManager * bm = (*fbm)("localhost");
+
+  // Submit the job to the BatchManager
+  JobId jobid = bm->submitJob(job);
+  cout << jobid.__repr__() << endl;
+
+  // Wait for the end of the job
+  string state = "Unknown";
+  while (state != "Done") {
+    usleep(10000);
+    JobInfo jinfo = jobid.queryJob();
+    state = jinfo.getParametre()["STATE"].str();
+  }
+
+  cout << "Job " << jobid.__repr__() << " is done" << endl;
+
+  // wait for 5 more seconds for the copy of output files and the cleanup
+  // (there's no cleaner way to do that yet)
+  sleep(5);
+
+  // test the result file
+  string exp = "c = 12";
+  string res;
+  ifstream f("result.txt");
+  getline(f, res);
+  f.close();
+
+  cout << "result found : " << res << ", expected : " << exp << endl;
+
+  if (res == exp)
+    return 0;
+  else
+    return 1;
+}