Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/test/explorer_web/controllers/pending_transaction_control...

23 lines
1.0 KiB

defmodule ExplorerWeb.PendingTransactionControllerTest do
use ExplorerWeb.ConnCase
import ExplorerWeb.Router.Helpers, only: [pending_transaction_path: 3]
describe "GET index/2" do
test "returns pending transactions with addresses", %{conn: conn} do
transaction = insert(:transaction) |> with_block |> with_addresses(%{to: "0xfritos", from: "0xmunchos"})
conn = get(conn, pending_transaction_path(ExplorerWeb.Endpoint, :index, :en))
first_transaction = List.first(conn.assigns.transactions.entries)
assert first_transaction.id == transaction.id
assert first_transaction.to_address.hash == "0xfritos"
assert first_transaction.from_address.hash == "0xmunchos"
end
test "does not return transactions with receipts", %{conn: conn} do
transaction = insert(:transaction)
insert(:transaction_receipt, transaction: transaction)
conn = get(conn, pending_transaction_path(ExplorerWeb.Endpoint, :index, :en))
assert length(conn.assigns.transactions.entries) == 0
end
end
end