File: deletetopics_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 (74 lines) | stat: -rw-r--r-- 1,308 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
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
package deletetopics_test

import (
	"testing"

	"github.com/segmentio/kafka-go/protocol/deletetopics"
	"github.com/segmentio/kafka-go/protocol/prototest"
)

const (
	v0 = 0
	v1 = 1
	v3 = 3
)

func TestDeleteTopicsRequest(t *testing.T) {
	prototest.TestRequest(t, v0, &deletetopics.Request{
		TopicNames: []string{"foo", "bar"},
		TimeoutMs:  500,
	})

	prototest.TestRequest(t, v1, &deletetopics.Request{
		TopicNames: []string{"foo", "bar"},
		TimeoutMs:  500,
	})

	prototest.TestRequest(t, v3, &deletetopics.Request{
		TopicNames: []string{"foo", "bar"},
		TimeoutMs:  500,
	})
}

func TestDeleteTopicsResponse(t *testing.T) {
	prototest.TestResponse(t, v0, &deletetopics.Response{
		Responses: []deletetopics.ResponseTopic{
			{
				Name:      "foo",
				ErrorCode: 1,
			},
			{
				Name:      "bar",
				ErrorCode: 1,
			},
		},
	})

	prototest.TestResponse(t, v1, &deletetopics.Response{
		ThrottleTimeMs: 500,
		Responses: []deletetopics.ResponseTopic{
			{
				Name:      "foo",
				ErrorCode: 1,
			},
			{
				Name:      "bar",
				ErrorCode: 1,
			},
		},
	})

	prototest.TestResponse(t, v3, &deletetopics.Response{
		ThrottleTimeMs: 500,
		Responses: []deletetopics.ResponseTopic{
			{
				Name:      "foo",
				ErrorCode: 1,
			},
			{
				Name:      "bar",
				ErrorCode: 1,
			},
		},
	})
}