go-pattern-examples/gomore/27_messages/message_test.go

89 lines
1.6 KiB
Go
Raw Normal View History

2020-04-28 17:48:25 +03:00
package gomore
2020-04-29 12:27:46 +03:00
import (
"fmt"
"testing"
"time"
)
2020-04-28 17:48:25 +03:00
2020-04-29 12:27:46 +03:00
////////////////////////////////
//通常意义上是,连接消息队列之后就可以发送消息
////当订阅著之后才会收到相关Topic消息的推送
//这里为了简化,直接订阅成功后发送消息,省去连接消息队列发送消息的步骤
////////////////////////////////
2020-04-28 17:48:25 +03:00
func TestMessageSubAndPub(t *testing.T) {
2020-04-29 12:27:46 +03:00
exit := make(chan bool, 1)
2020-04-28 17:48:25 +03:00
//创建一个队列
2020-04-29 12:27:46 +03:00
msgQueue := Queue{Topics: map[string]Topic{}}
2020-04-28 17:48:25 +03:00
2020-04-29 12:27:46 +03:00
//创建一个感兴趣的话题
topic := msgQueue.AddTopic("i want apple", 10)
//向队列订阅话题
if subSCription123, ok := topic.Subscribe(123, "tom want apple"); ok {
//订阅成功了
go func() {
EXIT
for {
select {
case <-exit:
break EXIT
default:
msg := Message{}
subSCription123.Receive(&msg)
fmt.Println(msg)
}
time.Sleep(200)
}
}()
msg := Message{
//Type 类型[code :1,2,3,4]
Type: 1,
Text: "here is a apple",
From: Session{User{123, "lily"}, time.Now()},
}
subSCription123.Publish(msg)
msg.Type++
subSCription123.Publish(msg)
}
if subSCription456, ok := topic.Subscribe(456, "lily want peach"); ok {
//订阅成功了
//发送一个消息
go func() {
EXIT
for {
select {
case <-exit:
break EXIT
default:
msg := Message{}
subSCription456.Receive(&msg)
fmt.Println(msg)
}
time.Sleep(200)
}
}()
msg := Message{
//Type 类型[code :1,2,3,4]
Type: 1,
Text: "here is a peach",
From: Session{User{123, "bob"}, time.Now()},
}
subSCription456.Publish(msg)
msg.Type++
subSCription456.Publish(msg)
}
2020-04-28 17:48:25 +03:00
}