加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index_test.go 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
周睿 提交于 2020-08-21 10:07 . fix 不同topic相同groupid替换bug
package gqueue
import (
"context"
"fmt"
"github.com/Shopify/sarama"
"testing"
"time"
)
func TestNewQueue(t *testing.T) {
NewProducer()
go func() {
for e := range Errors() {
println(e.Error())
}
}()
c1, _ := NewConsumer("test", "id1")
c2, _ := NewConsumer("test", "id2")
i := 0
go func() {
for {
m := NewMessage()
m.Topic = "test"
i++
m.Value = sarama.StringEncoder(fmt.Sprintf("%d", i))
Input() <- m
time.Sleep(time.Second)
}
}()
go func() {
for {
ctx, _ := context.WithTimeout(context.Background(), time.Second*3)
list := c1.GetBatch(ctx, 5)
for _, one := range list {
fmt.Printf("[id1]%s", string(one.Value))
}
}
}()
for {
ctx, _ := context.WithTimeout(context.Background(), time.Second*3)
list := c2.GetBatch(ctx, 5)
for _, one := range list {
fmt.Printf("[id2]%s", string(one.Value))
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化