forked from mostafa/xk6-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kafka_helpers_test.go
148 lines (127 loc) · 3.84 KB
/
kafka_helpers_test.go
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
package kafka
import (
"context"
"testing"
"github.com/grafana/sobek"
kafkago "github.com/segmentio/kafka-go"
"github.com/stretchr/testify/require"
"go.k6.io/k6/js/common"
"go.k6.io/k6/js/modulestest"
"go.k6.io/k6/lib"
"go.k6.io/k6/metrics"
"gopkg.in/guregu/null.v3"
)
const (
GoErrorPrefix = "GoError: "
)
// struct to keep all the things test need in one place.
type kafkaTest struct {
rt *sobek.Runtime
module *Module
vu *modulestest.VU
samples chan metrics.SampleContainer
cancelContext context.CancelFunc
}
// getTestModuleInstance returns a new instance of the Kafka module for testing.
// nolint: golint,revive
func getTestModuleInstance(tb testing.TB) *kafkaTest {
tb.Helper()
runtime := sobek.New()
runtime.SetFieldNameMapper(common.FieldNameMapper{})
ctx, cancel := context.WithCancel(context.Background())
tb.Cleanup(cancel)
root := New()
registry := metrics.NewRegistry()
mockVU := &modulestest.VU{
RuntimeField: runtime,
InitEnvField: &common.InitEnvironment{
TestPreInitState: &lib.TestPreInitState{
Registry: registry,
},
},
CtxField: ctx,
}
moduleInstance, ok := root.NewModuleInstance(mockVU).(*Module)
require.True(tb, ok)
require.NoError(tb, runtime.Set("kafka", moduleInstance.Exports().Default))
return &kafkaTest{
rt: runtime,
module: moduleInstance,
vu: mockVU,
cancelContext: cancel,
}
}
// moveToVUCode moves to the VU code from the init code (to test certain functions).
func (k *kafkaTest) moveToVUCode() error {
samples := make(chan metrics.SampleContainer, 1000)
// Save it, so we can reuse it in other tests
k.samples = samples
registry := metrics.NewRegistry()
state := &lib.State{
Options: lib.Options{
UserAgent: null.StringFrom("TestUserAgent"),
Paused: null.BoolFrom(false),
},
BufferPool: lib.NewBufferPool(),
Samples: k.samples,
Tags: lib.NewVUStateTags(registry.RootTagSet()),
BuiltinMetrics: metrics.RegisterBuiltinMetrics(registry),
}
k.vu.StateField = state
k.vu.InitEnvField = nil
return nil
}
// getCounterMetricsValues returns the samples of the collected metrics in the VU.
func (k *kafkaTest) getCounterMetricsValues() map[string]float64 {
metricsValues := make(map[string]float64)
for _, sampleContainer := range metrics.GetBufferedSamples(k.samples) {
for _, sample := range sampleContainer.GetSamples() {
if sample.Metric.Type == metrics.Counter {
metricsValues[sample.Metric.Name] = sample.Value
}
}
}
return metricsValues
}
// newWriter creates a Kafka writer for the reader tests.
func (k *kafkaTest) newWriter(topicName string) *kafkago.Writer {
// Create a writer to produce messages.
return k.module.Kafka.writer(&WriterConfig{
Brokers: []string{"localhost:9092"},
Topic: topicName,
})
}
// newReader creates a Kafka reader for the reader tests.
func (k *kafkaTest) newReader(topicName string) *kafkago.Reader {
// Create a reader to consume messages.
return k.module.Kafka.reader(&ReaderConfig{
Brokers: []string{"localhost:9092"},
Topic: topicName,
})
}
// createTopic creates a topic.
func (k *kafkaTest) createTopic(topicName string) {
// Create a connection to Kafka.
connection := k.module.Kafka.getKafkaControllerConnection(&ConnectionConfig{
Address: "localhost:9092",
})
defer connection.Close()
// Create a topic.
k.module.Kafka.createTopic(connection, &kafkago.TopicConfig{Topic: topicName})
}
// topicExists checks if a topic exists.
func (k *kafkaTest) topicExists(topicName string) bool {
// Create a connection to Kafka.
connection := k.module.Kafka.getKafkaControllerConnection(&ConnectionConfig{
Address: "localhost:9092",
})
defer connection.Close()
// Create a topic.
topics := k.module.Kafka.listTopics(connection)
for _, topic := range topics {
if topic == topicName {
return true
}
}
return false
}