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
|
/*
* 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/attribute/ZombieAttr.hpp"
#include "ecflow/test/scaffold/Naming.hpp"
using namespace std;
using namespace ecf;
BOOST_AUTO_TEST_SUITE(U_Attributes)
BOOST_AUTO_TEST_SUITE(T_ZombieAttr)
BOOST_AUTO_TEST_CASE(test_zombie_attr) {
ECF_NAME_THIS_TEST();
{
ZombieAttr ecf(ecf::Child::ECF, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL);
BOOST_CHECK_MESSAGE(ecf.zombie_lifetime() == ZombieAttr::default_ecf_zombie_life_time(),
"expected " << ZombieAttr::default_ecf_zombie_life_time() << " but got "
<< ecf.zombie_lifetime());
ZombieAttr user(ecf::Child::USER, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL);
BOOST_CHECK_MESSAGE(user.zombie_lifetime() == ZombieAttr::default_user_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr path(ecf::Child::PATH, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL);
BOOST_CHECK_MESSAGE(path.zombie_lifetime() == ZombieAttr::default_path_zombie_life_time(),
"Zombie life time not as expected");
}
{
int zombie_life_time = 0;
ZombieAttr ecf(
ecf::Child::ECF, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(ecf.zombie_lifetime() == ZombieAttr::default_ecf_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr user(
ecf::Child::USER, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(user.zombie_lifetime() == ZombieAttr::default_user_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr path(
ecf::Child::PATH, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(path.zombie_lifetime() == ZombieAttr::default_path_zombie_life_time(),
"Zombie life time not as expected");
}
{
int zombie_life_time = -1;
ZombieAttr ecf(
ecf::Child::ECF, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(ecf.zombie_lifetime() == ZombieAttr::default_ecf_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr user(
ecf::Child::USER, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(user.zombie_lifetime() == ZombieAttr::default_user_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr path(
ecf::Child::PATH, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(path.zombie_lifetime() == ZombieAttr::default_path_zombie_life_time(),
"Zombie life time not as expected");
}
{
int zombie_life_time = 29;
ZombieAttr ecf(
ecf::Child::ECF, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(ecf.zombie_lifetime() == ZombieAttr::minimum_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr user(
ecf::Child::USER, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(user.zombie_lifetime() == ZombieAttr::minimum_zombie_life_time(),
"Zombie life time not as expected");
ZombieAttr path(
ecf::Child::PATH, std::vector<ecf::Child::CmdType>(), ecf::ZombieCtrlAction::FAIL, zombie_life_time);
BOOST_CHECK_MESSAGE(path.zombie_lifetime() == ZombieAttr::minimum_zombie_life_time(),
"Zombie life time not as expected");
}
}
BOOST_AUTO_TEST_CASE(test_zombie_attr_parsing) {
ECF_NAME_THIS_TEST();
{
ZombieAttr zombie = ZombieAttr::create("user:fob::");
BOOST_CHECK_MESSAGE(zombie.zombie_type() == ecf::Child::USER, "Type not as expected");
BOOST_CHECK_MESSAGE(zombie.action() == ecf::ZombieCtrlAction::FOB, "action not as expected");
BOOST_CHECK_MESSAGE(zombie.zombie_lifetime() == ZombieAttr::default_user_zombie_life_time(),
"Zombie life time not as expected");
BOOST_CHECK_MESSAGE(zombie.child_cmds().empty(), "Expected no children");
}
{
ZombieAttr zombie = ZombieAttr::create("ecf:fail::");
BOOST_CHECK_MESSAGE(zombie.zombie_type() == ecf::Child::ECF, "Type not as expected");
BOOST_CHECK_MESSAGE(zombie.action() == ecf::ZombieCtrlAction::FAIL, "action not as expected");
BOOST_CHECK_MESSAGE(zombie.zombie_lifetime() == ZombieAttr::default_ecf_zombie_life_time(),
"Zombie life time not as expected");
BOOST_CHECK_MESSAGE(zombie.child_cmds().empty(), "Expected no children");
}
{
ZombieAttr zombie = ZombieAttr::create("path:fail::");
BOOST_CHECK_MESSAGE(zombie.zombie_type() == ecf::Child::PATH, "Type not as expected");
BOOST_CHECK_MESSAGE(zombie.action() == ecf::ZombieCtrlAction::FAIL, "action not as expected");
BOOST_CHECK_MESSAGE(zombie.zombie_lifetime() == ZombieAttr::default_path_zombie_life_time(),
"Zombie life time not as expected");
BOOST_CHECK_MESSAGE(zombie.child_cmds().empty(), "Expected no children");
}
{
ZombieAttr zombie = ZombieAttr::create("user:fob::29");
BOOST_CHECK_MESSAGE(zombie.zombie_type() == ecf::Child::USER, "Type not as expected");
BOOST_CHECK_MESSAGE(zombie.action() == ecf::ZombieCtrlAction::FOB, "action not as expected");
BOOST_CHECK_MESSAGE(zombie.zombie_lifetime() == ZombieAttr::minimum_zombie_life_time(),
"Zombie life time < 60, should default to 60");
BOOST_CHECK_MESSAGE(zombie.child_cmds().empty(), "Expected no children");
}
{
ZombieAttr zombie = ZombieAttr::create("user:fob:init:29");
BOOST_CHECK_MESSAGE(zombie.zombie_type() == ecf::Child::USER, "Type not as expected");
BOOST_CHECK_MESSAGE(zombie.action() == ecf::ZombieCtrlAction::FOB, "action not as expected");
BOOST_CHECK_MESSAGE(zombie.zombie_lifetime() == ZombieAttr::minimum_zombie_life_time(),
"Zombie life time < 60, should default to 60");
BOOST_CHECK_MESSAGE(zombie.child_cmds().size() == 1, "Expected one child");
}
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|