2015-01-25 01:07:20 +00:00
|
|
|
package accounts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2015-02-20 10:36:50 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto/randentropy"
|
2015-02-23 10:28:20 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2015-01-25 01:07:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccountManager(t *testing.T) {
|
2015-02-23 10:28:20 +00:00
|
|
|
ks := crypto.NewKeyStorePlain(ethutil.DefaultDataDir())
|
2015-01-25 01:07:20 +00:00
|
|
|
am := NewAccountManager(ks)
|
|
|
|
pass := "" // not used but required by API
|
|
|
|
a1, err := am.NewAccount(pass)
|
2015-02-20 10:36:50 +00:00
|
|
|
toSign := randentropy.GetEntropyCSPRNG(32)
|
2015-01-28 04:12:57 +00:00
|
|
|
_, err = am.Sign(a1, pass, toSign)
|
2015-01-25 01:07:20 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|