Skip to content
Snippets Groups Projects
tx_test.go 6.4 KiB
Newer Older
package txs
Casey Kuhlman's avatar
Casey Kuhlman committed

import (
	"testing"

	ptypes "github.com/eris-ltd/eris-db/permission/types"
	"github.com/stretchr/testify/assert"
Ethan Buchman's avatar
Ethan Buchman committed
	. "github.com/tendermint/go-common"
	"github.com/tendermint/go-crypto"
var chainID = "myChainID"
Casey Kuhlman's avatar
Casey Kuhlman committed

func TestSendTxSignable(t *testing.T) {
	sendTx := &SendTx{
		Inputs: []*TxInput{
			&TxInput{
				Address:  []byte("input1"),
				Amount:   12345,
				Sequence: 67890,
			},
			&TxInput{
				Address:  []byte("input2"),
				Amount:   111,
				Sequence: 222,
			},
		},
		Outputs: []*TxOutput{
			&TxOutput{
				Address: []byte("output1"),
				Amount:  333,
			},
			&TxOutput{
				Address: []byte("output2"),
				Amount:  444,
			},
		},
	}
androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, sendTx)
Casey Kuhlman's avatar
Casey Kuhlman committed
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[1,{"inputs":[{"address":"696E70757431","amount":12345,"sequence":67890},{"address":"696E70757432","amount":111,"sequence":222}],"outputs":[{"address":"6F757470757431","amount":333},{"address":"6F757470757432","amount":444}]}]}`,
		chainID)

Casey Kuhlman's avatar
Casey Kuhlman committed
	if signStr != expected {
		t.Errorf("Got unexpected sign string for SendTx. Expected:\n%v\nGot:\n%v", expected, signStr)
	}
}

func TestCallTxSignable(t *testing.T) {
	callTx := &CallTx{
		Input: &TxInput{
			Address:  []byte("input1"),
			Amount:   12345,
			Sequence: 67890,
		},
		Address:  []byte("contract1"),
		GasLimit: 111,
		Fee:      222,
		Data:     []byte("data1"),
	}
androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, callTx)
Casey Kuhlman's avatar
Casey Kuhlman committed
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[2,{"address":"636F6E747261637431","data":"6461746131","fee":222,"gas_limit":111,"input":{"address":"696E70757431","amount":12345,"sequence":67890}}]}`,
		chainID)
Casey Kuhlman's avatar
Casey Kuhlman committed
	if signStr != expected {
		t.Errorf("Got unexpected sign string for CallTx. Expected:\n%v\nGot:\n%v", expected, signStr)
	}
}

androlo's avatar
androlo committed
func TestNameTxSignable(t *testing.T) {
	nameTx := &NameTx{
		Input: &TxInput{
			Address:  []byte("input1"),
			Amount:   12345,
			Sequence: 250,
		},
		Name: "google.com",
		Data: "secretly.not.google.com",
		Fee:  1000,
	}
	signBytes := acm.SignBytes(chainID, nameTx)
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[3,{"data":"secretly.not.google.com","fee":1000,"input":{"address":"696E70757431","amount":12345,"sequence":250},"name":"google.com"}]}`,
		chainID)
androlo's avatar
androlo committed
	if signStr != expected {
		t.Errorf("Got unexpected sign string for CallTx. Expected:\n%v\nGot:\n%v", expected, signStr)
	}
}

Casey Kuhlman's avatar
Casey Kuhlman committed
func TestBondTxSignable(t *testing.T) {
androlo's avatar
androlo committed
	privKeyBytes := make([]byte, 64)
Ethan Buchman's avatar
Ethan Buchman committed
	privAccount := acm.GenPrivAccountFromPrivKeyBytes(privKeyBytes)
Casey Kuhlman's avatar
Casey Kuhlman committed
	bondTx := &BondTx{
Ethan Buchman's avatar
Ethan Buchman committed
		PubKey: privAccount.PubKey.(crypto.PubKeyEd25519),
Casey Kuhlman's avatar
Casey Kuhlman committed
		Inputs: []*TxInput{
			&TxInput{
				Address:  []byte("input1"),
				Amount:   12345,
				Sequence: 67890,
			},
			&TxInput{
				Address:  []byte("input2"),
				Amount:   111,
				Sequence: 222,
			},
		},
		UnbondTo: []*TxOutput{
			&TxOutput{
				Address: []byte("output1"),
				Amount:  333,
			},
			&TxOutput{
				Address: []byte("output2"),
				Amount:  444,
			},
		},
	}
androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, bondTx)
Casey Kuhlman's avatar
Casey Kuhlman committed
	signStr := string(signBytes)
Ethan Buchman's avatar
Ethan Buchman committed
	expected := Fmt(`{"chain_id":"%s","tx":[17,{"inputs":[{"address":"696E70757431","amount":12345,"sequence":67890},{"address":"696E70757432","amount":111,"sequence":222}],"pub_key":"3B6A27BCCEB6A42D62A3A8D02A6F0D73653215771DE243A63AC048A18B59DA29","unbond_to":[{"address":"6F757470757431","amount":333},{"address":"6F757470757432","amount":444}]}]}`,
		chainID)
Casey Kuhlman's avatar
Casey Kuhlman committed
	if signStr != expected {
androlo's avatar
androlo committed
		t.Errorf("Unexpected sign string for BondTx. \nGot %s\nExpected %s", signStr, expected)
Casey Kuhlman's avatar
Casey Kuhlman committed
	}
}

func TestUnbondTxSignable(t *testing.T) {
	unbondTx := &UnbondTx{
		Address: []byte("address1"),
		Height:  111,
	}
androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, unbondTx)
Casey Kuhlman's avatar
Casey Kuhlman committed
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[18,{"address":"6164647265737331","height":111}]}`,
		chainID)
Casey Kuhlman's avatar
Casey Kuhlman committed
	if signStr != expected {
		t.Errorf("Got unexpected sign string for UnbondTx")
	}
}

func TestRebondTxSignable(t *testing.T) {
	rebondTx := &RebondTx{
		Address: []byte("address1"),
		Height:  111,
	}
androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, rebondTx)
Casey Kuhlman's avatar
Casey Kuhlman committed
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[19,{"address":"6164647265737331","height":111}]}`,
		chainID)
Casey Kuhlman's avatar
Casey Kuhlman committed
	if signStr != expected {
		t.Errorf("Got unexpected sign string for RebondTx")
	}
}
androlo's avatar
androlo committed

func TestPermissionsTxSignable(t *testing.T) {
	permsTx := &PermissionsTx{
		Input: &TxInput{
			Address:  []byte("input1"),
			Amount:   12345,
			Sequence: 250,
		},
		PermArgs: &ptypes.SetBaseArgs{
			Address:    []byte("address1"),
			Permission: 1,
			Value:      true,
		},
	}
Ethan Buchman's avatar
Ethan Buchman committed

androlo's avatar
androlo committed
	signBytes := acm.SignBytes(chainID, permsTx)
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[32,{"args":"[2,{"address":"6164647265737331","permission":1,"value":true}]","input":{"address":"696E70757431","amount":12345,"sequence":250}}]}`,
		chainID)
androlo's avatar
androlo committed
	if signStr != expected {
Ethan Buchman's avatar
Ethan Buchman committed
		t.Errorf("Got unexpected sign string for PermsTx. Expected:\n%v\nGot:\n%v", expected, signStr)
androlo's avatar
androlo committed
	}
}
func TestEncodeTxDecodeTx(t *testing.T) {
	inputAddress := []byte{1, 2, 3, 4, 5}
	outputAddress := []byte{5, 4, 3, 2, 1}
	amount := int64(2)
	sequence := 3
	tx := &SendTx{
		Inputs: []*TxInput{{
			Address:  inputAddress,
			Amount:   amount,
			Sequence: sequence,
		}},
		Outputs: []*TxOutput{{
			Address: outputAddress,
			Amount:  amount,
		}},
	}
	txBytes, err := EncodeTx(tx)
	if err != nil {
		t.Fatal(err)
	}
	txOut, err := DecodeTx(txBytes)
	assert.Equal(t, tx, txOut)
}

Ethan Buchman's avatar
Ethan Buchman committed
/*
func TestDupeoutTxSignable(t *testing.T) {
	privAcc := acm.GenPrivAccount()
Ethan Buchman's avatar
Ethan Buchman committed
	partSetHeader := types.PartSetHeader{Total: 10, Hash: []byte("partsethash")}
	voteA := &types.Vote{
		Height:           10,
		Round:            2,
Ethan Buchman's avatar
Ethan Buchman committed
		Type:             types.VoteTypePrevote,
		BlockHash:        []byte("myblockhash"),
		BlockPartsHeader: partSetHeader,
	}
	sig := privAcc.Sign(chainID, voteA)
Ethan Buchman's avatar
Ethan Buchman committed
	voteA.Signature = sig.(crypto.SignatureEd25519)
	voteB := voteA.Copy()
	voteB.BlockHash = []byte("myotherblockhash")
	sig = privAcc.Sign(chainID, voteB)
Ethan Buchman's avatar
Ethan Buchman committed
	voteB.Signature = sig.(crypto.SignatureEd25519)

	dupeoutTx := &DupeoutTx{
		Address: []byte("address1"),
		VoteA:   *voteA,
		VoteB:   *voteB,
	}
	signBytes := acm.SignBytes(chainID, dupeoutTx)
	signStr := string(signBytes)
	expected := Fmt(`{"chain_id":"%s","tx":[20,{"address":"6164647265737331","vote_a":%v,"vote_b":%v}]}`,
Ethan Buchman's avatar
Ethan Buchman committed
		chainID, *voteA, *voteB)
	if signStr != expected {
		t.Errorf("Got unexpected sign string for DupeoutTx")
	}
Ethan Buchman's avatar
Ethan Buchman committed
}*/