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
|
package kafka
import (
"bufio"
"bytes"
"context"
"errors"
"net"
"reflect"
"strconv"
"testing"
)
func TestConnCreateTopics(t *testing.T) {
topic1 := makeTopic()
topic2 := makeTopic()
conn, err := DialContext(context.Background(), "tcp", "localhost:9092")
if err != nil {
t.Fatal(err)
}
defer func() {
err := conn.Close()
if err != nil {
t.Fatalf("failed to close connection: %v", err)
}
}()
controller, _ := conn.Controller()
controllerConn, err := Dial("tcp", net.JoinHostPort(controller.Host, strconv.Itoa(controller.Port)))
if err != nil {
t.Fatal(err)
}
defer controllerConn.Close()
err = controllerConn.CreateTopics(TopicConfig{
Topic: topic1,
NumPartitions: 1,
ReplicationFactor: 1,
})
if err != nil {
t.Fatalf("unexpected error creating topic: %s", err.Error())
}
err = controllerConn.CreateTopics(TopicConfig{
Topic: topic1,
NumPartitions: 1,
ReplicationFactor: 1,
})
// Duplicate topic should not return an error
if err != nil {
t.Fatalf("unexpected error creating duplicate topic topic: %v", err)
}
err = controllerConn.CreateTopics(
TopicConfig{
Topic: topic1,
NumPartitions: 1,
ReplicationFactor: 1,
},
TopicConfig{
Topic: topic2,
NumPartitions: 1,
ReplicationFactor: 1,
},
TopicConfig{
Topic: topic2,
NumPartitions: 1,
ReplicationFactor: 1,
},
)
if err == nil {
t.Fatal("CreateTopics should have returned an error for invalid requests")
}
if !errors.Is(err, InvalidRequest) {
t.Fatalf("expected invalid request: %v", err)
}
deleteTopic(t, topic1)
}
func TestClientCreateTopics(t *testing.T) {
const (
topic1 = "client-topic-1"
topic2 = "client-topic-2"
topic3 = "client-topic-3"
)
client, shutdown := newLocalClient()
defer shutdown()
config := []ConfigEntry{{
ConfigName: "retention.ms",
ConfigValue: "3600000",
}}
res, err := client.CreateTopics(context.Background(), &CreateTopicsRequest{
Topics: []TopicConfig{
{
Topic: topic1,
NumPartitions: -1,
ReplicationFactor: -1,
ReplicaAssignments: []ReplicaAssignment{
{
Partition: 0,
Replicas: []int{1},
},
{
Partition: 1,
Replicas: []int{1},
},
{
Partition: 2,
Replicas: []int{1},
},
},
ConfigEntries: config,
},
{
Topic: topic2,
NumPartitions: 2,
ReplicationFactor: 1,
ConfigEntries: config,
},
{
Topic: topic3,
NumPartitions: 1,
ReplicationFactor: 1,
ConfigEntries: config,
},
},
})
if err != nil {
t.Fatal(err)
}
defer deleteTopic(t, topic1, topic2, topic3)
expectTopics := map[string]struct{}{
topic1: {},
topic2: {},
topic3: {},
}
for topic, error := range res.Errors {
delete(expectTopics, topic)
if error != nil {
t.Errorf("%s => %s", topic, error)
}
}
for topic := range expectTopics {
t.Errorf("topic missing in response: %s", topic)
}
}
func TestCreateTopicsResponse(t *testing.T) {
supportedVersions := []apiVersion{v0, v1, v2}
for _, v := range supportedVersions {
item := createTopicsResponse{
v: v,
TopicErrors: []createTopicsResponseTopicError{
{
v: v,
Topic: "topic",
ErrorCode: 2,
},
},
}
b := bytes.NewBuffer(nil)
w := &writeBuffer{w: b}
item.writeTo(w)
found := createTopicsResponse{v: v}
remain, err := (&found).readFrom(bufio.NewReader(b), b.Len())
if err != nil {
t.Error(err)
t.FailNow()
}
if remain != 0 {
t.Errorf("expected 0 remain, got %v", remain)
t.FailNow()
}
if !reflect.DeepEqual(item, found) {
t.Error("expected item and found to be the same")
t.FailNow()
}
}
}
|