1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
// Copyright (C) MongoDB, Inc. 2017-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
package drivertest
import (
"errors"
"net"
"time"
)
// ChannelNetConn implements the net.Conn interface by reading and writing wire messages to a channel.
type ChannelNetConn struct {
WriteErr error
Written chan []byte
ReadResp chan []byte
ReadErr chan error
}
// Read reads data from the connection
func (c *ChannelNetConn) Read(b []byte) (int, error) {
var wm []byte
var err error
select {
case wm = <-c.ReadResp:
case err = <-c.ReadErr:
}
return copy(b, wm), err
}
// Write writes data to the connection.
func (c *ChannelNetConn) Write(b []byte) (int, error) {
copyBuf := make([]byte, len(b))
copy(copyBuf, b)
select {
case c.Written <- copyBuf:
default:
c.WriteErr = errors.New("could not write wm to Written channel")
}
return len(b), c.WriteErr
}
// Close closes the connection.
func (c *ChannelNetConn) Close() error {
return nil
}
// LocalAddr returns the local network address.
func (c *ChannelNetConn) LocalAddr() net.Addr {
return nil
}
// RemoteAddr returns the remote network address.
func (c *ChannelNetConn) RemoteAddr() net.Addr {
return nil
}
// SetDeadline sets the read and write deadlines associated with the connection.
func (c *ChannelNetConn) SetDeadline(_ time.Time) error {
return nil
}
// SetReadDeadline sets the read and write deadlines associated with the connection.
func (c *ChannelNetConn) SetReadDeadline(_ time.Time) error {
return nil
}
// SetWriteDeadline sets the read and write deadlines associated with the connection.
func (c *ChannelNetConn) SetWriteDeadline(_ time.Time) error {
return nil
}
// GetWrittenMessage gets the last wire message written to the connection
func (c *ChannelNetConn) GetWrittenMessage() []byte {
select {
case wm := <-c.Written:
return wm
default:
return nil
}
}
// AddResponse adds a response to the connection.
func (c *ChannelNetConn) AddResponse(resp []byte) error {
select {
case c.ReadResp <- resp[:4]:
default:
return errors.New("could not write length bytes")
}
select {
case c.ReadResp <- resp[4:]:
default:
return errors.New("could not write response bytes")
}
return nil
}
|