2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-01-25 01:07:20 +00:00
|
|
|
package accounts
|
|
|
|
|
|
|
|
import (
|
2015-03-09 23:09:39 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2016-03-03 00:15:42 +00:00
|
|
|
"runtime"
|
|
|
|
"strings"
|
2015-01-25 01:07:20 +00:00
|
|
|
"testing"
|
2015-03-07 23:18:13 +00:00
|
|
|
"time"
|
2016-03-03 00:15:42 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-01-25 01:07:20 +00:00
|
|
|
)
|
|
|
|
|
2015-07-20 15:42:14 +00:00
|
|
|
var testSigData = make([]byte, 32)
|
|
|
|
|
2016-03-03 00:15:42 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-09 23:09:39 +00:00
|
|
|
func TestSign(t *testing.T) {
|
2016-03-03 00:15:42 +00:00
|
|
|
dir, am := tmpManager(t, true)
|
2015-03-09 23:09:39 +00:00
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
2015-01-25 01:07:20 +00:00
|
|
|
pass := "" // not used but required by API
|
|
|
|
a1, err := am.NewAccount(pass)
|
2015-02-25 16:29:23 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-03-03 00:15:42 +00:00
|
|
|
if err := am.Unlock(a1, ""); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-04-04 23:08:50 +00:00
|
|
|
if _, err := am.Sign(a1.Address, testSigData); err != nil {
|
2016-03-03 00:15:42 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-02-25 16:29:23 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 23:09:39 +00:00
|
|
|
func TestTimedUnlock(t *testing.T) {
|
2016-03-03 00:15:42 +00:00
|
|
|
dir, am := tmpManager(t, true)
|
2015-03-09 23:09:39 +00:00
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
2015-02-25 16:29:23 +00:00
|
|
|
pass := "foo"
|
|
|
|
a1, err := am.NewAccount(pass)
|
|
|
|
|
|
|
|
// Signing without passphrase fails because account is locked
|
2016-04-04 23:08:50 +00:00
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-02-25 16:29:23 +00:00
|
|
|
if err != ErrLocked {
|
2015-03-09 23:09:39 +00:00
|
|
|
t.Fatal("Signing should've failed with ErrLocked before unlocking, got ", err)
|
2015-02-25 16:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Signing with passphrase works
|
2016-03-03 00:09:16 +00:00
|
|
|
if err = am.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil {
|
2015-02-25 16:29:23 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signing without passphrase works because account is temp unlocked
|
2016-04-04 23:08:50 +00:00
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-02-25 16:29:23 +00:00
|
|
|
if err != nil {
|
2015-03-09 23:09:39 +00:00
|
|
|
t.Fatal("Signing shouldn't return an error after unlocking, got ", err)
|
2015-02-25 16:29:23 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 23:09:39 +00:00
|
|
|
// Signing fails again after automatic locking
|
2016-04-04 23:08:50 +00:00
|
|
|
time.Sleep(250 * time.Millisecond)
|
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-02-25 16:29:23 +00:00
|
|
|
if err != ErrLocked {
|
2015-03-09 23:09:39 +00:00
|
|
|
t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err)
|
2015-02-25 16:29:23 +00:00
|
|
|
}
|
2015-06-18 14:12:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverrideUnlock(t *testing.T) {
|
2016-03-02 12:57:15 +00:00
|
|
|
dir, am := tmpManager(t, false)
|
2015-06-18 14:12:39 +00:00
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
pass := "foo"
|
|
|
|
a1, err := am.NewAccount(pass)
|
|
|
|
|
2016-04-07 15:00:34 +00:00
|
|
|
// Unlock indefinitely.
|
|
|
|
if err = am.TimedUnlock(a1, pass, 5*time.Minute); err != nil {
|
2015-06-18 14:12:39 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signing without passphrase works because account is temp unlocked
|
2016-04-04 23:08:50 +00:00
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-06-18 14:12:39 +00:00
|
|
|
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
|
2016-03-03 00:09:16 +00:00
|
|
|
if err = am.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil {
|
2015-06-18 14:12:39 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signing without passphrase still works because account is temp unlocked
|
2016-04-04 23:08:50 +00:00
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-06-18 14:12:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Signing shouldn't return an error after unlocking, got ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signing fails again after automatic locking
|
2016-04-04 23:08:50 +00:00
|
|
|
time.Sleep(250 * time.Millisecond)
|
|
|
|
_, err = am.Sign(a1.Address, testSigData)
|
2015-06-18 14:12:39 +00:00
|
|
|
if err != ErrLocked {
|
|
|
|
t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err)
|
|
|
|
}
|
2015-03-09 23:09:39 +00:00
|
|
|
}
|
2015-02-25 16:29:23 +00:00
|
|
|
|
2015-07-20 15:42:14 +00:00
|
|
|
// This test should fail under -race if signing races the expiration goroutine.
|
|
|
|
func TestSignRace(t *testing.T) {
|
2016-03-02 12:57:15 +00:00
|
|
|
dir, am := tmpManager(t, false)
|
2015-07-20 15:42:14 +00:00
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
// Create a test account.
|
|
|
|
a1, err := am.NewAccount("")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("could not create the test account", err)
|
|
|
|
}
|
|
|
|
|
2016-03-03 00:09:16 +00:00
|
|
|
if err := am.TimedUnlock(a1, "", 15*time.Millisecond); err != nil {
|
2016-03-02 23:46:56 +00:00
|
|
|
t.Fatal("could not unlock the test account", err)
|
2015-07-20 15:42:14 +00:00
|
|
|
}
|
2015-07-29 16:12:55 +00:00
|
|
|
end := time.Now().Add(500 * time.Millisecond)
|
2015-07-20 15:42:14 +00:00
|
|
|
for time.Now().Before(end) {
|
2016-04-04 23:08:50 +00:00
|
|
|
if _, err := am.Sign(a1.Address, testSigData); err == ErrLocked {
|
2015-07-20 15:42:14 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
t.Errorf("Sign error: %v", err)
|
|
|
|
return
|
|
|
|
}
|
2015-07-29 16:12:55 +00:00
|
|
|
time.Sleep(1 * time.Millisecond)
|
2015-07-20 15:42:14 +00:00
|
|
|
}
|
|
|
|
t.Errorf("Account did not lock within the timeout")
|
|
|
|
}
|
2015-07-02 21:58:00 +00:00
|
|
|
|
2016-03-02 12:57:15 +00:00
|
|
|
func tmpManager(t *testing.T, encrypted bool) (string, *Manager) {
|
2015-03-09 23:09:39 +00:00
|
|
|
d, err := ioutil.TempDir("", "eth-keystore-test")
|
2015-02-24 17:03:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-03-02 12:57:15 +00:00
|
|
|
new := NewPlaintextManager
|
|
|
|
if encrypted {
|
2016-03-03 00:15:42 +00:00
|
|
|
new = func(kd string) *Manager { return NewManager(kd, veryLightScryptN, veryLightScryptP) }
|
2016-03-02 12:57:15 +00:00
|
|
|
}
|
2015-03-09 23:09:39 +00:00
|
|
|
return d, new(d)
|
2015-01-25 01:07:20 +00:00
|
|
|
}
|