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
|
/*
* 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 <fstream>
#include <iostream>
#include <boost/test/unit_test.hpp>
#include "ServerTestHarness.hpp"
#include "TestFixture.hpp"
#include "ecflow/attribute/VerifyAttr.hpp"
#include "ecflow/core/Environment.hpp"
#include "ecflow/core/Timer.hpp"
#include "ecflow/node/Defs.hpp"
#include "ecflow/node/Family.hpp"
#include "ecflow/node/Limit.hpp"
#include "ecflow/node/Suite.hpp"
#include "ecflow/node/Task.hpp"
#include "ecflow/test/scaffold/Naming.hpp"
using namespace std;
using namespace ecf;
BOOST_AUTO_TEST_SUITE(S_Test)
BOOST_AUTO_TEST_SUITE(T_Events)
// In the test case we will dynamically create all the test data.
// The data is created dynamically so that we can stress test the server
// This test does not have any time dependencies in the def file.
BOOST_AUTO_TEST_CASE(test_event_and_query) {
ECF_NAME_THIS_TEST();
DurationTimer timer;
TestClean clean_at_start_and_end;
// Create the defs file corresponding to the text below
// ECF_HOME variable is automatically added by the test harness.
// ECF_INCLUDE variable is automatically added by the test harness.
// SLEEPTIME variable is automatically added by the test harness.
// ECF_CLIENT_EXE_PATH variable is automatically added by the test harness.
// This is substituted in sms includes
// Allows test to run without requiring installation
// # Note: we have to use relative paths, since these tests are relocatable
// suite test_events
// family family1
// task a
// event 1 myEvent # initial value is clear(default), child command is expected to set
// event ecflow_1527 set # initial value is set, child command is expected to clear
// meter myMeter 0 100
// label task_a_label Label1
// task b
// trigger a:myEvent and a:ecflow_1527 == clear
// label task_b_label label1
// endfamily
// family family2
// task aa
// trigger ../family1/a:myMeter >= 90 and ../family1/a:myEvent
// task bb
// trigger ../family1/a:myMeter >= 50 or ../family1/a:myEvent
// endfamily
// endsuite
Defs theDefs;
task_ptr task_a;
task_ptr task_b;
suite_ptr suite;
{
suite = theDefs.add_suite("test_events");
suite->addLimit(Limit("limit_x", 15)); // just to test query ; limit
{
family_ptr fam = suite->add_family("family1");
task_a = fam->add_task("a");
task_a->addMeter(Meter("myMeter", 0, 100, 100)); // ServerTestHarness will add correct ecf
task_a->addEvent(Event(1, "myEvent")); // ServerTestHarness will add correct ecf
task_a->addEvent(Event("ecflow_1527", true /*initial value*/)); // ServerTestHarness will add correct ecf
task_a->addLabel(Label("task_a_label", "task_a_label_value")); // ServerTestHarness will add correct ecf
task_a->addVerify(VerifyAttr(NState::COMPLETE, 1));
task_b = fam->add_task("b");
task_b->add_trigger("a:myEvent and a:ecflow_1527 == clear");
task_b->addLabel(Label(
"task_b_label", "task_b_label_value", "new_label_value")); // ServerTestHarness will add correct ecf
task_b->addVerify(VerifyAttr(NState::COMPLETE, 1));
}
{
family_ptr fam2 = suite->add_family("family2");
task_ptr task_aa = fam2->add_task("aa");
task_ptr task_bb = fam2->add_task("bb");
task_aa->add_trigger("../family1/a:myMeter >= 90 and ../family1/a:myEvent");
task_aa->addVerify(VerifyAttr(NState::COMPLETE, 1));
task_bb->add_trigger("../family1/a:myMeter >= 50 or ../family1/a:myEvent");
task_bb->addVerify(VerifyAttr(NState::COMPLETE, 1));
}
// cout << theDefs;
}
// The test harness will create corresponding directory structure & default ecf file
ServerTestHarness serverTestHarness;
serverTestHarness.run(theDefs, ServerTestHarness::testDataDefsLocation("test_events.def"));
TestFixture::client().set_child_path(task_a->absNodePath()); // simulate call from a job, to see logging of job/task
// calling TestFixture::client().query()
BOOST_CHECK_MESSAGE(TestFixture::client().query("meter", task_a->absNodePath(), "myMeter") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "100",
"Expected query of meter to return 100 but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("event", task_a->absNodePath(), "myEvent") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "set",
"Expected query of event to return 'set' but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("event", task_a->absNodePath(), "ecflow_1527") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "clear",
"Expected query of event to return 'clear' but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("variable", task_a->absNodePath(), "ECF_TRYNO") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "1",
"Expected query of variable(ECF_TRYNO) to return '1' but found "
<< TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("variable", task_a->absNodePath(), "ECF_PORT") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == TestFixture::client().port(),
"Expected query of variable(ECF_PORT) to return "
<< TestFixture::client().port() << " but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("trigger", task_a->absNodePath(), "b == complete") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "true",
"Expected query of trigger to return 'true' but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("label", task_a->absNodePath(), "task_a_label") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "task_a_label_value",
"Expected query of label to return 'task_a_label_value' but found "
<< TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("label", task_b->absNodePath(), "task_b_label") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "new_label_value",
"Expected query of label to return 'new_label_value' but found "
<< TestFixture::client().get_string());
// Added since in 5.2.0 (only 5.2.0 server supports this behaviour)
if (!ecf::environment::has("ECF_DISABLE_TEST_FOR_OLD_SERVERS")) {
BOOST_CHECK_MESSAGE(TestFixture::client().query("limit", suite->absNodePath(), "limit_x") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "0",
"Expected query of limit to return '0' but found " << TestFixture::client().get_string());
BOOST_CHECK_MESSAGE(TestFixture::client().query("limit_max", suite->absNodePath(), "limit_x") == 0,
"query command failed " << TestFixture::client().errorMsg());
BOOST_CHECK_MESSAGE(TestFixture::client().get_string() == "15",
"Expected query of limit_max to return '15' but found "
<< TestFixture::client().get_string());
}
cout << timer.duration() << " update-calendar-count(" << serverTestHarness.serverUpdateCalendarCount() << ")\n";
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|