File: describeuserscramcredentials_test.go

package info (click to toggle)
golang-github-segmentio-kafka-go 0.4.49%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,292 kB
  • sloc: sh: 17; makefile: 10
file content (41 lines) | stat: -rw-r--r-- 883 bytes parent folder | download
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,
					},
				},
			},
		},
	})
}