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
|
/*
* 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 <iterator>
#include <string>
#include <boost/test/unit_test.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_HistoryParser)
static std::string dump(const std::vector<std::string>& vec) {
std::stringstream ss;
std::copy(vec.begin(), vec.end(), std::ostream_iterator<std::string>(ss, "\n"));
return ss.str();
}
BOOST_AUTO_TEST_CASE(test_defs_history_parser) {
ECF_NAME_THIS_TEST();
{
string str1("MSG:[12:03:55 21.8.2013] --shutdown=yes :map");
DefsHistoryParser parser;
parser.parse(str1);
std::vector<std::string> expected_messages;
expected_messages.emplace_back("MSG:[12:03:55 21.8.2013] --shutdown=yes :map");
BOOST_CHECK_MESSAGE(parser.parsed_messages() == expected_messages,
"Expected:\n"
<< dump(expected_messages) << "but found:\n"
<< dump(parser.parsed_messages()));
}
{
string str1("MSG:[12:03:55 21.8.2013] --shutdown=yes :mapMSG:[12:34:08 21.8.2013] --restart :map");
DefsHistoryParser parser;
parser.parse(str1);
std::vector<std::string> expected_messages;
expected_messages.emplace_back("MSG:[12:03:55 21.8.2013] --shutdown=yes :map");
expected_messages.emplace_back("MSG:[12:34:08 21.8.2013] --restart :map");
BOOST_CHECK_MESSAGE(parser.parsed_messages() == expected_messages,
"Expected:\n"
<< dump(expected_messages) << "but found:\n"
<< dump(parser.parsed_messages()));
}
{
string str1(
"MSG:[12:03:55 21.8.2013] --shutdown=yes :mapMSG:[12:34:08 21.8.2013] --restart :mapMSG:[12:47:22 "
"21.8.2013] --alter add variable SMSNODE 0 / :mapMSG:[13:38:45 21.8.2013] --alter add variable SMSTRYNO 0 "
"/ :mapMSG:[13:44:09 21.8.2013] --alter add variable SMSHOME /vol/emos/output / :mapMSG:[15:36:14 "
"21.8.2013] --shutdown=yes :mapMSG:[16:04:26 21.8.2013] --alter add variable SMSNODE 0 / :map");
DefsHistoryParser parser;
parser.parse(str1);
std::vector<std::string> expected_messages;
expected_messages.emplace_back("MSG:[12:03:55 21.8.2013] --shutdown=yes :map");
expected_messages.emplace_back("MSG:[12:34:08 21.8.2013] --restart :map");
expected_messages.emplace_back("MSG:[12:47:22 21.8.2013] --alter add variable SMSNODE 0 / :map");
expected_messages.emplace_back("MSG:[13:38:45 21.8.2013] --alter add variable SMSTRYNO 0 / :map");
expected_messages.emplace_back(
"MSG:[13:44:09 21.8.2013] --alter add variable SMSHOME /vol/emos/output / :map");
expected_messages.emplace_back("MSG:[15:36:14 21.8.2013] --shutdown=yes :map");
expected_messages.emplace_back("MSG:[16:04:26 21.8.2013] --alter add variable SMSNODE 0 / :map");
BOOST_CHECK_MESSAGE(parser.parsed_messages() == expected_messages,
"Expected:\n"
<< dump(expected_messages) << "but found:\n"
<< dump(parser.parsed_messages()));
}
{
string str1(
"MSG:[12:03:55 21.8.2013] --shutdown=yes :mapLOG:[12:34:08 21.8.2013] --restart :mapERR:[12:47:22 "
"21.8.2013] --alter add variable SMSNODE 0 / :mapWAR:[13:38:45 21.8.2013] --alter add variable SMSTRYNO 0 "
"/ :mapDBG:[13:44:09 21.8.2013] --alter add variable SMSHOME /vol/emos/output / :mapOTH:[15:36:14 "
"21.8.2013] --shutdown=yes :mapOTH:[16:04:26 21.8.2013] --alter add variable SMSNODE 0 / :map");
DefsHistoryParser parser;
parser.parse(str1);
std::vector<std::string> expected_messages;
expected_messages.emplace_back("MSG:[12:03:55 21.8.2013] --shutdown=yes :map");
expected_messages.emplace_back("LOG:[12:34:08 21.8.2013] --restart :map");
expected_messages.emplace_back("ERR:[12:47:22 21.8.2013] --alter add variable SMSNODE 0 / :map");
expected_messages.emplace_back("WAR:[13:38:45 21.8.2013] --alter add variable SMSTRYNO 0 / :map");
expected_messages.emplace_back(
"DBG:[13:44:09 21.8.2013] --alter add variable SMSHOME /vol/emos/output / :map");
expected_messages.emplace_back("OTH:[15:36:14 21.8.2013] --shutdown=yes :map");
expected_messages.emplace_back("OTH:[16:04:26 21.8.2013] --alter add variable SMSNODE 0 / :map");
BOOST_CHECK_MESSAGE(parser.parsed_messages() == expected_messages,
"Expected:\n"
<< dump(expected_messages) << "but found:\n"
<< dump(parser.parsed_messages()));
}
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
|