From ab7eddd3d0b4914e4d5eca952b8e4137f8188d33 Mon Sep 17 00:00:00 2001 From: Viktor Baranov Date: Tue, 29 Oct 2024 12:32:00 +0200 Subject: [PATCH] Comment test for disabled functionality --- .../internal_transaction_controller_test.exs | 175 +++++++++--------- 1 file changed, 88 insertions(+), 87 deletions(-) diff --git a/apps/block_scout_web/test/block_scout_web/controllers/api/v2/internal_transaction_controller_test.exs b/apps/block_scout_web/test/block_scout_web/controllers/api/v2/internal_transaction_controller_test.exs index 2f9dad6558..cee0215b19 100644 --- a/apps/block_scout_web/test/block_scout_web/controllers/api/v2/internal_transaction_controller_test.exs +++ b/apps/block_scout_web/test/block_scout_web/controllers/api/v2/internal_transaction_controller_test.exs @@ -3,91 +3,92 @@ defmodule BlockScoutWeb.API.V2.InternalTransactionControllerTest do alias Explorer.Chain.{Address, InternalTransaction} - describe "/internal-transactions" do - test "empty list", %{conn: conn} do - request = get(conn, "/api/v2/internal-transactions") - - assert response = json_response(request, 200) - assert response["items"] == [] - assert response["next_page_params"] == nil - end - - test "non empty list", %{conn: conn} do - tx = - :transaction - |> insert() - |> with_block() - - insert(:internal_transaction, - transaction: tx, - block_hash: tx.block_hash, - index: 0, - block_index: 0 - ) - - request = get(conn, "/api/v2/internal-transactions") - - assert response = json_response(request, 200) - assert Enum.count(response["items"]) == 1 - assert response["next_page_params"] == nil - end - - test "internal transactions with next_page_params", %{conn: conn} do - transaction = insert(:transaction) |> with_block() - - internal_transaction = - insert(:internal_transaction, - transaction: transaction, - transaction_index: 0, - block_number: transaction.block_number, - block_hash: transaction.block_hash, - index: 0, - block_index: 0 - ) - - transaction_2 = insert(:transaction) |> with_block() - - internal_transactions = - for i <- 0..49 do - insert(:internal_transaction, - transaction: transaction_2, - transaction_index: 0, - block_number: transaction_2.block_number, - block_hash: transaction_2.block_hash, - index: i, - block_index: i - ) - end - - internal_transactions = [internal_transaction | internal_transactions] - - request = get(conn, "/api/v2/internal-transactions") - assert response = json_response(request, 200) - - request_2nd_page = get(conn, "/api/v2/internal-transactions", response["next_page_params"]) - assert response_2nd_page = json_response(request_2nd_page, 200) - - check_paginated_response(response, response_2nd_page, internal_transactions) - end - end - - defp compare_item(%InternalTransaction{} = internal_transaction, json) do - assert Address.checksum(internal_transaction.from_address_hash) == json["from"]["hash"] - assert Address.checksum(internal_transaction.to_address_hash) == json["to"]["hash"] - assert to_string(internal_transaction.transaction_hash) == json["transaction_hash"] - assert internal_transaction.block_number == json["block_number"] - assert internal_transaction.block_index == json["block_index"] - end - - defp check_paginated_response(first_page_resp, second_page_resp, internal_transactions) do - assert Enum.count(first_page_resp["items"]) == 50 - assert first_page_resp["next_page_params"] != nil - compare_item(Enum.at(internal_transactions, 50), Enum.at(first_page_resp["items"], 0)) - - compare_item(Enum.at(internal_transactions, 1), Enum.at(first_page_resp["items"], 49)) - - assert Enum.count(second_page_resp["items"]) == 1 - assert second_page_resp["next_page_params"] == nil - compare_item(Enum.at(internal_transactions, 0), Enum.at(second_page_resp["items"], 0)) - end + # todo: enable when /internal-transactions API endpoint will be enabled + # describe "/internal-transactions" do + # test "empty list", %{conn: conn} do + # request = get(conn, "/api/v2/internal-transactions") + + # assert response = json_response(request, 200) + # assert response["items"] == [] + # assert response["next_page_params"] == nil + # end + + # test "non empty list", %{conn: conn} do + # tx = + # :transaction + # |> insert() + # |> with_block() + + # insert(:internal_transaction, + # transaction: tx, + # block_hash: tx.block_hash, + # index: 0, + # block_index: 0 + # ) + + # request = get(conn, "/api/v2/internal-transactions") + + # assert response = json_response(request, 200) + # assert Enum.count(response["items"]) == 1 + # assert response["next_page_params"] == nil + # end + + # test "internal transactions with next_page_params", %{conn: conn} do + # transaction = insert(:transaction) |> with_block() + + # internal_transaction = + # insert(:internal_transaction, + # transaction: transaction, + # transaction_index: 0, + # block_number: transaction.block_number, + # block_hash: transaction.block_hash, + # index: 0, + # block_index: 0 + # ) + + # transaction_2 = insert(:transaction) |> with_block() + + # internal_transactions = + # for i <- 0..49 do + # insert(:internal_transaction, + # transaction: transaction_2, + # transaction_index: 0, + # block_number: transaction_2.block_number, + # block_hash: transaction_2.block_hash, + # index: i, + # block_index: i + # ) + # end + + # internal_transactions = [internal_transaction | internal_transactions] + + # request = get(conn, "/api/v2/internal-transactions") + # assert response = json_response(request, 200) + + # request_2nd_page = get(conn, "/api/v2/internal-transactions", response["next_page_params"]) + # assert response_2nd_page = json_response(request_2nd_page, 200) + + # check_paginated_response(response, response_2nd_page, internal_transactions) + # end + # end + + # defp compare_item(%InternalTransaction{} = internal_transaction, json) do + # assert Address.checksum(internal_transaction.from_address_hash) == json["from"]["hash"] + # assert Address.checksum(internal_transaction.to_address_hash) == json["to"]["hash"] + # assert to_string(internal_transaction.transaction_hash) == json["transaction_hash"] + # assert internal_transaction.block_number == json["block_number"] + # assert internal_transaction.block_index == json["block_index"] + # end + + # defp check_paginated_response(first_page_resp, second_page_resp, internal_transactions) do + # assert Enum.count(first_page_resp["items"]) == 50 + # assert first_page_resp["next_page_params"] != nil + # compare_item(Enum.at(internal_transactions, 50), Enum.at(first_page_resp["items"], 0)) + + # compare_item(Enum.at(internal_transactions, 1), Enum.at(first_page_resp["items"], 49)) + + # assert Enum.count(second_page_resp["items"]) == 1 + # assert second_page_resp["next_page_params"] == nil + # compare_item(Enum.at(internal_transactions, 0), Enum.at(second_page_resp["items"], 0)) + # end end