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
|
/*
* 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 <boost/test/unit_test.hpp>
#include "ecflow/node/Defs.hpp"
#include "ecflow/node/Family.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(U_Node)
BOOST_AUTO_TEST_SUITE(T_NodeBeginRequeue)
BOOST_AUTO_TEST_CASE(test_node_begin_requeue_hybrid) {
ECF_NAME_THIS_TEST();
// Create a suite with a *HYBRID* clock, and tasks with day,date and cron time attributes
defs_ptr the_defs = Defs::create();
suite_ptr s1 = the_defs->add_suite("s1");
s1->addClock(ClockAttr(true));
family_ptr f1 = s1->add_family("f1");
CronAttr cron;
std::vector<int> week_days;
week_days.push_back(0);
week_days.push_back(1);
cron.addWeekDays(week_days);
cron.add_time_series(10, 10, true);
// For task t1 which has day attribute. For this test to succeed the day must not match today day.
// So that under the hybrid clock, its is set to complete
auto todays_date = Calendar::second_clock_time().date();
int todays_day_as_number = todays_date.day_of_week().as_number();
int tommorrow = todays_day_as_number + 1;
if (tommorrow > 6) {
tommorrow = 0;
}
task_ptr t1 = f1->add_task("t1");
t1->addDay(DayAttr(DayAttr::Day_t(tommorrow)));
task_ptr t2 = f1->add_task("t2");
t2->addDate(DateAttr(0, 0, 2014));
task_ptr t3 = f1->add_task("t3");
t3->addCron(cron);
// begin the suite, Under hybrid clock, nodes with day,date and cron attributes should be marked as complete
the_defs->beginAll();
BOOST_CHECK_MESSAGE(t1->state() == NState::COMPLETE, "Expected node to be complete");
BOOST_CHECK_MESSAGE(t2->state() == NState::COMPLETE, "Expected node to be complete");
BOOST_CHECK_MESSAGE(t3->state() == NState::COMPLETE, "Expected node to be complete");
// Change the node state, so that we can test re-queue
t1->set_state(NState::QUEUED);
t2->set_state(NState::QUEUED);
t3->set_state(NState::QUEUED);
BOOST_CHECK_MESSAGE(t1->state() == NState::QUEUED, "Expected node to be QUEUED");
BOOST_CHECK_MESSAGE(t2->state() == NState::QUEUED, "Expected node to be QUEUED");
BOOST_CHECK_MESSAGE(t3->state() == NState::QUEUED, "Expected node to be QUEUED");
// Now re-queue all and make sure re-queue also Under hybrid clock, nodes with day,date and cron
// attributes should be marked as complete
the_defs->requeue();
BOOST_CHECK_MESSAGE(t1->state() == NState::COMPLETE, "Expected node to be complete");
BOOST_CHECK_MESSAGE(t2->state() == NState::COMPLETE, "Expected node to be complete");
BOOST_CHECK_MESSAGE(t3->state() == NState::COMPLETE, "Expected node to be complete");
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|