File: incremental_alter_configs_request_test.go

package info (click to toggle)
golang-github-ibm-sarama 1.45.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,964 kB
  • sloc: makefile: 35; sh: 19
file content (100 lines) | stat: -rw-r--r-- 2,440 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//go:build !functional

package sarama

import "testing"

var (
	emptyIncrementalAlterConfigsRequest = []byte{
		0, 0, 0, 0, // 0 configs
		0, // don't Validate
	}

	singleIncrementalAlterConfigsRequest = []byte{
		0, 0, 0, 1, // 1 config
		2,                   // a topic
		0, 3, 'f', 'o', 'o', // topic name: foo
		0, 0, 0, 1, // 1 config name
		0, 10, // 10 chars
		's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
		0, // OperationSet
		0, 4,
		'1', '0', '0', '0',
		0, // don't validate
	}

	doubleIncrementalAlterConfigsRequest = []byte{
		0, 0, 0, 2, // 2 config
		2,                   // a topic
		0, 3, 'f', 'o', 'o', // topic name: foo
		0, 0, 0, 1, // 1 config name
		0, 10, // 10 chars
		's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
		0, // OperationSet
		0, 4,
		'1', '0', '0', '0',
		2,                   // a topic
		0, 3, 'b', 'a', 'r', // topic name: foo
		0, 0, 0, 1, // 2 config
		0, 12, // 12 chars
		'r', 'e', 't', 'e', 'n', 't', 'i', 'o', 'n', '.', 'm', 's',
		1, // OperationDelete
		0, 4,
		'1', '0', '0', '0',
		0, // don't validate
	}
)

func TestIncrementalAlterConfigsRequest(t *testing.T) {
	var request *IncrementalAlterConfigsRequest

	request = &IncrementalAlterConfigsRequest{
		Resources: []*IncrementalAlterConfigsResource{},
	}
	testRequest(t, "no requests", request, emptyIncrementalAlterConfigsRequest)

	configValue := "1000"
	request = &IncrementalAlterConfigsRequest{
		Resources: []*IncrementalAlterConfigsResource{
			{
				Type: TopicResource,
				Name: "foo",
				ConfigEntries: map[string]IncrementalAlterConfigsEntry{
					"segment.ms": {
						Operation: IncrementalAlterConfigsOperationSet,
						Value:     &configValue,
					},
				},
			},
		},
	}

	testRequest(t, "one config", request, singleIncrementalAlterConfigsRequest)

	request = &IncrementalAlterConfigsRequest{
		Resources: []*IncrementalAlterConfigsResource{
			{
				Type: TopicResource,
				Name: "foo",
				ConfigEntries: map[string]IncrementalAlterConfigsEntry{
					"segment.ms": {
						Operation: IncrementalAlterConfigsOperationSet,
						Value:     &configValue,
					},
				},
			},
			{
				Type: TopicResource,
				Name: "bar",
				ConfigEntries: map[string]IncrementalAlterConfigsEntry{
					"retention.ms": {
						Operation: IncrementalAlterConfigsOperationDelete,
						Value:     &configValue,
					},
				},
			},
		},
	}

	testRequest(t, "two configs", request, doubleIncrementalAlterConfigsRequest)
}