blob: 4f5412ef382b8274dbaa18339f25611d99250754 [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#undef NDEBUG
#include <cassert>
#include "IntegrationBase.h"
#include "core/logging/Logger.h"
#include "../TestBase.h"
#include "../KamikazeProcessor.h"
class OnScheduleErrorHandlingTests : public IntegrationBase {
public:
virtual void runAssertions() {
std::string logs = LogTestController::getInstance().log_output.str();
auto result = countPatInStr(logs, minifi::processors::KamikazeProcessor::OnScheduleExceptionStr);
size_t last_pos = result.first;
int occurrences = result.second;
assert(occurrences > 1); // Verify retry of onSchedule and onUnSchedule calls
std::vector<std::string> must_appear_byorder_msgs = {minifi::processors::KamikazeProcessor::OnUnScheduleLogStr,
minifi::processors::KamikazeProcessor::OnScheduleLogStr,
minifi::processors::KamikazeProcessor::OnTriggerExceptionStr,
"[warning] ProcessSession rollback for kamikaze executed"};
for (const auto &msg : must_appear_byorder_msgs) {
last_pos = logs.find(msg, last_pos);
assert(last_pos != std::string::npos);
}
assert(logs.find(minifi::processors::KamikazeProcessor::OnTriggerLogStr) == std::string::npos);
}
virtual void testSetup() {
LogTestController::getInstance().setDebug<core::ProcessGroup>();
LogTestController::getInstance().setDebug<core::Processor>();
LogTestController::getInstance().setDebug<core::ProcessSession>();
LogTestController::getInstance().setDebug<minifi::processors::KamikazeProcessor>();
}
virtual void waitToVerifyProcessor() {
std::this_thread::sleep_for(std::chrono::seconds(3));
flowController_->updatePropertyValue("kamikaze", minifi::processors::KamikazeProcessor::ThrowInOnSchedule.getName(), "false");
std::this_thread::sleep_for(std::chrono::seconds(3));
}
virtual void cleanup() {}
};
int main(int argc, char **argv) {
std::string test_file_location, url;
if (argc > 1) {
test_file_location = argv[1];
}
OnScheduleErrorHandlingTests harness;
harness.run(test_file_location);
return 0;
}