All checks were successful
		
		
	
	test / test (push) Successful in 42s
				
			## Pull Request template Please, go through these steps before clicking submit on this PR. 1. Give a descriptive title to your PR. 2. Provide a description of your changes. 3. Make sure you have some relevant tests. 4. Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes (if applicable). **PLEASE REMOVE THIS TEMPLATE BEFORE SUBMITTING** Reviewed-on: #369 Co-authored-by: Evstigneev Denis <danteevstigneev@yandex.ru> Co-committed-by: Evstigneev Denis <danteevstigneev@yandex.ru>
		
			
				
	
	
		
			115 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package broker
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"go.unistack.org/micro/v3/broker"
 | 
						|
	"go.unistack.org/micro/v3/metadata"
 | 
						|
)
 | 
						|
 | 
						|
func TestMemoryBatchBroker(t *testing.T) {
 | 
						|
	b := NewBroker()
 | 
						|
	ctx := context.Background()
 | 
						|
 | 
						|
	if err := b.Init(); err != nil {
 | 
						|
		t.Fatalf("Unexpected init error %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.Connect(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected connect error %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	topic := "test"
 | 
						|
	count := 10
 | 
						|
 | 
						|
	fn := func(evts broker.Events) error {
 | 
						|
		return evts.Ack()
 | 
						|
	}
 | 
						|
 | 
						|
	sub, err := b.BatchSubscribe(ctx, topic, fn)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("Unexpected error subscribing %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	msgs := make([]*broker.Message, 0, count)
 | 
						|
	for i := 0; i < count; i++ {
 | 
						|
		message := &broker.Message{
 | 
						|
			Header: map[string]string{
 | 
						|
				metadata.HeaderTopic: topic,
 | 
						|
				"foo":                "bar",
 | 
						|
				"id":                 fmt.Sprintf("%d", i),
 | 
						|
			},
 | 
						|
			Body: []byte(`"hello world"`),
 | 
						|
		}
 | 
						|
		msgs = append(msgs, message)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.BatchPublish(ctx, msgs); err != nil {
 | 
						|
		t.Fatalf("Unexpected error publishing %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := sub.Unsubscribe(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected error unsubscribing from %s: %v", topic, err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.Disconnect(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected connect error %v", err)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryBroker(t *testing.T) {
 | 
						|
	b := NewBroker()
 | 
						|
	ctx := context.Background()
 | 
						|
 | 
						|
	if err := b.Init(); err != nil {
 | 
						|
		t.Fatalf("Unexpected init error %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.Connect(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected connect error %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	topic := "test"
 | 
						|
	count := 10
 | 
						|
 | 
						|
	fn := func(_ broker.Event) error {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	sub, err := b.Subscribe(ctx, topic, fn)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("Unexpected error subscribing %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	msgs := make([]*broker.Message, 0, count)
 | 
						|
	for i := 0; i < count; i++ {
 | 
						|
		message := &broker.Message{
 | 
						|
			Header: map[string]string{
 | 
						|
				metadata.HeaderTopic: topic,
 | 
						|
				"foo":                "bar",
 | 
						|
				"id":                 fmt.Sprintf("%d", i),
 | 
						|
			},
 | 
						|
			Body: []byte(`"hello world"`),
 | 
						|
		}
 | 
						|
		msgs = append(msgs, message)
 | 
						|
 | 
						|
		if err := b.Publish(ctx, topic, message); err != nil {
 | 
						|
			t.Fatalf("Unexpected error publishing %d err: %v", i, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.BatchPublish(ctx, msgs); err != nil {
 | 
						|
		t.Fatalf("Unexpected error publishing %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := sub.Unsubscribe(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected error unsubscribing from %s: %v", topic, err)
 | 
						|
	}
 | 
						|
 | 
						|
	if err := b.Disconnect(ctx); err != nil {
 | 
						|
		t.Fatalf("Unexpected connect error %v", err)
 | 
						|
	}
 | 
						|
}
 |