blob: 6e0c1c22b1dd8cf3773c6b8ed2ee94241384f121 [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.
*/
#include <sys/stat.h>
#undef NDEBUG
#include <cassert>
#include <utility>
#include <chrono>
#include <fstream>
#include <memory>
#include <string>
#include <thread>
#include <type_traits>
#include <vector>
#include <iostream>
#include <sstream>
#include "HTTPClient.h"
#include "InvokeHTTP.h"
#include "TestBase.h"
#include "utils/StringUtils.h"
#include "core/Core.h"
#include "core/logging/Logger.h"
#include "core/ProcessGroup.h"
#include "core/yaml/YamlConfiguration.h"
#include "FlowController.h"
#include "properties/Configure.h"
#include "unit/ProvenanceTestHelper.h"
#include "io/StreamFactory.h"
#include "CivetServer.h"
#include "RemoteProcessorGroupPort.h"
#include "core/ConfigurableComponent.h"
#include "controllers/SSLContextService.h"
#include "TestServer.h"
#include "c2/C2Agent.h"
#include "protocols/RESTReceiver.h"
#include "protocols/RESTSender.h"
#include "HTTPIntegrationBase.h"
#include "HTTPHandlers.h"
#include "agent/build_description.h"
#include "processors/LogAttribute.h"
class LightWeightC2Handler : public HeartbeatHandler {
public:
explicit LightWeightC2Handler(bool isSecure)
: HeartbeatHandler(isSecure),
calls_(0) {
}
virtual ~LightWeightC2Handler() = default;
virtual void handleHeartbeat(const rapidjson::Document& root, struct mg_connection * conn) {
(void)conn;
if (calls_ == 0) {
verifyJsonHasAgentManifest(root);
} else {
assert(root.HasMember("agentInfo") == true);
assert(root["agentInfo"].HasMember("agentManifest") == false);
}
calls_++;
}
private:
std::atomic<size_t> calls_;
};
class VerifyC2Heartbeat : public VerifyC2Base {
public:
explicit VerifyC2Heartbeat(bool isSecure)
: VerifyC2Base(isSecure) {
}
virtual ~VerifyC2Heartbeat() = default;
virtual void testSetup() {
LogTestController::getInstance().setTrace<minifi::c2::C2Agent>();
LogTestController::getInstance().setDebug<minifi::c2::RESTSender>();
LogTestController::getInstance().setDebug<minifi::c2::RESTProtocol>();
LogTestController::getInstance().setDebug<minifi::c2::RESTReceiver>();
VerifyC2Base::testSetup();
}
void runAssertions() {
assert(LogTestController::getInstance().contains("Received Ack from Server") == true);
assert(LogTestController::getInstance().contains("C2Agent] [debug] Stopping component invoke") == true);
assert(LogTestController::getInstance().contains("C2Agent] [debug] Stopping component FlowController") == true);
}
void configureC2RootClasses() {
configuration->set("nifi.c2.root.classes", "DeviceInfoNode,AgentInformation,FlowInformation");
}
};
class VerifyLightWeightC2Heartbeat : public VerifyC2Heartbeat {
public:
explicit VerifyLightWeightC2Heartbeat(bool isSecure)
: VerifyC2Heartbeat(isSecure) {
}
virtual ~VerifyLightWeightC2Heartbeat() = default;
void configureC2RootClasses() {
configuration->set("nifi.c2.root.classes", "DeviceInfoNode,AgentInformationWithoutManifest,FlowInformation");
}
};
int main(int argc, char **argv) {
std::string key_dir, test_file_location, url;
url = "http://localhost:0/api/heartbeat";
if (argc > 1) {
test_file_location = argv[1];
if (argc > 2) {
url = "https://localhost:0/api/heartbeat";
key_dir = argv[2];
}
}
bool isSecure = false;
if (url.find("https") != std::string::npos) {
isSecure = true;
}
{
VerifyC2Heartbeat harness(isSecure);
harness.setKeyDir(key_dir);
HeartbeatHandler responder(isSecure);
harness.setUrl(url, &responder);
harness.run(test_file_location);
}
VerifyLightWeightC2Heartbeat harness(isSecure);
harness.setKeyDir(key_dir);
LightWeightC2Handler responder(isSecure);
harness.setUrl(url, &responder);
harness.run(test_file_location);
return 0;
}