File: addpartitionstotxn_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 (60 lines) | stat: -rw-r--r-- 1,296 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
package addpartitionstotxn_test

import (
	"testing"

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

func TestAddPartitionsToTxnRequest(t *testing.T) {
	for _, version := range []int16{0, 1, 2, 3} {
		prototest.TestRequest(t, version, &addpartitionstotxn.Request{
			TransactionalID: "transaction-id-0",
			ProducerID:      10,
			ProducerEpoch:   100,
			Topics: []addpartitionstotxn.RequestTopic{
				{
					Name:       "topic-1",
					Partitions: []int32{0, 1, 2, 3},
				},
				{
					Name:       "topic-2",
					Partitions: []int32{0, 1, 2},
				},
			},
		})
	}
}

func TestAddPartitionsToTxnResponse(t *testing.T) {
	for _, version := range []int16{0, 1, 2, 3} {
		prototest.TestResponse(t, version, &addpartitionstotxn.Response{
			ThrottleTimeMs: 20,
			Results: []addpartitionstotxn.ResponseResult{
				{
					Name: "topic-1",
					Results: []addpartitionstotxn.ResponsePartition{
						{
							PartitionIndex: 0,
							ErrorCode:      19,
						},
						{
							PartitionIndex: 1,
							ErrorCode:      0,
						},
					},
				},
				{
					Name: "topic-2",
					Results: []addpartitionstotxn.ResponsePartition{
						{
							PartitionIndex: 0,
							ErrorCode:      0,
						},
					},
				},
			},
		})
	}
}