2022-10-19 12:56:16 +00:00
|
|
|
package actor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/neorpc"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/neorpc/result"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AwaitableRPCClient struct {
|
|
|
|
RPCClient
|
|
|
|
|
|
|
|
chLock sync.RWMutex
|
2022-10-25 12:11:24 +00:00
|
|
|
subBlockCh chan<- *block.Block
|
|
|
|
subTxCh chan<- *state.AppExecResult
|
2022-10-19 12:56:16 +00:00
|
|
|
}
|
|
|
|
|
2022-10-25 12:11:24 +00:00
|
|
|
func (c *AwaitableRPCClient) ReceiveBlocks(flt *neorpc.BlockFilter, rcvr chan<- *block.Block) (string, error) {
|
2022-10-19 12:56:16 +00:00
|
|
|
c.chLock.Lock()
|
|
|
|
defer c.chLock.Unlock()
|
2022-10-25 12:11:24 +00:00
|
|
|
c.subBlockCh = rcvr
|
2022-10-19 12:56:16 +00:00
|
|
|
return "1", nil
|
|
|
|
}
|
2022-10-25 12:11:24 +00:00
|
|
|
func (c *AwaitableRPCClient) ReceiveExecutions(flt *neorpc.ExecutionFilter, rcvr chan<- *state.AppExecResult) (string, error) {
|
2022-10-19 12:56:16 +00:00
|
|
|
c.chLock.Lock()
|
|
|
|
defer c.chLock.Unlock()
|
2022-10-25 12:11:24 +00:00
|
|
|
c.subTxCh = rcvr
|
2022-10-19 12:56:16 +00:00
|
|
|
return "2", nil
|
|
|
|
}
|
|
|
|
func (c *AwaitableRPCClient) Unsubscribe(id string) error { return nil }
|
|
|
|
|
|
|
|
func TestNewWaiter(t *testing.T) {
|
|
|
|
w := newWaiter((RPCActor)(nil), nil)
|
|
|
|
_, ok := w.(NullWaiter)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
w = newWaiter(&RPCClient{}, &result.Version{})
|
|
|
|
_, ok = w.(*PollingWaiter)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
w = newWaiter(&AwaitableRPCClient{RPCClient: RPCClient{}}, &result.Version{})
|
|
|
|
_, ok = w.(*EventWaiter)
|
|
|
|
require.True(t, ok)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPollingWaiter_Wait(t *testing.T) {
|
|
|
|
h := util.Uint256{1, 2, 3}
|
|
|
|
bCount := uint32(5)
|
|
|
|
appLog := &result.ApplicationLog{Container: h, Executions: []state.Execution{{}}}
|
|
|
|
expected := &state.AppExecResult{Container: h, Execution: state.Execution{}}
|
|
|
|
c := &RPCClient{appLog: appLog}
|
|
|
|
c.bCount.Store(bCount)
|
|
|
|
w := newWaiter(c, &result.Version{Protocol: result.Protocol{MillisecondsPerBlock: 1}}) // reduce testing time.
|
|
|
|
_, ok := w.(*PollingWaiter)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
// Wait with error.
|
|
|
|
someErr := errors.New("some error")
|
|
|
|
_, err := w.Wait(h, bCount, someErr)
|
|
|
|
require.ErrorIs(t, err, someErr)
|
|
|
|
|
|
|
|
// AER is in chain immediately.
|
|
|
|
aer, err := w.Wait(h, bCount-1, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, expected, aer)
|
|
|
|
|
|
|
|
// Missing AER after VUB.
|
|
|
|
c.appLog = nil
|
|
|
|
_, err = w.Wait(h, bCount-2, nil)
|
|
|
|
require.ErrorIs(t, ErrTxNotAccepted, err)
|
|
|
|
|
|
|
|
checkErr := func(t *testing.T, trigger func(), target error) {
|
|
|
|
errCh := make(chan error)
|
|
|
|
go func() {
|
|
|
|
_, err = w.Wait(h, bCount, nil)
|
|
|
|
errCh <- err
|
|
|
|
}()
|
|
|
|
timer := time.NewTimer(time.Second)
|
|
|
|
var triggerFired bool
|
|
|
|
waitloop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case err = <-errCh:
|
|
|
|
require.ErrorIs(t, err, target)
|
|
|
|
break waitloop
|
|
|
|
case <-timer.C:
|
|
|
|
if triggerFired {
|
|
|
|
t.Fatal("failed to await result")
|
|
|
|
}
|
|
|
|
trigger()
|
|
|
|
triggerFired = true
|
|
|
|
timer.Reset(time.Second * 2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
require.True(t, triggerFired)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tx is accepted before VUB.
|
|
|
|
c.appLog = nil
|
|
|
|
c.bCount.Store(bCount)
|
|
|
|
checkErr(t, func() { c.bCount.Store(bCount + 1) }, ErrTxNotAccepted)
|
|
|
|
|
|
|
|
// Context is cancelled.
|
|
|
|
c.appLog = nil
|
|
|
|
c.bCount.Store(bCount)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
c.context = ctx
|
|
|
|
checkErr(t, cancel, ErrContextDone)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWSWaiter_Wait(t *testing.T) {
|
|
|
|
h := util.Uint256{1, 2, 3}
|
|
|
|
bCount := uint32(5)
|
|
|
|
appLog := &result.ApplicationLog{Container: h, Executions: []state.Execution{{}}}
|
|
|
|
expected := &state.AppExecResult{Container: h, Execution: state.Execution{}}
|
|
|
|
c := &AwaitableRPCClient{RPCClient: RPCClient{appLog: appLog}}
|
|
|
|
c.bCount.Store(bCount)
|
|
|
|
w := newWaiter(c, &result.Version{Protocol: result.Protocol{MillisecondsPerBlock: 1}}) // reduce testing time.
|
|
|
|
_, ok := w.(*EventWaiter)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
// Wait with error.
|
|
|
|
someErr := errors.New("some error")
|
|
|
|
_, err := w.Wait(h, bCount, someErr)
|
|
|
|
require.ErrorIs(t, err, someErr)
|
|
|
|
|
|
|
|
// AER is in chain immediately.
|
2022-11-22 13:41:22 +00:00
|
|
|
aer, err := w.Wait(h, bCount-1, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, expected, aer)
|
|
|
|
|
|
|
|
// Auxiliary things for asynchronous tests.
|
2022-10-19 12:56:16 +00:00
|
|
|
doneCh := make(chan struct{})
|
|
|
|
check := func(t *testing.T, trigger func()) {
|
|
|
|
timer := time.NewTimer(time.Second)
|
|
|
|
var triggerFired bool
|
|
|
|
waitloop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-doneCh:
|
|
|
|
break waitloop
|
|
|
|
case <-timer.C:
|
|
|
|
if triggerFired {
|
|
|
|
t.Fatal("failed to await result")
|
|
|
|
}
|
|
|
|
trigger()
|
|
|
|
triggerFired = true
|
|
|
|
timer.Reset(time.Second * 2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
require.True(t, triggerFired)
|
|
|
|
}
|
2022-11-22 13:41:22 +00:00
|
|
|
|
|
|
|
// AER received after the subscription.
|
|
|
|
c.RPCClient.appLog = nil
|
|
|
|
go func() {
|
|
|
|
aer, err = w.Wait(h, bCount-1, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, expected, aer)
|
|
|
|
doneCh <- struct{}{}
|
|
|
|
}()
|
2022-10-19 12:56:16 +00:00
|
|
|
check(t, func() {
|
|
|
|
c.chLock.RLock()
|
|
|
|
defer c.chLock.RUnlock()
|
2022-10-25 12:11:24 +00:00
|
|
|
c.subTxCh <- expected
|
2022-10-19 12:56:16 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Missing AER after VUB.
|
|
|
|
go func() {
|
|
|
|
_, err = w.Wait(h, bCount-2, nil)
|
|
|
|
require.ErrorIs(t, err, ErrTxNotAccepted)
|
|
|
|
doneCh <- struct{}{}
|
|
|
|
}()
|
|
|
|
check(t, func() {
|
|
|
|
c.chLock.RLock()
|
|
|
|
defer c.chLock.RUnlock()
|
2022-10-25 12:11:24 +00:00
|
|
|
c.subBlockCh <- &block.Block{}
|
2022-10-19 12:56:16 +00:00
|
|
|
})
|
|
|
|
}
|