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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
//go:build functional
package sarama
import (
"context"
"testing"
"github.com/davecgh/go-spew/spew"
)
func TestFuncAdminQuotas(t *testing.T) {
checkKafkaVersion(t, "2.6.0.0")
setupFunctionalTest(t)
defer teardownFunctionalTest(t)
kafkaVersion, err := ParseKafkaVersion(FunctionalTestEnv.KafkaVersion)
if err != nil {
t.Fatal(err)
}
config := NewFunctionalTestConfig()
config.Version = kafkaVersion
adminClient, err := NewClusterAdmin(FunctionalTestEnv.KafkaBrokerAddrs, config)
if err != nil {
t.Fatal(err)
}
defer safeClose(t, adminClient)
// Check that we can read the quotas, and that they are empty
quotas, err := adminClient.DescribeClientQuotas(nil, false)
if err != nil {
t.Fatal(err)
}
if len(quotas) != 0 {
t.Fatalf("Expected quotas to be empty at start, found: %v", quotas)
}
// Put a quota on default user
// /config/users/<default>
defaultUser := []QuotaEntityComponent{{
EntityType: QuotaEntityUser,
MatchType: QuotaMatchDefault,
}}
produceOp := ClientQuotasOp{
Key: "producer_byte_rate",
Value: 1024000,
}
if err = adminClient.AlterClientQuotas(defaultUser, produceOp, false); err != nil {
t.Fatal(err)
}
// Check that we now have a quota entry
quotas, err = adminClient.DescribeClientQuotas(nil, false)
if err != nil {
t.Fatal(err)
}
if len(quotas) == 0 {
t.Fatal("Expected not empty quotas")
}
if len(quotas) > 1 {
t.Fatalf("Expected one quota entry, found: %v", quotas)
}
// Put a quota on specific client-id for a specific user
// /config/users/<user>/clients/<client-id>
specificUserClientID := []QuotaEntityComponent{
{
EntityType: QuotaEntityUser,
MatchType: QuotaMatchExact,
Name: "sarama",
},
{
EntityType: QuotaEntityClientID,
MatchType: QuotaMatchExact,
Name: "sarama-consumer",
},
}
consumeOp := ClientQuotasOp{
Key: "consumer_byte_rate",
Value: 2048000,
}
if err = adminClient.AlterClientQuotas(specificUserClientID, consumeOp, false); err != nil {
t.Fatal(err)
}
// Check that we can query a specific quota entry
userFilter := QuotaFilterComponent{
EntityType: QuotaEntityUser,
MatchType: QuotaMatchExact,
Match: "sarama",
}
clientFilter := QuotaFilterComponent{
EntityType: QuotaEntityClientID,
MatchType: QuotaMatchExact,
Match: "sarama-consumer",
}
quotas, err = adminClient.DescribeClientQuotas([]QuotaFilterComponent{userFilter, clientFilter}, true)
if err != nil {
t.Fatal(err)
}
if len(quotas) == 0 {
t.Fatal("Expected not empty quotas")
}
if len(quotas) > 1 {
t.Fatalf("Expected one quota entry, found: %v", quotas)
}
if quotas[0].Values[consumeOp.Key] != consumeOp.Value {
t.Fatalf("Expected specific quota value to be %f, found: %v", consumeOp.Value, quotas[0].Values[consumeOp.Key])
}
// Remove quota entries
deleteProduceOp := ClientQuotasOp{
Key: produceOp.Key,
Remove: true,
}
if err = adminClient.AlterClientQuotas(defaultUser, deleteProduceOp, false); err != nil {
t.Fatal(err)
}
deleteConsumeOp := ClientQuotasOp{
Key: consumeOp.Key,
Remove: true,
}
if err = adminClient.AlterClientQuotas(specificUserClientID, deleteConsumeOp, false); err != nil {
t.Fatal(err)
}
}
func TestFuncAdminDescribeGroups(t *testing.T) {
checkKafkaVersion(t, "2.3.0.0")
setupFunctionalTest(t)
defer teardownFunctionalTest(t)
group1 := testFuncConsumerGroupID(t)
group2 := testFuncConsumerGroupID(t)
kafkaVersion, err := ParseKafkaVersion(FunctionalTestEnv.KafkaVersion)
if err != nil {
t.Fatal(err)
}
config := NewFunctionalTestConfig()
config.Version = kafkaVersion
adminClient, err := NewClusterAdmin(FunctionalTestEnv.KafkaBrokerAddrs, config)
if err != nil {
t.Fatal(err)
}
defer safeClose(t, adminClient)
config1 := NewFunctionalTestConfig()
config1.ClientID = "M1"
config1.Version = V2_3_0_0
config1.Consumer.Offsets.Initial = OffsetNewest
m1 := runTestFuncConsumerGroupMemberWithConfig(t, config1, group1, 100, nil, "test.4")
defer m1.Close()
config2 := NewFunctionalTestConfig()
config2.ClientID = "M2"
config2.Version = V2_3_0_0
config2.Consumer.Offsets.Initial = OffsetNewest
config2.Consumer.Group.InstanceId = "Instance2"
m2 := runTestFuncConsumerGroupMemberWithConfig(t, config2, group2, 100, nil, "test.4")
defer m2.Close()
m1.WaitForState(2)
m2.WaitForState(2)
res, err := adminClient.DescribeConsumerGroups([]string{group1, group2})
if err != nil {
t.Fatal(err)
}
if len(res) != 2 {
t.Errorf("group description should be 2, got %v\n", len(res))
}
if len(res[0].Members) != 1 {
t.Errorf("should have 1 members in group , got %v\n", len(res[0].Members))
}
if len(res[1].Members) != 1 {
t.Errorf("should have 1 members in group , got %v\n", len(res[1].Members))
}
m1.AssertCleanShutdown()
m2.AssertCleanShutdown()
}
func TestFuncAdminListConsumerGroupOffsets(t *testing.T) {
checkKafkaVersion(t, "0.8.2.0")
setupFunctionalTest(t)
defer teardownFunctionalTest(t)
config := NewFunctionalTestConfig()
config.ClientID = t.Name()
client, err := NewClient(FunctionalTestEnv.KafkaBrokerAddrs, config)
defer safeClose(t, client)
if err != nil {
t.Fatal(err)
}
group := testFuncConsumerGroupID(t)
consumerGroup, err := NewConsumerGroupFromClient(group, client)
if err != nil {
t.Fatal(err)
}
defer safeClose(t, consumerGroup)
offsetMgr, _ := NewOffsetManagerFromClient(group, client)
defer safeClose(t, offsetMgr)
markOffset(t, offsetMgr, "test.4", 0, 2)
offsetMgr.Commit()
coordinator, err := client.Coordinator(group)
if err != nil {
t.Fatal(err)
}
t.Logf("coordinator broker %d", coordinator.id)
adminClient, err := NewClusterAdminFromClient(client)
if err != nil {
t.Fatal(err)
}
{
resp, err := adminClient.ListConsumerGroupOffsets(group, map[string][]int32{"test.4": {0, 1, 2, 3}})
if err != nil {
t.Fatal(err)
}
t.Log(spew.Sdump(resp))
}
brokerID := coordinator.id
if err := stopDockerTestBroker(context.Background(), brokerID); err != nil {
t.Fatal(err)
}
t.Cleanup(
func() {
if err := startDockerTestBroker(context.Background(), brokerID); err != nil {
t.Fatal(err)
}
},
)
{
resp, err := adminClient.ListConsumerGroupOffsets(group, map[string][]int32{"test.4": {0, 1, 2, 3}})
if err != nil {
t.Fatal(err)
}
t.Log(spew.Sdump(resp))
}
coordinator, err = adminClient.Coordinator(group)
if err != nil {
t.Fatal(err)
}
t.Logf("coordinator broker %d", coordinator.id)
}
|