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
|
package describeclientquotas_test
import (
"testing"
"github.com/segmentio/kafka-go/protocol/describeclientquotas"
"github.com/segmentio/kafka-go/protocol/prototest"
)
const (
v0 = 0
v1 = 1
)
func TestDescribeClientQuotasRequest(t *testing.T) {
prototest.TestRequest(t, v0, &describeclientquotas.Request{
Strict: true,
Components: []describeclientquotas.Component{
{
EntityType: "client-id",
MatchType: 0,
Match: "my-client-id",
},
},
})
prototest.TestRequest(t, v1, &describeclientquotas.Request{
Strict: true,
Components: []describeclientquotas.Component{
{
EntityType: "client-id",
MatchType: 0,
Match: "my-client-id",
},
},
})
}
func TestDescribeClientQuotasResponse(t *testing.T) {
prototest.TestResponse(t, v0, &describeclientquotas.Response{
ThrottleTimeMs: 1,
ErrorCode: 1,
ErrorMessage: "foo",
Entries: []describeclientquotas.ResponseQuotas{
{
Entities: []describeclientquotas.Entity{
{
EntityType: "client-id",
EntityName: "my-client-id",
},
},
Values: []describeclientquotas.Value{
{
Key: "foo",
Value: 1.0,
},
},
},
},
})
prototest.TestResponse(t, v1, &describeclientquotas.Response{
ThrottleTimeMs: 1,
ErrorCode: 1,
ErrorMessage: "foo",
Entries: []describeclientquotas.ResponseQuotas{
{
Entities: []describeclientquotas.Entity{
{
EntityType: "client-id",
EntityName: "my-client-id",
},
},
Values: []describeclientquotas.Value{
{
Key: "foo",
Value: 1.0,
},
},
},
},
})
}
|