594 lines
No EOL
28 KiB
C++
594 lines
No EOL
28 KiB
C++
/*
|
|
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
|
|
* Copyright (c) 2019 PBSA, and contributors.
|
|
*
|
|
* The MIT License
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <graphene/app/database_api.hpp>
|
|
#include <graphene/app/api.hpp>
|
|
#include <graphene/chain/account_object.hpp>
|
|
|
|
#include "../common/database_fixture.hpp"
|
|
|
|
#include <fc/smart_ref_impl.hpp>
|
|
#include <fc/crypto/digest.hpp>
|
|
|
|
using namespace graphene::app;
|
|
using namespace graphene::chain;
|
|
using namespace graphene::chain::test;
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(account_history_tests, database_fixture)
|
|
|
|
BOOST_AUTO_TEST_CASE(get_account_history) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
//account_id_type() do 3 ops
|
|
create_bitasset("USD", account_id_type());
|
|
auto dan_acc = create_account("dan");
|
|
auto bob_acc = create_account("bob");
|
|
|
|
generate_block();
|
|
fc::usleep(fc::milliseconds(2000));
|
|
|
|
int asset_create_op_id = operation::tag<asset_create_operation>::value;
|
|
int account_create_op_id = operation::tag<account_create_operation>::value;
|
|
|
|
//account_id_type() did 3 ops and includes id0
|
|
vector<operation_history_object> histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 100, operation_history_id_type());
|
|
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 0u);
|
|
BOOST_CHECK_EQUAL(histories[2].op.which(), asset_create_op_id);
|
|
|
|
// 1 account_create op larger than id1
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 100, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK(histories[0].id.instance() != 0);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id);
|
|
|
|
// Limit 2 returns 2 result
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 2, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK(histories[1].id.instance() != 0);
|
|
BOOST_CHECK_EQUAL(histories[1].op.which(), account_create_op_id);
|
|
// bob has 1 op
|
|
histories = hist_api.get_account_history(bob_acc.get_id(), operation_history_id_type(), 100, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id);
|
|
} FC_LOG_AND_RETHROW()
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(zero_id_object) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
// no history at all in the chain
|
|
vector<operation_history_object> histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(0), 4, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
create_bitasset("USD", account_id_type()); // create op 0
|
|
generate_block();
|
|
fc::usleep(fc::milliseconds(2000));
|
|
|
|
// what if the account only has one history entry and it is 0?
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 0u);
|
|
} FC_LOG_AND_RETHROW()
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(get_account_history_additional) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
// A = account_id_type() with records { 5, 3, 1, 0 }, and
|
|
// B = dan with records { 6, 4, 2, 1 }
|
|
// account_id_type() and dan share operation id 1(account create) - share can be also in id 0
|
|
|
|
// no history at all in the chain
|
|
vector<operation_history_object> histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(0), 4, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
create_bitasset("USD", account_id_type()); // create op 0
|
|
generate_block();
|
|
// what if the account only has one history entry and it is 0?
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 0u);
|
|
|
|
const account_object& dan = create_account("dan"); // create op 1
|
|
|
|
create_bitasset("CNY", dan.id); // create op 2
|
|
create_bitasset("BTC", account_id_type()); // create op 3
|
|
create_bitasset("XMR", dan.id); // create op 4
|
|
create_bitasset("EUR", account_id_type()); // create op 5
|
|
create_bitasset("OIL", dan.id); // create op 6
|
|
|
|
generate_block();
|
|
|
|
// f(A, 0, 4, 9) = { 5, 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 6) = { 5, 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(6));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 5) = { 5, 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(5));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 4) = { 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(4));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 3) = { 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(3));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 2) = { 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 1) = { 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 0u);
|
|
|
|
// f(A, 0, 4, 0) = { 5, 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 4, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 0u);
|
|
|
|
// f(A, 1, 5, 9) = { 5, 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
|
|
// f(A, 1, 5, 6) = { 5, 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(6));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
|
|
// f(A, 1, 5, 5) = { 5, 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(5));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
|
|
// f(A, 1, 5, 4) = { 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(4));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
|
|
// f(A, 1, 5, 3) = { 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(3));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
|
|
// f(A, 1, 5, 2) = { }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(A, 1, 5, 1) = { }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(A, 1, 5, 0) = { 5, 3 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 5, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
|
|
// f(A, 0, 3, 9) = { 5, 3, 1 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(A, 0, 3, 6) = { 5, 3, 1 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(6));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(A, 0, 3, 5) = { 5, 3, 1 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(5));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(A, 0, 3, 4) = { 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(4));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 0u);
|
|
|
|
// f(A, 0, 3, 3) = { 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(3));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 0u);
|
|
|
|
// f(A, 0, 3, 2) = { 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 0u);
|
|
|
|
// f(A, 0, 3, 1) = { 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 0u);
|
|
|
|
// f(A, 0, 3, 0) = { 5, 3, 1 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 3, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 9) = { 6, 4, 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 6) = { 6, 4, 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(6));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 5) = { 4, 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(5));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 4) = { 4, 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(4));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 3) = { 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(3));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 2) = { 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 1) = { 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 1u);
|
|
|
|
// f(B, 0, 4, 0) = { 6, 4, 2, 1 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(), 4, operation_history_id_type());
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 1u);
|
|
|
|
// f(B, 2, 4, 9) = { 6, 4 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
|
|
// f(B, 2, 4, 6) = { 6, 4 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(6));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
|
|
// f(B, 2, 4, 5) = { 4 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(5));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
|
|
// f(B, 2, 4, 4) = { 4 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(4));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
|
|
// f(B, 2, 4, 3) = { }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(3));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(B, 2, 4, 2) = { }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(B, 2, 4, 1) = { }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(B, 2, 4, 0) = { 6, 4 }
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(2), 4, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
|
|
// 0 limits
|
|
histories = hist_api.get_account_history(dan.get_id(), operation_history_id_type(0), 0, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(3), 0, operation_history_id_type(9));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// create a new account C = alice { 7 }
|
|
auto alice = create_account("alice");
|
|
|
|
generate_block();
|
|
|
|
// f(C, 0, 4, 10) = { 7 }
|
|
histories = hist_api.get_account_history(alice.get_id(), operation_history_id_type(0), 4, operation_history_id_type(10));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 7u);
|
|
|
|
// f(C, 8, 4, 10) = { }
|
|
histories = hist_api.get_account_history(alice.get_id(), operation_history_id_type(8), 4, operation_history_id_type(10));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// f(A, 0, 10, 0) = { 7, 5, 3, 1, 0 }
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 7u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 5u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[4].id.instance(), 0u);
|
|
} FC_LOG_AND_RETHROW()
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(track_account) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
// account_id_type() is not tracked
|
|
|
|
// account_id_type() creates alice(not tracked account)
|
|
const account_object& alice = create_account("alice");
|
|
auto alice_id = alice.id;
|
|
|
|
//account_id_type() creates some ops
|
|
create_bitasset("CNY", account_id_type());
|
|
create_bitasset("USD", account_id_type());
|
|
|
|
// account_id_type() creates dan(account tracked)
|
|
const account_object& dan = create_account("dan");
|
|
auto dan_id = dan.id;
|
|
|
|
// dan makes 1 op
|
|
create_bitasset("EUR", dan_id);
|
|
|
|
generate_block( ~database::skip_fork_db );
|
|
|
|
// anything against account_id_type() should be {}
|
|
vector<operation_history_object> histories =
|
|
hist_api.get_account_history(account_id_type(), operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(1), 1, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// anything against alice should be {}
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(1), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(1), 1, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// dan should have history
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 3u);
|
|
|
|
// create more ops, starting with an untracked account
|
|
create_bitasset( "BTC", account_id_type() );
|
|
create_bitasset( "GBP", dan_id );
|
|
|
|
generate_block( ~database::skip_fork_db );
|
|
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 3u);
|
|
|
|
db.pop_block();
|
|
|
|
// Try again, should result in same object IDs
|
|
create_bitasset( "BTC", account_id_type() );
|
|
create_bitasset( "GBP", dan_id );
|
|
|
|
generate_block();
|
|
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 6u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 3u);
|
|
} catch (fc::exception &e) {
|
|
edump((e.to_detail_string()));
|
|
throw;
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(track_account2) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
// account_id_type() is tracked
|
|
|
|
// account_id_type() creates alice(tracked account)
|
|
const account_object& alice = create_account("alice");
|
|
auto alice_id = alice.id;
|
|
|
|
//account_id_type() creates some ops
|
|
create_bitasset("CNY", account_id_type());
|
|
create_bitasset("USD", account_id_type());
|
|
|
|
// alice makes 1 op
|
|
create_bitasset("EUR", alice_id);
|
|
|
|
// account_id_type() creates dan(account not tracked)
|
|
const account_object& dan = create_account("dan");
|
|
auto dan_id = dan.id;
|
|
|
|
generate_block();
|
|
|
|
// all account_id_type() should have 4 ops {4,2,1,0}
|
|
vector<operation_history_object> histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 4u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[2].id.instance(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[3].id.instance(), 0u);
|
|
|
|
// all alice account should have 2 ops {3, 0}
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
BOOST_CHECK_EQUAL(histories[1].id.instance(), 0u);
|
|
|
|
// alice first op should be {0}
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(0), 1, operation_history_id_type(1));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 0u);
|
|
|
|
// alice second op should be {3}
|
|
histories = hist_api.get_account_history(alice_id, operation_history_id_type(1), 1, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 3u);
|
|
|
|
// anything against dan should be {}
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(0), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(1), 10, operation_history_id_type(0));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
histories = hist_api.get_account_history(dan_id, operation_history_id_type(1), 1, operation_history_id_type(2));
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
} catch (fc::exception &e) {
|
|
edump((e.to_detail_string()));
|
|
throw;
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(get_account_history_operations) {
|
|
try {
|
|
graphene::app::history_api hist_api(app);
|
|
|
|
//account_id_type() do 3 ops
|
|
create_bitasset("CNY", account_id_type());
|
|
create_account("sam");
|
|
create_account("alice");
|
|
|
|
generate_block();
|
|
fc::usleep(fc::milliseconds(2000));
|
|
|
|
int asset_create_op_id = operation::tag<asset_create_operation>::value;
|
|
int account_create_op_id = operation::tag<account_create_operation>::value;
|
|
|
|
//account_id_type() did 1 asset_create op
|
|
vector<operation_history_object> histories = hist_api.get_account_history_operations(account_id_type(), asset_create_op_id, operation_history_id_type(), operation_history_id_type(), 100);
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].id.instance(), 0u);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), asset_create_op_id);
|
|
|
|
//account_id_type() did 2 account_create ops
|
|
histories = hist_api.get_account_history_operations(account_id_type(), account_create_op_id, operation_history_id_type(), operation_history_id_type(), 100);
|
|
BOOST_CHECK_EQUAL(histories.size(), 2u);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id);
|
|
|
|
// No asset_create op larger than id1
|
|
histories = hist_api.get_account_history_operations(account_id_type(), asset_create_op_id, operation_history_id_type(), operation_history_id_type(1), 100);
|
|
BOOST_CHECK_EQUAL(histories.size(), 0u);
|
|
|
|
// Limit 1 returns 1 result
|
|
histories = hist_api.get_account_history_operations(account_id_type(), account_create_op_id, operation_history_id_type(),operation_history_id_type(), 1);
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id);
|
|
|
|
// alice has 1 op
|
|
histories = hist_api.get_account_history_operations(get_account("alice").id, account_create_op_id, operation_history_id_type(),operation_history_id_type(), 100);
|
|
BOOST_CHECK_EQUAL(histories.size(), 1u);
|
|
BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id);
|
|
|
|
} catch (fc::exception &e) {
|
|
edump((e.to_detail_string()));
|
|
throw;
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END() |