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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/*
* 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 <cstdlib>
#include <iostream>
#include <stdexcept>
#include <boost/test/unit_test.hpp>
#include "ecflow/core/CheckPt.hpp"
#include "ecflow/core/Converter.hpp"
#include "ecflow/core/Ecf.hpp"
#include "ecflow/core/Environment.hpp"
#include "ecflow/core/File.hpp"
#include "ecflow/core/Host.hpp"
#include "ecflow/core/Log.hpp"
#include "ecflow/core/Str.hpp"
#include "ecflow/node/JobProfiler.hpp"
#include "ecflow/server/ServerEnvironment.hpp"
#include "ecflow/test/scaffold/Naming.hpp"
using namespace std;
using namespace ecf;
BOOST_AUTO_TEST_SUITE(U_Server)
BOOST_AUTO_TEST_SUITE(T_ServerEnvironment)
BOOST_AUTO_TEST_CASE(test_server_environment_ecfinterval) {
ECF_NAME_THIS_TEST();
// ecflow server interval is valid for range [1-60]
std::string port = Str::DEFAULT_PORT_NUMBER();
for (int i = -10; i < 70; ++i) {
string errorMsg;
string argument = "--ecfinterval=" + ecf::convert_to<std::string>(i);
int argc = 2;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>(argument.c_str())};
ServerEnvironment serverEnv(argc, argv);
bool valid = serverEnv.valid(errorMsg);
if (i > 0 && i < 61) {
BOOST_REQUIRE_MESSAGE(valid, "Server environment ecfinterval valid range is [1-60] " << errorMsg);
BOOST_CHECK_MESSAGE(serverEnv.submitJobsInterval() == i,
"Expected submit jobs interval of " << i << " but found "
<< serverEnv.submitJobsInterval());
}
else {
BOOST_CHECK_MESSAGE(!valid, "Server environment ecfinterval valid range is [1-60] " << errorMsg);
}
port = serverEnv.the_port();
}
Host h;
fs::remove(h.ecf_log_file(port));
}
BOOST_AUTO_TEST_CASE(test_server_environment_port) {
ECF_NAME_THIS_TEST();
// The port numbers are divided into three ranges.\n";
// o the Well Known Ports, (require root permission) 0 -1023\n";
// o the Registered Ports, 1024 -49151\n";
// o Dynamic and/or Private Ports. 49151 -65535\n\n";
// Please set in the range 1024-49151 via argument or \n";
Host h;
int argc = 2;
{
std::string errorMsg;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=0")};
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(!serverEnv.valid(errorMsg), " Server environment not valid " << errorMsg);
fs::remove(h.ecf_log_file(serverEnv.the_port()));
}
{
std::string errorMsg;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=1000")};
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(!serverEnv.valid(errorMsg), " Server environment not valid " << errorMsg);
fs::remove(h.ecf_log_file(serverEnv.the_port()));
}
{
std::string errorMsg;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=49151")};
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(!serverEnv.valid(errorMsg), " Server environment not valid " << errorMsg);
fs::remove(h.ecf_log_file(serverEnv.the_port()));
}
{
std::string errorMsg;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=3144")};
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(serverEnv.valid(errorMsg), " Server environment not valid " << errorMsg);
BOOST_CHECK_MESSAGE(serverEnv.port() == 3144, "Expected 3144 but found " << serverEnv.port());
fs::remove(h.ecf_log_file(serverEnv.the_port()));
}
}
BOOST_AUTO_TEST_CASE(test_server_environment_log_file) {
ECF_NAME_THIS_TEST();
// Regression test log file creation
int argc = 2;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=3144")};
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(Log::instance(), "Log singleton not created");
BOOST_CHECK_MESSAGE(fs::exists(Log::instance()->path()), "Log file not created");
// Check that server variable ECF_LOG created and value is correct
std::vector<std::pair<std::string, std::string>> server_vars;
serverEnv.variables(server_vars);
bool found_var = false;
typedef std::pair<std::string, std::string> mpair;
for (const mpair& p : server_vars) {
if (ecf::environment::ECF_LOG == p.first) {
BOOST_CHECK_MESSAGE(p.second == Log::instance()->path(),
"Expected " << Log::instance()->path() << " but found " << p.second);
found_var = true;
break;
}
}
BOOST_CHECK_MESSAGE(found_var, "Failed to find server variable ECF_LOG");
// tear down remove the log file created by ServerEnvironment
Host h;
fs::remove(h.ecf_log_file(serverEnv.the_port()));
/// Destroy Log singleton to avoid valgrind from complaining
Log::destroy();
}
BOOST_AUTO_TEST_CASE(test_server_config_file) {
ECF_NAME_THIS_TEST();
// Regression test to make sure the server environment variable don't get removed
int argc = 1;
char* argv[] = {const_cast<char*>("ServerEnvironment")};
ServerEnvironment serverEnv(argc, argv, File::test_data("Server/server_environment.cfg", "Server"));
std::vector<std::string> expected_variables = ServerEnvironment::expected_variables();
std::vector<std::pair<std::string, std::string>> server_vars;
serverEnv.variables(server_vars);
for (const std::string& expected_var : expected_variables) {
bool found_var = false;
typedef std::pair<std::string, std::string> s_pair;
for (const s_pair& p : server_vars) {
if (expected_var == p.first) {
found_var = true;
break;
}
}
BOOST_CHECK_MESSAGE(found_var, "Failed to find server var " << expected_var);
}
{
// check other way, so that this test gets updated
typedef std::pair<std::string, std::string> mpair;
for (const mpair& p : server_vars) {
bool found_var = false;
for (const std::string& expected_var : expected_variables) {
if (expected_var == p.first) {
found_var = true;
break;
}
}
BOOST_CHECK_MESSAGE(found_var, "Failed to update test for server var " << p.first);
}
}
// Check the values in the server config file, are the *SAME* as the defaults, when config is *NOT* present
// Please note do *NOT* use quotes for the values, otherwise quotes get added.
// WRONG: ECF_MICRODEF = "%"
// RIGHT: ECF_MICRODEF = %
// o IGNORE ECF_CHECK: We *ONLY check those value in the config, that should not be altered.
// since we add root path, and append with host/port
// o ignore ECF_CHECKMODE: not a server variable
//
typedef std::pair<std::string, std::string> mpair;
for (const mpair& p : server_vars) {
// std::cout << "server variables " << p.first << " " << p.second << "\n";
if (ecf::environment::ECF_HOME == p.first) {
BOOST_CHECK_MESSAGE(p.second == fs::current_path().string(),
"for ECF_HOME expected " << fs::current_path().string() << " but found " << p.second);
continue;
}
if (string("ECF_PORT") == p.first && !ecf::environment::has("ECF_PORT")) {
BOOST_CHECK_MESSAGE(p.second == Str::DEFAULT_PORT_NUMBER(),
"for ECF_PORT expected " << Str::DEFAULT_PORT_NUMBER() << " but found " << p.second);
continue;
}
if (string("ECF_CHECKINTERVAL") == p.first) {
std::string expected = ecf::convert_to<std::string>(CheckPt::default_interval());
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_CHECKINTERVAL expected " << CheckPt::default_interval() << " but found "
<< p.second);
continue;
}
if (string("ECF_INTERVAL") == p.first) {
std::string expected = "60";
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_INTERVAL expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_JOB_CMD") == p.first) {
std::string expected = Ecf::JOB_CMD();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_JOB_CMD expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_KILL_CMD") == p.first) {
std::string expected = Ecf::KILL_CMD();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_KILL_CMD expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_STATUS_CMD") == p.first) {
std::string expected = Ecf::STATUS_CMD();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_STATUS_CMD expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_CHECK_CMD") == p.first) {
std::string expected = Ecf::CHECK_CMD();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_CHECK_CMD expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_URL_CMD") == p.first) {
std::string expected = Ecf::URL_CMD();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_URL_CMD expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_URL_BASE") == p.first) {
std::string expected = Ecf::URL_BASE();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_URL_BASE expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_URL") == p.first) {
std::string expected = Ecf::URL();
BOOST_CHECK_MESSAGE(p.second == expected, "for ECF_URL expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_MICRODEF") == p.first) {
std::string expected = Ecf::MICRO();
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_MICRODEF expected " << expected << " but found " << p.second);
continue;
}
if (string("ECF_PASSWD") == p.first) {
Host host;
std::string port = Str::DEFAULT_PORT_NUMBER();
if (ecf::environment::has("ECF_PORT")) {
port = ecf::environment::has("ECF_PORT");
}
std::string expected = host.prefix_host_and_port(port, ecf::environment::ECF_PASSWD);
BOOST_CHECK_MESSAGE(p.second == expected,
"for ECF_PASSWD expected " << expected << " but found " << p.second);
continue;
}
}
// tear down remove the log file created by ServerEnvironment
Host host;
fs::remove(host.ecf_log_file(serverEnv.the_port()));
}
BOOST_AUTO_TEST_CASE(test_server_environment_variables) {
ECF_NAME_THIS_TEST();
// Regression test to make sure the server environment variable don't get removed
int argc = 2;
char* argv[] = {const_cast<char*>("ServerEnvironment"), const_cast<char*>("--port=3144")};
ServerEnvironment serverEnv(argc, argv);
std::vector<std::string> expected_variables = ServerEnvironment::expected_variables();
std::vector<std::pair<std::string, std::string>> server_vars;
serverEnv.variables(server_vars);
for (const std::string& expected_var : expected_variables) {
bool found_var = false;
typedef std::pair<std::string, std::string> mpair;
for (const mpair& p : server_vars) {
if (expected_var == p.first) {
found_var = true;
break;
}
}
BOOST_CHECK_MESSAGE(found_var, "Failed to find server var " << expected_var);
}
// check other way, so that this test gets updated
typedef std::pair<std::string, std::string> mpair;
for (const mpair& p : server_vars) {
bool found_var = false;
for (const std::string& expected_var : expected_variables) {
if (expected_var == p.first) {
found_var = true;
break;
}
}
BOOST_CHECK_MESSAGE(found_var, "Failed to update test for server var " << p.first);
}
// tear down remove the log file created by ServerEnvironment
Host h;
fs::remove(h.ecf_log_file(serverEnv.the_port()));
/// Destroy Log singleton to avoid valgrind from complaining
Log::destroy();
}
BOOST_AUTO_TEST_CASE(test_server_profile_threshold_environment_variable) {
ECF_NAME_THIS_TEST();
int argc = 1;
char* argv[] = {const_cast<char*>("ServerEnvironment")};
{
auto* put = const_cast<char*>("ECF_TASK_THRESHOLD=9");
BOOST_CHECK_MESSAGE(putenv(put) == 0, "putenv failed for " << put);
}
ServerEnvironment serverEnv(argc, argv);
BOOST_CHECK_MESSAGE(JobProfiler::task_threshold() == 9,
"Expected task threshold of 9 but found " << JobProfiler::task_threshold());
// ==================================================================================
// Note test for errors
vector<string> dodgy_thresholds;
dodgy_thresholds.emplace_back("ECF_TASK_THRESHOLD=x");
dodgy_thresholds.emplace_back("ECF_TASK_THRESHOLD=,");
dodgy_thresholds.emplace_back("ECF_TASK_THRESHOLD=:");
dodgy_thresholds.emplace_back("ECF_TASK_THRESHOLD=,,");
for (auto& dodgy_threshold : dodgy_thresholds) {
// cout << "check -------> " << dodgy_thresholds[i] << endl;
BOOST_CHECK_MESSAGE(putenv(const_cast<char*>(dodgy_threshold.c_str())) == 0,
"putenv failed for " << dodgy_threshold);
BOOST_CHECK_THROW(ServerEnvironment serverEnv(argc, argv), std::runtime_error);
}
unsetenv(const_cast<char*>(
"ECF_TASK_THRESHOLD")); // remove from env, otherwise valgrind complains, *AND* affects other tests
Host h;
fs::remove(h.ecf_log_file(serverEnv.the_port()));
/// Destroy Log singleton to avoid valgrind from complaining
Log::destroy();
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|