127 lines
3.3 KiB
Go
127 lines
3.3 KiB
Go
package graphvent
|
|
|
|
import (
|
|
"testing"
|
|
"fmt"
|
|
"time"
|
|
"runtime/pprof"
|
|
"runtime/debug"
|
|
"os"
|
|
badger "github.com/dgraph-io/badger/v3"
|
|
)
|
|
|
|
type GraphTester testing.T
|
|
const listner_timeout = 50 * time.Millisecond
|
|
|
|
func (t * GraphTester) WaitForLinkState(ctx * Context, listener *ListenerExt, state string, timeout time.Duration, str string) Signal {
|
|
timeout_channel := time.After(timeout)
|
|
for true {
|
|
select {
|
|
case signal := <- listener.Chan:
|
|
if signal == nil {
|
|
ctx.Log.Logf("test", "SIGNAL_CHANNEL_CLOSED: %s", listener)
|
|
t.Fatal(str)
|
|
}
|
|
if signal.Type() == LinkSignalType {
|
|
sig, ok := signal.(LinkSignal)
|
|
if ok == true {
|
|
ctx.Log.Logf("test", "Link state received: %s", sig.State)
|
|
if sig.State == state {
|
|
return signal
|
|
}
|
|
} else {
|
|
ctx.Log.Logf("test", "Failed to cast signal to LinkSignal: %+v", signal)
|
|
}
|
|
}
|
|
case <-timeout_channel:
|
|
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
|
|
t.Fatal(str)
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t * GraphTester) WaitForStatus(ctx * Context, listener *ListenerExt, status string, timeout time.Duration, str string) Signal {
|
|
timeout_channel := time.After(timeout)
|
|
for true {
|
|
select {
|
|
case signal := <- listener.Chan:
|
|
if signal == nil {
|
|
ctx.Log.Logf("test", "SIGNAL_CHANNEL_CLOSED: %s", listener)
|
|
t.Fatal(str)
|
|
}
|
|
if signal.Type() == StatusSignalType {
|
|
sig, ok := signal.(StatusSignal)
|
|
if ok == true {
|
|
|
|
|
|
ctx.Log.Logf("test", "Status received: %s", sig.Status)
|
|
if sig.Status == status {
|
|
return signal
|
|
}
|
|
} else {
|
|
ctx.Log.Logf("test", "Failed to cast status to StatusSignal: %+v", signal)
|
|
}
|
|
}
|
|
case <-timeout_channel:
|
|
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
|
|
t.Fatal(str)
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t * GraphTester) CheckForNone(listener *ListenerExt, str string) {
|
|
timeout := time.After(listner_timeout)
|
|
select {
|
|
case sig := <- listener.Chan:
|
|
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
|
|
t.Fatal(fmt.Sprintf("%s : %+v", str, sig))
|
|
case <-timeout:
|
|
}
|
|
}
|
|
|
|
const SimpleListenerNodeType = NodeType("SIMPLE_LISTENER")
|
|
|
|
func NewSimpleListener(ctx *Context, buffer int) (*Node, *ListenerExt) {
|
|
policy := NewAllNodesPolicy([]SignalType{SignalType("status")})
|
|
listener_extension := NewListenerExt(buffer)
|
|
listener := NewNode(ctx,
|
|
RandID(),
|
|
SimpleListenerNodeType,
|
|
nil,
|
|
listener_extension,
|
|
NewACLExt(&policy),
|
|
NewLockableExt(nil, nil, nil, nil))
|
|
|
|
return listener, listener_extension
|
|
}
|
|
|
|
func logTestContext(t * testing.T, components []string) *Context {
|
|
db, err := badger.Open(badger.DefaultOptions("").WithInMemory(true))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ctx, err := NewContext(db, NewConsoleLogger(components))
|
|
fatalErr(t, err)
|
|
|
|
err = ctx.RegisterNodeType(SimpleListenerNodeType, []ExtType{ACLExtType, ListenerExtType, LockableExtType})
|
|
fatalErr(t, err)
|
|
|
|
return ctx
|
|
}
|
|
|
|
func testContext(t * testing.T) * Context {
|
|
return logTestContext(t, []string{})
|
|
}
|
|
|
|
func fatalErr(t * testing.T, err error) {
|
|
if err != nil {
|
|
debug.PrintStack()
|
|
t.Fatal(err)
|
|
}
|
|
}
|