summaryrefslogtreecommitdiff
path: root/test/e2e-go/cli/goal/account_test.go
blob: d35e3070517e144b63af4cdb2ec6b5879eeed98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// Copyright (C) 2019-2021 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package goal

import (
	"testing"

	"github.com/stretchr/testify/require"

	"github.com/algorand/go-algorand/test/framework/fixtures"
)

const statusOffline = "[offline]"
const statusOnline = "[online]"

func TestAccountNew(t *testing.T) {
	defer fixtures.ShutdownSynchronizedTest(t)
	defer fixture.SetTestContext(t)()
	a := require.New(fixtures.SynchronizedTest(t))

	newAcctName := "new_account"

	// Verify the account doesn't exist before we create it
	matched, err := fixture.CheckAccountListContainsAccount(func(elements []string) bool {
		return elements[1] == newAcctName
	})
	a.False(matched, "account name shouldn't be in use yet")

	addr, err := fixture.AccountNew(newAcctName)
	a.NoError(err)
	a.NotEmpty(addr)

	matched, err = fixture.CheckAccountListContainsAccount(func(elements []string) bool {
		return elements[0] == statusOffline &&
			elements[1] == newAcctName &&
			elements[2] == addr
	})
	a.NoError(err)
	a.True(matched, "Account list should contain the account we just created")
}

func TestAccountNewDuplicateFails(t *testing.T) {
	defer fixtures.ShutdownSynchronizedTest(t)
	defer fixture.SetTestContext(t)()
	a := require.New(fixtures.SynchronizedTest(t))

	newAcctName := "duplicate_account"

	addr, err := fixture.AccountNew(newAcctName)
	a.NoError(err)
	a.NotEmpty(addr)

	addr, err = fixture.AccountNew(newAcctName)
	a.Empty(addr, "no address should be returned when trying to add a duplicate account")
	a.Equal(fixtures.ErrAccountAlreadyTaken, err)
}

func TestAccountRename(t *testing.T) {
	defer fixtures.ShutdownSynchronizedTest(t)
	defer fixture.SetTestContext(t)()
	a := require.New(fixtures.SynchronizedTest(t))

	initialAcctName := "initial"
	newAcctName := "renamed"
	addr, err := fixture.AccountNew(initialAcctName)
	a.NoError(err)
	a.NotEmpty(addr)

	// Verify the account doesn't exist before we create it
	matched, err := fixture.CheckAccountListContainsAccount(func(elements []string) bool {
		return elements[1] == newAcctName
	})
	a.NoError(err)
	a.False(matched, "new account name shouldn't be in use yet")

	err = fixture.AccountRename(initialAcctName, newAcctName)
	a.NoError(err)

	matched, err = fixture.CheckAccountListContainsAccount(func(elements []string) bool {
		return elements[0] == statusOffline &&
			elements[1] == newAcctName &&
			elements[2] == addr
	})
	a.NoError(err)
	a.True(matched, "Account list should contain the account we just created, with the new name")
}

// Importing an account multiple times should not be considered an error by goal
func TestAccountMultipleImportRootKey(t *testing.T) {
	defer fixtures.ShutdownSynchronizedTest(t)
	defer fixture.SetTestContext(t)()
	a := require.New(fixtures.SynchronizedTest(t))

	walletName := ""
	createUnencryptedWallet := false
	err := fixture.AccountImportRootKey(walletName, createUnencryptedWallet)
	a.NoError(err)

	err = fixture.AccountImportRootKey(walletName, createUnencryptedWallet)
	a.NoError(err)
}