2015-01-14 02:31:27 +03:00
|
|
|
package client
|
|
|
|
|
2019-01-10 14:39:39 +03:00
|
|
|
import (
|
2021-10-02 19:55:07 +03:00
|
|
|
"go.unistack.org/micro/v3/codec"
|
2019-01-10 14:39:39 +03:00
|
|
|
)
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
type testRequest struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
codec codec.Codec
|
|
|
|
body interface{}
|
2021-04-25 11:58:24 +03:00
|
|
|
service string
|
2019-01-18 15:30:39 +03:00
|
|
|
method string
|
2019-01-11 00:25:31 +03:00
|
|
|
endpoint string
|
2015-05-23 13:53:40 +03:00
|
|
|
contentType string
|
2021-04-25 11:58:24 +03:00
|
|
|
opts RequestOptions
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) ContentType() string {
|
2015-01-14 02:31:27 +03:00
|
|
|
return r.contentType
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) Service() string {
|
2015-01-14 02:31:27 +03:00
|
|
|
return r.service
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) Method() string {
|
2019-01-18 13:12:57 +03:00
|
|
|
return r.method
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) Endpoint() string {
|
2019-01-11 00:25:31 +03:00
|
|
|
return r.endpoint
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) Body() interface{} {
|
2019-01-10 14:39:39 +03:00
|
|
|
return r.body
|
|
|
|
}
|
|
|
|
|
2020-11-23 16:18:47 +03:00
|
|
|
func (r *testRequest) Codec() codec.Codec {
|
2019-01-10 14:39:39 +03:00
|
|
|
return r.codec
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
2015-12-17 23:37:35 +03:00
|
|
|
|
2020-07-27 15:22:00 +03:00
|
|
|
func (r *testRequest) Stream() bool {
|
2015-12-31 21:11:46 +03:00
|
|
|
return r.opts.Stream
|
2015-12-17 23:37:35 +03:00
|
|
|
}
|