mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00

* Add mongodb reader service Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Add tests for mongodb reader service Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Add documentation for mongodb reader service Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Fix test function name Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Update comment in docker-compose for mongodb-reader service Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com>
67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package internal
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"github.com/mongodb/mongo-go-driver/core/wiremessage"
|
|
"github.com/mongodb/mongo-go-driver/bson"
|
|
)
|
|
|
|
// Implements the connection.Connection interface by reading and writing wire messages
|
|
// to a channel
|
|
type ChannelConn struct {
|
|
T *testing.T
|
|
WriteErr error
|
|
Written chan wiremessage.WireMessage
|
|
ReadResp chan wiremessage.WireMessage
|
|
ReadErr chan error
|
|
}
|
|
|
|
func (c *ChannelConn) WriteWireMessage(ctx context.Context, wm wiremessage.WireMessage) error {
|
|
select {
|
|
case c.Written <- wm:
|
|
default:
|
|
c.T.Error("could not write wiremessage to written channel")
|
|
}
|
|
return c.WriteErr
|
|
}
|
|
|
|
func (c *ChannelConn) ReadWireMessage(ctx context.Context) (wiremessage.WireMessage, error) {
|
|
var wm wiremessage.WireMessage
|
|
var err error
|
|
select {
|
|
case wm = <-c.ReadResp:
|
|
case err = <-c.ReadErr:
|
|
case <-ctx.Done():
|
|
}
|
|
return wm, err
|
|
}
|
|
|
|
func (c *ChannelConn) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *ChannelConn) Expired() bool {
|
|
return false
|
|
}
|
|
|
|
func (c *ChannelConn) Alive() bool {
|
|
return true
|
|
}
|
|
|
|
func (c *ChannelConn) ID() string {
|
|
return "faked"
|
|
}
|
|
|
|
// Create a OP_REPLY wiremessage from a BSON document
|
|
func MakeReply(t *testing.T, doc *bson.Document) wiremessage.WireMessage {
|
|
rdr, err := doc.MarshalBSON()
|
|
if err != nil {
|
|
t.Fatalf("Could not create document: %v", err)
|
|
}
|
|
return wiremessage.Reply{
|
|
NumberReturned: 1,
|
|
Documents: []bson.Reader{rdr},
|
|
}
|
|
}
|