forked from cerc-io/plugeth
Add plugin hook tester
This commit is contained in:
parent
d2df0b4c5f
commit
40377543bf
22
core/blockchain_hooks_test.go
Normal file
22
core/blockchain_hooks_test.go
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package core
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
"github.com/ethereum/go-ethereum/plugins"
|
||||||
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
|
"github.com/ethereum/go-ethereum/common"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
func TestReorgLongHeadersHook(t *testing.T) {
|
||||||
|
invoked := false
|
||||||
|
done := plugins.HookTester("NewHead", func(b *types.Block, h common.Hash, logs []*types.Log) {
|
||||||
|
// invoked = true
|
||||||
|
if b == nil { t.Errorf("Expected block to be non-nil") }
|
||||||
|
if h == (common.Hash{}) { t.Errorf("Expected hash to be non-empty") }
|
||||||
|
if len(logs) > 0 { t.Errorf("Expected some logs") }
|
||||||
|
})
|
||||||
|
defer done()
|
||||||
|
testReorgLong(t, true)
|
||||||
|
if !invoked { t.Errorf("Expected plugin invocation")}
|
||||||
|
}
|
19
plugins/hooktester.go
Normal file
19
plugins/hooktester.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
package plugins
|
||||||
|
|
||||||
|
|
||||||
|
// type PluginLoader struct{
|
||||||
|
// Plugins []*plugin.Plugin
|
||||||
|
// Subcommands map[string]Subcommand
|
||||||
|
// Flags []*flag.FlagSet
|
||||||
|
// LookupCache map[string][]interface{}
|
||||||
|
// }
|
||||||
|
|
||||||
|
func HookTester(name string, fn interface{}) func() {
|
||||||
|
oldDefault := DefaultPluginLoader
|
||||||
|
DefaultPluginLoader = &PluginLoader{
|
||||||
|
LookupCache: map[string][]interface{}{
|
||||||
|
name: []interface{}{fn},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return func() { DefaultPluginLoader = oldDefault }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user