danicoin/tests/UnitTests/DecomposeAmountIntoDigits.cpp

118 lines
3.5 KiB
C++
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
2014-03-03 22:07:58 +00:00
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "gtest/gtest.h"
#include <cstdint>
#include <vector>
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CryptoNoteFormatUtils.h"
2014-03-03 22:07:58 +00:00
#define VEC_FROM_ARR(vec) \
std::vector<uint64_t> vec; \
for (size_t i = 0; i < sizeof(vec##_arr) / sizeof(vec##_arr[0]); ++i) \
{ \
vec.push_back(vec##_arr[i]); \
}
namespace
{
struct chunk_handler_t
{
void operator()(uint64_t chunk) const
{
m_chunks.push_back(chunk);
}
mutable std::vector<uint64_t> m_chunks;
};
struct dust_handler_t
{
dust_handler_t()
: m_dust(0)
, m_has_dust(false)
{
}
void operator()(uint64_t dust) const
{
m_dust = dust;
m_has_dust = true;
}
mutable uint64_t m_dust;
mutable bool m_has_dust;
};
class decompose_amount_into_digits_test : public ::testing::Test
{
protected:
chunk_handler_t m_chunk_handler;
dust_handler_t m_dust_handler;
};
}
TEST_F(decompose_amount_into_digits_test, is_correct_0)
{
2014-03-20 11:46:11 +00:00
std::vector<uint64_t> expected_chunks;
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(0, 0, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_1)
{
2014-03-20 11:46:11 +00:00
std::vector<uint64_t> expected_chunks;
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(0, 10, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_2)
{
uint64_t expected_chunks_arr[] = {10};
VEC_FROM_ARR(expected_chunks);
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(10, 0, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_3)
{
std::vector<uint64_t> expected_chunks;
uint64_t expected_dust = 10;
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(10, 10, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}
TEST_F(decompose_amount_into_digits_test, is_correct_4)
{
uint64_t expected_dust = 8100;
std::vector<uint64_t> expected_chunks;
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(8100, 1000000, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}
TEST_F(decompose_amount_into_digits_test, is_correct_5)
{
uint64_t expected_chunks_arr[] = {100, 900000, 8000000};
VEC_FROM_ARR(expected_chunks);
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(8900100, 10, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_has_dust, false);
}
TEST_F(decompose_amount_into_digits_test, is_correct_6)
{
uint64_t expected_chunks_arr[] = {900000, 8000000};
VEC_FROM_ARR(expected_chunks);
uint64_t expected_dust = 100;
2015-05-27 12:08:46 +00:00
CryptoNote::decompose_amount_into_digits(8900100, 1000, m_chunk_handler, m_dust_handler);
2014-03-03 22:07:58 +00:00
ASSERT_EQ(m_chunk_handler.m_chunks, expected_chunks);
ASSERT_EQ(m_dust_handler.m_dust, expected_dust);
}