fixup deps

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2020-08-28 11:27:45 +03:00
parent 0f19355621
commit 6aa857dfa1
4 changed files with 3 additions and 56 deletions

View File

@ -12,9 +12,9 @@ import (
"github.com/gobwas/httphead"
"github.com/gobwas/ws"
"github.com/gobwas/ws/wsutil"
raw "github.com/unistack-org/micro-codec-bytes"
"github.com/unistack-org/micro/v3/api"
"github.com/unistack-org/micro/v3/client"
raw "github.com/unistack-org/micro/v3/codec/bytes"
"github.com/unistack-org/micro/v3/logger"
"github.com/unistack-org/micro/v3/util/router"
)

View File

@ -1,53 +0,0 @@
package codec_test
import (
"io"
"testing"
"github.com/unistack-org/micro/v3/codec"
"github.com/unistack-org/micro/v3/codec/bytes"
"github.com/unistack-org/micro/v3/codec/grpc"
"github.com/unistack-org/micro/v3/codec/json"
"github.com/unistack-org/micro/v3/codec/jsonrpc"
"github.com/unistack-org/micro/v3/codec/proto"
"github.com/unistack-org/micro/v3/codec/protorpc"
"github.com/unistack-org/micro/v3/codec/text"
)
type testRWC struct{}
func (rwc *testRWC) Read(p []byte) (n int, err error) {
return 0, nil
}
func (rwc *testRWC) Write(p []byte) (n int, err error) {
return 0, nil
}
func (rwc *testRWC) Close() error {
return nil
}
func getCodecs(c io.ReadWriteCloser) map[string]codec.Codec {
return map[string]codec.Codec{
"bytes": bytes.NewCodec(c),
"grpc": grpc.NewCodec(c),
"json": json.NewCodec(c),
"jsonrpc": jsonrpc.NewCodec(c),
"proto": proto.NewCodec(c),
"protorpc": protorpc.NewCodec(c),
"text": text.NewCodec(c),
}
}
func Test_WriteEmptyBody(t *testing.T) {
for name, c := range getCodecs(&testRWC{}) {
err := c.Write(&codec.Message{
Type: codec.Error,
Header: map[string]string{},
}, nil)
if err != nil {
t.Fatalf("codec %s - expected no error when writing empty/nil body: %s", name, err)
}
}
}

View File

@ -71,8 +71,6 @@ type Event interface {
// Type alias to satisfy the deprecation
type Publisher = Event
type Option func(*Options)
var (
HeaderPrefix = "Micro-"
)

View File

@ -62,6 +62,8 @@ func newOptions(opts ...Option) Options {
return opt
}
type Option func(*Options)
// Broker to be used for service
func Broker(b broker.Broker) Option {
return func(o *Options) {