accounts_test.go 5.91 KB
Newer Older
1
// Copyright 2015 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
5 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16

17 18 19
package accounts

import (
20 21
	"io/ioutil"
	"os"
22 23
	"runtime"
	"strings"
24
	"testing"
25
	"time"
26 27

	"github.com/ethereum/go-ethereum/common"
28 29
)

30 31
var testSigData = make([]byte, 32)

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
func TestManager(t *testing.T) {
	dir, am := tmpManager(t, true)
	defer os.RemoveAll(dir)

	a, err := am.NewAccount("foo")
	if err != nil {
		t.Fatal(err)
	}
	if !strings.HasPrefix(a.File, dir) {
		t.Errorf("account file %s doesn't have dir prefix", a.File)
	}
	stat, err := os.Stat(a.File)
	if err != nil {
		t.Fatalf("account file %s doesn't exist (%v)", a.File, err)
	}
	if runtime.GOOS != "windows" && stat.Mode() != 0600 {
		t.Fatalf("account file has wrong mode: got %o, want %o", stat.Mode(), 0600)
	}
	if !am.HasAddress(a.Address) {
		t.Errorf("HasAccount(%x) should've returned true", a.Address)
	}
	if err := am.Update(a, "foo", "bar"); err != nil {
		t.Errorf("Update error: %v", err)
	}
	if err := am.DeleteAccount(a, "bar"); err != nil {
		t.Errorf("DeleteAccount error: %v", err)
	}
	if common.FileExist(a.File) {
		t.Errorf("account file %s should be gone after DeleteAccount", a.File)
	}
	if am.HasAddress(a.Address) {
		t.Errorf("HasAccount(%x) should've returned true after DeleteAccount", a.Address)
	}
}

67
func TestSign(t *testing.T) {
68
	dir, am := tmpManager(t, true)
69 70
	defer os.RemoveAll(dir)

71 72
	pass := "" // not used but required by API
	a1, err := am.NewAccount(pass)
73 74 75
	if err != nil {
		t.Fatal(err)
	}
76 77 78
	if err := am.Unlock(a1, ""); err != nil {
		t.Fatal(err)
	}
79
	if _, err := am.Sign(a1.Address, testSigData); err != nil {
80 81
		t.Fatal(err)
	}
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
func TestSignWithPassphrase(t *testing.T) {
	dir, am := tmpManager(t, true)
	defer os.RemoveAll(dir)

	pass := "passwd"
	acc, err := am.NewAccount(pass)
	if err != nil {
		t.Fatal(err)
	}

	if _, unlocked := am.unlocked[acc.Address]; unlocked {
		t.Fatal("expected account to be locked")
	}

	_, err = am.SignWithPassphrase(acc.Address, pass, testSigData)
	if err != nil {
		t.Fatal(err)
	}

	if _, unlocked := am.unlocked[acc.Address]; unlocked {
		t.Fatal("expected account to be locked")
	}

	if _, err = am.SignWithPassphrase(acc.Address, "invalid passwd", testSigData); err == nil {
		t.Fatal("expected SignHash to fail with invalid password")
	}
}

112
func TestTimedUnlock(t *testing.T) {
113
	dir, am := tmpManager(t, true)
114 115
	defer os.RemoveAll(dir)

116 117 118 119
	pass := "foo"
	a1, err := am.NewAccount(pass)

	// Signing without passphrase fails because account is locked
120
	_, err = am.Sign(a1.Address, testSigData)
121
	if err != ErrLocked {
122
		t.Fatal("Signing should've failed with ErrLocked before unlocking, got ", err)
123 124 125
	}

	// Signing with passphrase works
Felix Lange's avatar
Felix Lange committed
126
	if err = am.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil {
127 128 129 130
		t.Fatal(err)
	}

	// Signing without passphrase works because account is temp unlocked
131
	_, err = am.Sign(a1.Address, testSigData)
132
	if err != nil {
133
		t.Fatal("Signing shouldn't return an error after unlocking, got ", err)
134 135
	}

136
	// Signing fails again after automatic locking
137 138
	time.Sleep(250 * time.Millisecond)
	_, err = am.Sign(a1.Address, testSigData)
139
	if err != ErrLocked {
140
		t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err)
141
	}
zelig's avatar
zelig committed
142 143 144
}

func TestOverrideUnlock(t *testing.T) {
145
	dir, am := tmpManager(t, false)
zelig's avatar
zelig committed
146 147 148 149 150
	defer os.RemoveAll(dir)

	pass := "foo"
	a1, err := am.NewAccount(pass)

151 152
	// Unlock indefinitely.
	if err = am.TimedUnlock(a1, pass, 5*time.Minute); err != nil {
zelig's avatar
zelig committed
153 154 155 156
		t.Fatal(err)
	}

	// Signing without passphrase works because account is temp unlocked
157
	_, err = am.Sign(a1.Address, testSigData)
zelig's avatar
zelig committed
158 159 160 161 162
	if err != nil {
		t.Fatal("Signing shouldn't return an error after unlocking, got ", err)
	}

	// reset unlock to a shorter period, invalidates the previous unlock
Felix Lange's avatar
Felix Lange committed
163
	if err = am.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil {
zelig's avatar
zelig committed
164 165 166 167
		t.Fatal(err)
	}

	// Signing without passphrase still works because account is temp unlocked
168
	_, err = am.Sign(a1.Address, testSigData)
zelig's avatar
zelig committed
169 170 171 172 173
	if err != nil {
		t.Fatal("Signing shouldn't return an error after unlocking, got ", err)
	}

	// Signing fails again after automatic locking
174 175
	time.Sleep(250 * time.Millisecond)
	_, err = am.Sign(a1.Address, testSigData)
zelig's avatar
zelig committed
176 177 178
	if err != ErrLocked {
		t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err)
	}
179
}
180

181 182
// This test should fail under -race if signing races the expiration goroutine.
func TestSignRace(t *testing.T) {
183
	dir, am := tmpManager(t, false)
184 185 186 187 188 189 190 191
	defer os.RemoveAll(dir)

	// Create a test account.
	a1, err := am.NewAccount("")
	if err != nil {
		t.Fatal("could not create the test account", err)
	}

Felix Lange's avatar
Felix Lange committed
192
	if err := am.TimedUnlock(a1, "", 15*time.Millisecond); err != nil {
193
		t.Fatal("could not unlock the test account", err)
194
	}
195
	end := time.Now().Add(500 * time.Millisecond)
196
	for time.Now().Before(end) {
197
		if _, err := am.Sign(a1.Address, testSigData); err == ErrLocked {
198 199 200 201 202
			return
		} else if err != nil {
			t.Errorf("Sign error: %v", err)
			return
		}
203
		time.Sleep(1 * time.Millisecond)
204 205 206
	}
	t.Errorf("Account did not lock within the timeout")
}
zelig's avatar
zelig committed
207

208
func tmpManager(t *testing.T, encrypted bool) (string, *Manager) {
209
	d, err := ioutil.TempDir("", "eth-keystore-test")
210 211 212
	if err != nil {
		t.Fatal(err)
	}
213 214
	new := NewPlaintextManager
	if encrypted {
215
		new = func(kd string) *Manager { return NewManager(kd, veryLightScryptN, veryLightScryptP) }
216
	}
217
	return d, new(d)
218
}