websocket: add SendAll
This commit is contained in:
parent
6b332f7254
commit
5fd5733261
|
@ -66,3 +66,11 @@ func (s *Server) DelClient(c *Client) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Server) SendAll(msg *Message) {
|
||||||
|
s.clientsMutex.Lock()
|
||||||
|
defer s.clientsMutex.Unlock()
|
||||||
|
for _, c := range s.clients {
|
||||||
|
c.Write(msg)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -5,6 +5,8 @@ import (
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/google/uuid"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -31,3 +33,45 @@ func TestServer(t *testing.T) {
|
||||||
srv.DelClient(nil)
|
srv.DelClient(nil)
|
||||||
srv.DelClient(c)
|
srv.DelClient(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestServerSendAll(t *testing.T) {
|
||||||
|
assert := assert.New(t)
|
||||||
|
srv := NewServer(nil, nil)
|
||||||
|
assert.NotNil(srv)
|
||||||
|
|
||||||
|
out1 := make(chan *Message)
|
||||||
|
c1 := &Client{
|
||||||
|
id: uuid.New(),
|
||||||
|
out: out1,
|
||||||
|
server: srv,
|
||||||
|
}
|
||||||
|
|
||||||
|
out2 := make(chan *Message)
|
||||||
|
c2 := &Client{
|
||||||
|
id: uuid.New(),
|
||||||
|
out: out2,
|
||||||
|
server: srv,
|
||||||
|
}
|
||||||
|
srv.AddClient(c1)
|
||||||
|
srv.AddClient(c2)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
|
||||||
|
msg := <-out1
|
||||||
|
assert.Equal("hi", msg.Subject)
|
||||||
|
|
||||||
|
}()
|
||||||
|
go func() {
|
||||||
|
|
||||||
|
msg := <-out2
|
||||||
|
assert.Equal("hi", msg.Subject)
|
||||||
|
|
||||||
|
}()
|
||||||
|
|
||||||
|
srv.SendAll(&Message{
|
||||||
|
Subject: "hi",
|
||||||
|
})
|
||||||
|
|
||||||
|
srv.DelClient(c2)
|
||||||
|
srv.DelClient(c1)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue