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
|
/*
* 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 <string>
#include <boost/test/unit_test.hpp>
#include "ecflow/core/Ecf.hpp"
#include "ecflow/core/Version.hpp"
#include "ecflow/node/Defs.hpp"
#include "ecflow/test/scaffold/Naming.hpp"
using namespace std;
using namespace ecf;
BOOST_AUTO_TEST_SUITE(U_Node)
BOOST_AUTO_TEST_SUITE(T_VariableSubstitutionDefs)
BOOST_AUTO_TEST_CASE(test_defs_variable_substitution) {
ECF_NAME_THIS_TEST();
Defs defs;
{
std::vector<Variable> vec;
vec.emplace_back("AVI", "avi");
vec.emplace_back("BAHRA", "bahra");
vec.emplace_back("LOWER", "10");
vec.emplace_back("PATH", "/fred/bill/joe");
vec.emplace_back("fred", "%bill%");
vec.emplace_back("bill", "%fred%");
vec.emplace_back("hello", "%hello%");
vec.emplace_back("mary", "%jane%");
vec.emplace_back("jane", "10");
defs.server_state().add_or_update_user_variables(vec);
}
// See page 31, section 5.1 variable inheritance, of SMS users guide
std::string cmd = "%AVI%-%BAHRA%-%LOWER%-%AVI%";
string expected = "avi-bahra-10-avi";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), "substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%ECF_VERSION%";
expected = Version::full();
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), "substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%PATH%";
expected = "/fred/bill/joe";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "/%AVI%/%BAHRA%/%LOWER%%PATH%";
expected = "/avi/bahra/10/fred/bill/joe";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%mary%";
expected = "10"; // double substitution
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%fred%";
expected = "%fred%"; // infinite substitution
BOOST_CHECK_MESSAGE(!defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%hello%";
expected = "%hello%"; // infinite substitution
BOOST_CHECK_MESSAGE(!defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = Ecf::MICRO();
expected = Ecf::MICRO();
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%PATH";
expected = "%PATH";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%%";
expected = "%";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%ERROR%";
expected = "%ERROR%";
BOOST_CHECK_MESSAGE(!defs.variableSubstitution(cmd), " substitution expected to fail since ERROR does not exist");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "";
expected = "";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
// new rules
// %<VAR>:substitute %
// If we find VAR, then use it, else use substitute
cmd = "%AVI:goblly gook%";
expected = "avi";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%PATH:goblly::: gook%";
expected = "/fred/bill/joe";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%LOWER:fred% %AVI:fred2%";
expected = "10 avi";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%LOWER:fred% %AVI:fred2";
expected = "10 %AVI:fred2";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%NULL:goblly gook%";
expected = "goblly gook";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%NULL::goblly gook%";
expected = ":goblly gook";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%NULL:%";
expected = "";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%:%";
expected = "";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed ");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
}
BOOST_AUTO_TEST_CASE(test_defs_variable_substitution_double_micro) {
ECF_NAME_THIS_TEST();
Defs defs;
std::string cmd = "%%";
std::string expected = "%";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%%%";
expected = "%%";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%%%%";
expected = "%%";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "%%%%%";
expected = "%%%";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), " substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "date +%%Y.%%m.%%d";
expected = "date +%Y.%m.%d";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), "substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
cmd = "printf %%02d %HOUR:00%";
expected = "printf %02d 00";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), "substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
defs.server_state().add_or_update_user_variables("HOUR", "hammer time");
cmd = "printf %%02d %HOUR:00%";
expected = "printf %02d hammer time";
BOOST_CHECK_MESSAGE(defs.variableSubstitution(cmd), "substitution failed");
BOOST_CHECK_MESSAGE(cmd == expected, "expected '" << expected << "' but found '" << cmd << "'");
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|