| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package bus
- import (
- "context"
- "errors"
- "testing"
- "github.com/stretchr/testify/require"
- )
- type testQuery struct {
- ID int64
- Resp string
- }
- func TestDispatch(t *testing.T) {
- bus := New()
- var invoked bool
- bus.AddHandler(func(query *testQuery) error {
- invoked = true
- return nil
- })
- err := bus.Dispatch(&testQuery{})
- require.NoError(t, err)
- require.True(t, invoked, "expected handler to be called")
- }
- func TestDispatch_NoRegisteredHandler(t *testing.T) {
- bus := New()
- err := bus.Dispatch(&testQuery{})
- require.Equal(t, err, ErrHandlerNotFound,
- "expected bus to return HandlerNotFound since no handler is registered")
- }
- func TestDispatch_ContextHandler(t *testing.T) {
- bus := New()
- var invoked bool
- bus.AddHandlerCtx(func(ctx context.Context, query *testQuery) error {
- invoked = true
- return nil
- })
- err := bus.Dispatch(&testQuery{})
- require.NoError(t, err)
- require.True(t, invoked, "expected handler to be called")
- }
- func TestDispatchCtx(t *testing.T) {
- bus := New()
- var invoked bool
- bus.AddHandlerCtx(func(ctx context.Context, query *testQuery) error {
- invoked = true
- return nil
- })
- err := bus.DispatchCtx(context.Background(), &testQuery{})
- require.NoError(t, err)
- require.True(t, invoked, "expected handler to be called")
- }
- func TestDispatchCtx_NoRegisteredHandler(t *testing.T) {
- bus := New()
- err := bus.DispatchCtx(context.Background(), &testQuery{})
- require.Equal(t, err, ErrHandlerNotFound,
- "expected bus to return HandlerNotFound since no handler is registered")
- }
- func TestQuery(t *testing.T) {
- bus := New()
- want := "hello from handler"
- bus.AddHandler(func(q *testQuery) error {
- q.Resp = want
- return nil
- })
- q := &testQuery{}
- err := bus.Dispatch(q)
- require.NoError(t, err, "unable to dispatch query")
- require.Equal(t, want, q.Resp)
- }
- func TestQuery_HandlerReturnsError(t *testing.T) {
- bus := New()
- bus.AddHandler(func(query *testQuery) error {
- return errors.New("handler error")
- })
- err := bus.Dispatch(&testQuery{})
- require.Error(t, err, "expected error but got none")
- }
- func TestEvent(t *testing.T) {
- bus := New()
- var invoked bool
- bus.AddEventListener(func(query *testQuery) error {
- invoked = true
- return nil
- })
- err := bus.Publish(&testQuery{})
- require.NoError(t, err, "unable to publish event")
- require.True(t, invoked)
- }
- func TestEvent_NoRegisteredListener(t *testing.T) {
- bus := New()
- err := bus.Publish(&testQuery{})
- require.NoError(t, err, "unable to publish event")
- }
|