danicoin/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp
2015-07-30 16:22:07 +01:00

153 lines
4.7 KiB
C++
Executable file

// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#include <chrono>
#include <thread>
#include <Logging/LoggerRef.h>
#include <Logging/ConsoleLogger.h>
#include "NodeRpcProxy/NodeRpcProxy.h"
using namespace CryptoNote;
using namespace Logging;
#undef ERROR
class NodeObserver : public INodeObserver {
public:
NodeObserver(const std::string& name, NodeRpcProxy& nodeProxy, ILogger& log)
: m_name(name)
, m_nodeProxy(nodeProxy)
, logger(log, "NodeObserver:" + name) {
}
virtual ~NodeObserver() {
}
virtual void peerCountUpdated(size_t count) {
logger(INFO) << '[' << m_name << "] peerCountUpdated " << count << " = " << m_nodeProxy.getPeerCount();
}
virtual void localBlockchainUpdated(uint32_t height) override {
logger(INFO) << '[' << m_name << "] localBlockchainUpdated " << height << " = " << m_nodeProxy.getLastLocalBlockHeight();
std::vector<uint64_t> amounts;
amounts.push_back(100000000);
auto outs = std::make_shared<std::vector<COMMAND_RPC_GET_RANDOM_OUTPUTS_FOR_AMOUNTS::outs_for_amount>>();
m_nodeProxy.getRandomOutsByAmounts(std::move(amounts), 10, *outs.get(), [outs, this](std::error_code ec) {
if (!ec) {
if (1 == outs->size() && 10 == (*outs)[0].outs.size()) {
logger(INFO) << "getRandomOutsByAmounts called successfully";
} else {
logger(ERROR) << "getRandomOutsByAmounts returned invalid result";
}
} else {
logger(ERROR) << "failed to call getRandomOutsByAmounts: " << ec.message() << ':' << ec.value();
}
});
}
virtual void lastKnownBlockHeightUpdated(uint32_t height) override {
logger(INFO) << '[' << m_name << "] lastKnownBlockHeightUpdated " << height << " = " << m_nodeProxy.getLastKnownBlockHeight();
}
private:
LoggerRef logger;
std::string m_name;
NodeRpcProxy& m_nodeProxy;
};
int main(int argc, const char** argv) {
Logging::ConsoleLogger log;
Logging::LoggerRef logger(log, "main");
NodeRpcProxy nodeProxy("127.0.0.1", 18081);
NodeObserver observer1("obs1", nodeProxy, log);
NodeObserver observer2("obs2", nodeProxy, log);
nodeProxy.addObserver(&observer1);
nodeProxy.addObserver(&observer2);
nodeProxy.init([&](std::error_code ec) {
if (ec) {
logger(ERROR) << "init error: " << ec.message() << ':' << ec.value();
} else {
logger(INFO, BRIGHT_GREEN) << "initialized";
}
});
//nodeProxy.init([](std::error_code ec) {
// if (ec) {
// logger(ERROR) << "init error: " << ec.message() << ':' << ec.value();
// } else {
// LOG_PRINT_GREEN("initialized", LOG_LEVEL_0);
// }
//});
std::this_thread::sleep_for(std::chrono::seconds(5));
if (nodeProxy.shutdown()) {
logger(INFO, BRIGHT_GREEN) << "shutdown";
} else {
logger(ERROR) << "shutdown error";
}
nodeProxy.init([&](std::error_code ec) {
if (ec) {
logger(ERROR) << "init error: " << ec.message() << ':' << ec.value();
} else {
logger(INFO, BRIGHT_GREEN) << "initialized";
}
});
std::this_thread::sleep_for(std::chrono::seconds(5));
if (nodeProxy.shutdown()) {
logger(INFO, BRIGHT_GREEN) << "shutdown";
} else {
logger(ERROR) << "shutdown error";
}
CryptoNote::Transaction tx;
nodeProxy.relayTransaction(tx, [&](std::error_code ec) {
if (!ec) {
logger(INFO) << "relayTransaction called successfully";
} else {
logger(ERROR) << "failed to call relayTransaction: " << ec.message() << ':' << ec.value();
}
});
nodeProxy.init([&](std::error_code ec) {
if (ec) {
logger(ERROR) << "init error: " << ec.message() << ':' << ec.value();
} else {
logger(INFO, BRIGHT_GREEN) << "initialized";
}
});
std::this_thread::sleep_for(std::chrono::seconds(5));
nodeProxy.relayTransaction(tx, [&](std::error_code ec) {
if (!ec) {
logger(INFO) << "relayTransaction called successfully";
} else {
logger(ERROR) << "failed to call relayTransaction: " << ec.message() << ':' << ec.value();
}
});
std::this_thread::sleep_for(std::chrono::seconds(60));
}