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
|
package describeuserscramcredentials_test
import (
"testing"
"github.com/segmentio/kafka-go/protocol/describeuserscramcredentials"
"github.com/segmentio/kafka-go/protocol/prototest"
)
const (
v0 = 0
)
func TestDescribeUserScramCredentialsRequest(t *testing.T) {
prototest.TestRequest(t, v0, &describeuserscramcredentials.Request{
Users: []describeuserscramcredentials.RequestUser{
{
Name: "foo-1",
},
},
})
}
func TestDescribeUserScramCredentialsResponse(t *testing.T) {
prototest.TestResponse(t, v0, &describeuserscramcredentials.Response{
ThrottleTimeMs: 500,
Results: []describeuserscramcredentials.ResponseResult{
{
User: "foo",
ErrorCode: 1,
ErrorMessage: "foo-error",
CredentialInfos: []describeuserscramcredentials.CredentialInfo{
{
Mechanism: 2,
Iterations: 15000,
},
},
},
},
})
}
|