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
|
package alterconfigs_test
import (
"testing"
"github.com/segmentio/kafka-go/protocol/alterconfigs"
"github.com/segmentio/kafka-go/protocol/prototest"
)
const (
v0 = 0
v1 = 1
)
func TestAlterConfigsRequest(t *testing.T) {
prototest.TestRequest(t, v0, &alterconfigs.Request{
ValidateOnly: true,
Resources: []alterconfigs.RequestResources{
{
ResourceType: 1,
ResourceName: "foo",
Configs: []alterconfigs.RequestConfig{
{
Name: "foo",
Value: "foo",
},
},
},
},
})
prototest.TestRequest(t, v1, &alterconfigs.Request{
ValidateOnly: true,
Resources: []alterconfigs.RequestResources{
{
ResourceType: 1,
ResourceName: "foo",
Configs: []alterconfigs.RequestConfig{
{
Name: "foo",
Value: "foo",
},
},
},
},
})
}
func TestAlterConfigsResponse(t *testing.T) {
prototest.TestResponse(t, v0, &alterconfigs.Response{
ThrottleTimeMs: 500,
Responses: []alterconfigs.ResponseResponses{
{
ErrorCode: 1,
ErrorMessage: "foo",
ResourceType: 1,
ResourceName: "foo",
},
},
})
prototest.TestResponse(t, v1, &alterconfigs.Response{
ThrottleTimeMs: 500,
Responses: []alterconfigs.ResponseResponses{
{
ErrorCode: 1,
ErrorMessage: "foo",
ResourceType: 1,
ResourceName: "foo",
},
},
})
}
|