1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/*
* Copyright 2009- ECMWF.
*
* This software is licensed under the terms of the Apache Licence version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation
* nor does it submit to any jurisdiction.
*/
#include <iostream>
#include <boost/test/unit_test.hpp>
#include "ecflow/core/Environment.hpp"
#include "ecflow/core/File.hpp"
#include "ecflow/core/Log.hpp"
#include "ecflow/core/Str.hpp"
#include "ecflow/node/Defs.hpp"
#include "ecflow/node/Family.hpp"
#include "ecflow/node/Jobs.hpp"
#include "ecflow/node/JobsParam.hpp"
#include "ecflow/node/Suite.hpp"
#include "ecflow/node/System.hpp"
#include "ecflow/test/scaffold/Naming.hpp"
using namespace std;
using namespace ecf;
BOOST_AUTO_TEST_SUITE(U_Node)
BOOST_AUTO_TEST_SUITE(T_JobProfiler)
BOOST_AUTO_TEST_CASE(test_job_profiler) {
ECF_NAME_THIS_TEST();
// delete the log file if it exists.
std::string log_path = File::test_data("libs/node/test/logfile.txt", "libs/node");
fs::remove(log_path);
BOOST_CHECK_MESSAGE(!fs::exists(log_path), "log file " << log_path << " not deleted ");
// Create a new log, file, we will look in here to see if job profiling is working
// Hence this test relies on output to be flushed
TestLog test_log(log_path); // will create log file, and destroy log and remove file at end of scope
// SET ECF_HOME, re-use exist test of directory and scripts
Defs theDefs;
{
suite_ptr suite = theDefs.add_suite("suite");
suite->addVariable(
Variable(ecf::environment::ECF_INCLUDE, File::test_data("libs/node/test/data/includes", "libs/node")));
suite->addVariable(
Variable(ecf::environment::ECF_HOME, File::test_data("libs/node/test/data/SMSHOME", "libs/node")));
suite->addVariable(Variable("SLEEPTIME", "10"));
family_ptr fam = suite->add_family("family");
fam->add_task("t1");
}
// cerr << theDefs << "\n";
// begin , will cause creation of generated variables. The generated variables
// are use in client scripts and used to locate the ecf files
theDefs.beginAll();
// By setting submitJobsInterval to -1, we enable the jobs profiling testing
// createJobs enables us to ensure job size is profiled
// spawn jobs set to false, do not create a separate process to spawn jobs
JobsParam jobParam(-1 /*submitJobsInterval*/, true /*createJobs*/, false /* spawn jobs */);
Jobs job(&theDefs);
bool ok = job.generate(jobParam);
BOOST_CHECK_MESSAGE(ok, "generate failed: " << jobParam.getErrorMsg());
// Check the log file, has the profiling
Log::instance()->flush_only();
std::string log_file_contents;
BOOST_CHECK_MESSAGE(File::open(log_path, log_file_contents),
"Could not open log file at " << log_path << " (" << strerror(errno) << ")");
BOOST_CHECK_MESSAGE(!log_file_contents.empty(), "log file is is empty ?");
BOOST_CHECK_MESSAGE(log_file_contents.find("Exceeds ECF_TASK_THRESHOLD") != std::string::npos,
"Exceeds ECF_TASK_THRESHOLD not in profile");
/// Destroy System singleton to avoid valgrind from complaining
System::destroy();
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|