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
|
/*
* 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/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_NodeState)
BOOST_AUTO_TEST_CASE(test_state_hierarchy) {
ECF_NAME_THIS_TEST();
// Create a defs file corresponding to:
// suite s1
// family f1
// task t1
// task t2
// task t3
// task t4
// task t5
// endfamily
// endsuite
Defs theDefs;
suite_ptr s1 = theDefs.add_suite("suite1");
family_ptr f1 = s1->add_family("family");
task_ptr t1 = f1->add_task("t1");
task_ptr t2 = f1->add_task("t2");
task_ptr t3 = f1->add_task("t3");
task_ptr t4 = f1->add_task("t4");
NState::State result = s1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::UNKNOWN,
"Expected NState::UNKNOWN for suite but found " << NState::toString(result));
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::UNKNOWN,
"Expected NState::UNKNOWN for family but found " << NState::toString(result));
{
f1->setStateOnlyHierarchically(NState::QUEUED);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::QUEUED,
"Expected NState::QUEUED for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t1->set_state(NState::ABORTED);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::ABORTED,
"Expected NState::ABORTED for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t2->set_state(NState::SUBMITTED);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::SUBMITTED,
"Expected NState::SUBMITTED for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t3->set_state(NState::ACTIVE);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::ACTIVE,
"Expected NState::ACTIVE for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t3->set_state(NState::ACTIVE);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::ACTIVE,
"Expected NState::ACTIVE for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t1->set_state(NState::COMPLETE);
t2->set_state(NState::COMPLETE);
t3->set_state(NState::COMPLETE);
t4->set_state(NState::COMPLETE);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::COMPLETE,
"Expected NState::COMPLETE for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t1->set_state(NState::COMPLETE);
t2->set_state(NState::ACTIVE);
t3->set_state(NState::ACTIVE);
t4->set_state(NState::QUEUED);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::ACTIVE,
"Expected NState::ACTIVE for family but found " << NState::toString(result));
}
{
f1->setStateOnlyHierarchically(NState::QUEUED);
t1->set_state(NState::COMPLETE);
t2->set_state(NState::ACTIVE);
t3->set_state(NState::ABORTED);
t4->set_state(NState::QUEUED);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::ABORTED,
"Expected NState::ABORTED for family but found " << NState::toString(result));
}
{ // ECFLOW-347
f1->setStateOnlyHierarchically(NState::UNKNOWN);
t1->set_state(NState::COMPLETE);
result = f1->computedState(Node::IMMEDIATE_CHILDREN);
BOOST_REQUIRE_MESSAGE(result == NState::COMPLETE,
"Expected NState::COMPLETE for family but found " << NState::toString(result));
}
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|