forked from confluentinc/confluent-kafka-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Consumer_Assignment.cs
175 lines (160 loc) · 7.04 KB
/
Consumer_Assignment.cs
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright 2016-2017 Confluent Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Refer to LICENSE for more information.
#pragma warning disable xUnit1026
using System;
using System.Collections.Generic;
using System.Linq;
using Xunit;
namespace Confluent.Kafka.IntegrationTests
{
public partial class Tests
{
/// <summary>
/// Tests of <see cref="Consumer.Assignment" />
/// </summary>
[Theory, MemberData(nameof(KafkaParameters))]
public void Consumer_Assignment(string bootstrapServers)
{
LogToFile("start Consumer_Assignment");
int N = 2;
var firstProduced = Util.ProduceNullStringMessages(bootstrapServers, singlePartitionTopic, 1, N);
var consumerConfig = new ConsumerConfig
{
GroupId = Guid.NewGuid().ToString(),
BootstrapServers = bootstrapServers,
SessionTimeoutMs = 6000,
EnableAutoCommit = false
};
// Test in which both receive and revoke events are specified.
using (var consumer =
new ConsumerBuilder<byte[], byte[]>(consumerConfig)
.SetPartitionsAssignedHandler((c, partitions) =>
{
Assert.Single(partitions);
Assert.Equal(firstProduced.TopicPartition, partitions[0]);
Assert.Empty(c.Assignment);
return partitions.Select(p => new TopicPartitionOffset(p, firstProduced.Offset));
})
.SetPartitionsRevokedHandler((c, partitions) =>
{
Assert.Single(c.Assignment);
})
.Build())
{
Assert.Empty(consumer.Assignment);
consumer.Subscribe(singlePartitionTopic);
var r = consumer.Consume(TimeSpan.FromSeconds(10));
consumer.Close();
}
// test in which only the revoked event handler is specified
using (var consumer =
new ConsumerBuilder<byte[], byte[]>(consumerConfig)
.SetPartitionsRevokedHandler((c, partitions) =>
{
Assert.Single(c.Assignment);
})
.Build())
{
consumer.Subscribe(singlePartitionTopic);
// assignment will happen as a side effect of this:
var r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Single(consumer.Assignment);
consumer.Unsubscribe();
// revoke will happen as side effect of this:
r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Empty(consumer.Assignment);
consumer.Close();
}
// test in which only the revoked event handler is specified
// and the returned set unmodified.
using (var consumer =
new ConsumerBuilder<byte[], byte[]>(consumerConfig)
.SetPartitionsRevokedHandler((c, partitions) =>
{
Assert.Single(c.Assignment);
return partitions;
})
.Build())
{
consumer.Subscribe(singlePartitionTopic);
// assignment will happen as a side effect of this:
var r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Single(consumer.Assignment);
consumer.Unsubscribe();
// revoke will happen as side effect of this:
r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Single(consumer.Assignment);
consumer.Close();
}
// test in which only the receive event handler is specified.
using (var consumer =
new ConsumerBuilder<byte[], byte[]>(consumerConfig)
.SetPartitionsAssignedHandler((c, partitions) =>
{
Assert.Empty(c.Assignment);
})
.Build())
{
consumer.Subscribe(singlePartitionTopic);
// assignment will happen as a side effect of this:
var r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Single(consumer.Assignment);
consumer.Unsubscribe();
// revoke will happen as side effect of this:
r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Empty(consumer.Assignment);
consumer.Close();
}
// test in which only the receive event handler is specified
// and assignment set is modified.
using (var consumer =
new ConsumerBuilder<byte[], byte[]>(consumerConfig)
.SetPartitionsAssignedHandler((c, partitions) =>
{
Assert.Empty(c.Assignment);
Assert.Single(partitions);
return new List<TopicPartitionOffset>();
})
.Build())
{
consumer.Subscribe(singlePartitionTopic);
// assignment will happen as a side effect of this:
var r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Empty(consumer.Assignment);
consumer.Unsubscribe();
// revoke will happen as side effect of this:
r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Empty(consumer.Assignment);
consumer.Close();
}
// test in which neither the receive or revoke handler is specified.
using (var consumer = new ConsumerBuilder<byte[], byte[]>(consumerConfig).Build())
{
consumer.Subscribe(singlePartitionTopic);
// assignment will happen as a side effect of this:
var r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Single(consumer.Assignment);
consumer.Unsubscribe();
// revoke will happen as side effect of this:
r = consumer.Consume(TimeSpan.FromSeconds(10));
Assert.Empty(consumer.Assignment);
consumer.Close();
}
Assert.Equal(0, Library.HandleCount);
LogToFile("end Consumer_Assignment");
}
}
}