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/transaction_test.exs

26 lines
935 B

defmodule Explorer.TransactionTest do
use Explorer.DataCase
alias Explorer.Transaction
describe "changeset/2" do
test "with valid attributes" do
changeset = Transaction.changeset(%Transaction{}, %{hash: "0x0", value: 1, gas: 21000, gas_price: 10000, input: "0x5c8eff12", nonce: "31337", public_key: "0xb39af9c", r: "0x9", s: "0x10", standard_v: "0x11", transaction_index: "0x12", v: "0x13"})
assert changeset.valid?
end
test "with invalid attributes" do
changeset = Transaction.changeset(%Transaction{}, %{racecar: "yellow ham"})
refute changeset.valid?
end
test "it creates a new to address" do
params = params_for(:transaction)
to_address_params = %{hash: "sk8orDi3"}
changeset_params = Map.merge(params, %{to_address: to_address_params})
changeset = Transaction.changeset(%Transaction{}, changeset_params)
assert changeset.valid?
end
end
end