danicoin/tests/integration_test_lib/TestWallet.h

61 lines
2 KiB
C
Raw Normal View History

2015-05-27 12:08:46 +00:00
// 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/>.
#pragma once
#include "cryptonote_core/Currency.h"
#include "INode.h"
#include "IWallet.h"
#include "System/Dispatcher.h"
#include "System/Event.h"
#include "wallet/Wallet.h"
namespace Tests {
namespace Common {
class TestWallet : private CryptoNote::IWalletObserver {
public:
TestWallet(System::Dispatcher& dispatcher, const CryptoNote::Currency& currency, CryptoNote::INode& node);
~TestWallet();
std::error_code init();
std::error_code sendTransaction(const std::string& address, uint64_t amount, CryptoNote::TransactionHash& txHash);
void waitForSynchronizationToHeight(uint32_t height);
CryptoNote::IWallet* wallet();
CryptoNote::AccountPublicAddress address() const;
protected:
virtual void synchronizationCompleted(std::error_code result) override;
virtual void synchronizationProgressUpdated(uint64_t current, uint64_t total) override;
private:
System::Dispatcher& m_dispatcher;
System::Event m_synchronizationCompleted;
System::Event m_someTransactionUpdated;
CryptoNote::INode& m_node;
const CryptoNote::Currency& m_currency;
std::unique_ptr<CryptoNote::IWallet> m_wallet;
std::unique_ptr<CryptoNote::IWalletObserver> m_walletObserver;
uint32_t m_currentHeight;
uint32_t m_synchronizedHeight;
std::error_code m_lastSynchronizationResult;
};
}
}