forked from TrueCloudLab/neoneo-go
core: move notary tests into the notary package
This commit is contained in:
parent
5d573895ad
commit
ef50518b83
2 changed files with 3 additions and 6 deletions
|
@ -26,7 +26,6 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
notaryModulePath = filepath.Join("..", "services", "notary")
|
|
||||||
pathToInternalContracts = filepath.Join("..", "..", "internal", "contracts")
|
pathToInternalContracts = filepath.Join("..", "..", "internal", "contracts")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
package core_test
|
package notary_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math/big"
|
"math/big"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"path"
|
|
||||||
"path/filepath"
|
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
@ -40,7 +38,7 @@ func getTestNotary(t *testing.T, bc *core.Blockchain, walletPath, pass string, o
|
||||||
mainCfg := config.P2PNotary{
|
mainCfg := config.P2PNotary{
|
||||||
Enabled: true,
|
Enabled: true,
|
||||||
UnlockWallet: config.Wallet{
|
UnlockWallet: config.Wallet{
|
||||||
Path: filepath.Join(notaryModulePath, walletPath),
|
Path: walletPath,
|
||||||
Password: pass,
|
Password: pass,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -53,7 +51,7 @@ func getTestNotary(t *testing.T, bc *core.Blockchain, walletPath, pass string, o
|
||||||
ntr, err := notary.NewNotary(cfg, netmode.UnitTestNet, mp, onTx)
|
ntr, err := notary.NewNotary(cfg, netmode.UnitTestNet, mp, onTx)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
w, err := wallet.NewWalletFromFile(path.Join(notaryModulePath, walletPath))
|
w, err := wallet.NewWalletFromFile(walletPath)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.NoError(t, w.Accounts[0].Decrypt(pass, w.Scrypt))
|
require.NoError(t, w.Accounts[0].Decrypt(pass, w.Scrypt))
|
||||||
return w.Accounts[0], ntr, mp
|
return w.Accounts[0], ntr, mp
|
Loading…
Reference in a new issue