// Copyright (c) 2011-2016 The Cryptonote developers // 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 #include "Common/Util.h" #include "CryptoNoteCore/Account.h" #include "CryptoNoteCore/CryptoNoteFormatUtils.h" #include "CryptoNoteCore/CryptoNoteTools.h" #include "CryptoNoteCore/Currency.h" #include "CryptoNoteCore/TransactionExtra.h" #include "Common/StringTools.h" #include #define AUTO_VAL_INIT(n) boost::value_initialized() TEST(parseTransactionExtra, handles_empty_extra) { std::vector extra;; std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_TRUE(tx_extra_fields.empty()); } TEST(parseTransactionExtra, handles_padding_only_size_1) { const uint8_t extra_arr[] = {0}; std::vector extra(&extra_arr[0], &extra_arr[0] + sizeof(extra_arr)); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(1, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPadding), tx_extra_fields[0].type()); ASSERT_EQ(1, boost::get(tx_extra_fields[0]).size); } TEST(parseTransactionExtra, handles_padding_only_size_2) { const uint8_t extra_arr[] = {0, 0}; std::vector extra(&extra_arr[0], &extra_arr[0] + sizeof(extra_arr)); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(1, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPadding), tx_extra_fields[0].type()); ASSERT_EQ(2, boost::get(tx_extra_fields[0]).size); } TEST(parseTransactionExtra, handles_padding_only_max_size) { std::vector extra(TX_EXTRA_NONCE_MAX_COUNT, 0); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(1, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPadding), tx_extra_fields[0].type()); ASSERT_EQ(TX_EXTRA_NONCE_MAX_COUNT, boost::get(tx_extra_fields[0]).size); } TEST(parseTransactionExtra, handles_padding_only_exceed_max_size) { std::vector extra(TX_EXTRA_NONCE_MAX_COUNT + 1, 0); std::vector tx_extra_fields; ASSERT_FALSE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); } TEST(parseTransactionExtra, handles_invalid_padding_only) { std::vector extra(2, 0); extra[1] = 42; std::vector tx_extra_fields; ASSERT_FALSE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); } TEST(parseTransactionExtra, handles_pub_key_only) { const uint8_t extra_arr[] = {1, 30, 208, 98, 162, 133, 64, 85, 83, 112, 91, 188, 89, 211, 24, 131, 39, 154, 22, 228, 80, 63, 198, 141, 173, 111, 244, 183, 4, 149, 186, 140, 230}; std::vector extra(&extra_arr[0], &extra_arr[0] + sizeof(extra_arr)); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(1, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPublicKey), tx_extra_fields[0].type()); } TEST(parseTransactionExtra, handles_extra_nonce_only) { const uint8_t extra_arr[] = {2, 1, 42}; std::vector extra(&extra_arr[0], &extra_arr[0] + sizeof(extra_arr)); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(1, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraNonce), tx_extra_fields[0].type()); CryptoNote::TransactionExtraNonce extra_nonce = boost::get(tx_extra_fields[0]); ASSERT_EQ(1, extra_nonce.nonce.size()); ASSERT_EQ(42, extra_nonce.nonce[0]); } TEST(parseTransactionExtra, handles_pub_key_and_padding) { const uint8_t extra_arr[] = {1, 30, 208, 98, 162, 133, 64, 85, 83, 112, 91, 188, 89, 211, 24, 131, 39, 154, 22, 228, 80, 63, 198, 141, 173, 111, 244, 183, 4, 149, 186, 140, 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; std::vector extra(&extra_arr[0], &extra_arr[0] + sizeof(extra_arr)); std::vector tx_extra_fields; ASSERT_TRUE(CryptoNote::parseTransactionExtra(extra, tx_extra_fields)); ASSERT_EQ(2, tx_extra_fields.size()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPublicKey), tx_extra_fields[0].type()); ASSERT_EQ(typeid(CryptoNote::TransactionExtraPadding), tx_extra_fields[1].type()); } TEST(parse_and_validate_tx_extra, is_valid_tx_extra_parsed) { Logging::LoggerGroup logger; CryptoNote::Currency currency = CryptoNote::CurrencyBuilder(logger).currency(); CryptoNote::Transaction tx = AUTO_VAL_INIT(tx); CryptoNote::AccountBase acc; acc.generate(); CryptoNote::BinaryArray b = Common::asBinaryArray("dsdsdfsdfsf"); ASSERT_TRUE(currency.constructMinerTx(0, 0, 10000000000000, 1000, currency.minimumFee(), acc.getAccountKeys().address, tx, b, 1)); Crypto::PublicKey tx_pub_key = CryptoNote::getTransactionPublicKeyFromExtra(tx.extra); ASSERT_NE(tx_pub_key, CryptoNote::NULL_PUBLIC_KEY); } TEST(parse_and_validate_tx_extra, fails_on_big_extra_nonce) { Logging::LoggerGroup logger; CryptoNote::Currency currency = CryptoNote::CurrencyBuilder(logger).currency(); CryptoNote::Transaction tx = AUTO_VAL_INIT(tx); CryptoNote::AccountBase acc; acc.generate(); CryptoNote::BinaryArray b(TX_EXTRA_NONCE_MAX_COUNT + 1, 0); ASSERT_FALSE(currency.constructMinerTx(0, 0, 10000000000000, 1000, currency.minimumFee(), acc.getAccountKeys().address, tx, b, 1)); } TEST(parse_and_validate_tx_extra, fails_on_wrong_size_in_extra_nonce) { CryptoNote::Transaction tx = AUTO_VAL_INIT(tx); tx.extra.resize(20, 0); tx.extra[0] = TX_EXTRA_NONCE; tx.extra[1] = 255; std::vector tx_extra_fields; ASSERT_FALSE(CryptoNote::parseTransactionExtra(tx.extra, tx_extra_fields)); } TEST(validate_parse_amount_case, validate_parse_amount) { Logging::LoggerGroup logger; CryptoNote::Currency currency = CryptoNote::CurrencyBuilder(logger).numberOfDecimalPlaces(8).currency(); uint64_t res = 0; bool r = currency.parseAmount("0.0001", res); ASSERT_TRUE(r); ASSERT_EQ(res, 10000); r = currency.parseAmount("100.0001", res); ASSERT_TRUE(r); ASSERT_EQ(res, 10000010000); r = currency.parseAmount("000.0000", res); ASSERT_TRUE(r); ASSERT_EQ(res, 0); r = currency.parseAmount("0", res); ASSERT_TRUE(r); ASSERT_EQ(res, 0); r = currency.parseAmount(" 100.0001 ", res); ASSERT_TRUE(r); ASSERT_EQ(res, 10000010000); r = currency.parseAmount(" 100.0000 ", res); ASSERT_TRUE(r); ASSERT_EQ(res, 10000000000); r = currency.parseAmount(" 100. 0000 ", res); ASSERT_FALSE(r); r = currency.parseAmount("100. 0000", res); ASSERT_FALSE(r); r = currency.parseAmount("100 . 0000", res); ASSERT_FALSE(r); r = currency.parseAmount("100.00 00", res); ASSERT_FALSE(r); r = currency.parseAmount("1 00.00 00", res); ASSERT_FALSE(r); }