Skip to content

Commit 2bf3eb7

Browse files
author
Hagai Barel
committed
Add channel tests
1 parent 55547b8 commit 2bf3eb7

File tree

3 files changed

+73
-44
lines changed

3 files changed

+73
-44
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ build: fmt vet test ## Build binaries
2626

2727
test: fmt vet ## Run tests using go test
2828
@echo ">> running tests"
29-
$(GO) test ./... -coverprofile cover.out
29+
$(GO) test ./... -cover -race
3030

3131
docker: build ## Build docker image
3232
@echo ">> building docker image"

emq_exporter.go

+7-10
Original file line numberDiff line numberDiff line change
@@ -139,29 +139,26 @@ func (e *Exporter) scrape() error {
139139

140140
//add adds a metric to the exporter.metrics array
141141
func (e *Exporter) add(fqName, help string, value float64) {
142+
e.mu.Lock()
143+
defer e.mu.Unlock()
144+
142145
//check if the metric with a given fqName exists
143146
for _, v := range e.metrics {
144147
if strings.Contains(newDesc(*v).String(), fqName) {
145-
//update the metric value
146-
e.mu.Lock()
147148
v.value = value
148-
e.mu.Unlock()
149149
return
150150
}
151151
}
152152

153-
//create a new metric
154-
m := &metric{
153+
//append it to the e.metrics array
154+
e.metrics = append(e.metrics, &metric{
155155
kind: prometheus.GaugeValue,
156156
name: fqName,
157157
help: help,
158158
value: value,
159-
}
159+
})
160160

161-
//append it to the e.metrics array
162-
e.mu.Lock()
163-
e.metrics = append(e.metrics, m)
164-
e.mu.Unlock()
161+
return
165162
}
166163

167164
func main() {

emq_exporter_test.go

+65-33
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"io/ioutil"
4+
"math/rand"
55
"os"
66

77
. "github.com/onsi/ginkgo"
@@ -215,54 +215,86 @@ var _ = Describe("Utility Functions", func() {
215215
})
216216
})
217217

218-
//helper function to load json data from the testdata folder
219-
func loadData(path string) []byte {
220-
b, err := ioutil.ReadFile("testdata/" + path)
221-
if err != nil {
222-
panic(err)
218+
//helper function to create random floats
219+
func randFloat() float64 {
220+
return rand.Float64() * 1000
221+
}
222+
223+
//mock fetcher for testing
224+
type mockFetcher struct{}
225+
226+
func (m *mockFetcher) Fetch() (data map[string]interface{}, err error) {
227+
data = map[string]interface{}{
228+
"nodes_metrics_messages_qos1_sent": randFloat(),
229+
"nodes_metrics_packets_pubrel_missed": randFloat(),
230+
"nodes_metrics_packets_puback_sent": randFloat(),
231+
"nodes_metrics_messages_received": randFloat(),
232+
"nodes_metrics_packets_unsuback": randFloat(),
233+
"nodes_metrics_packets_pubrel_sent": randFloat(),
234+
"nodes_metrics_packets_subscribe": randFloat(),
235+
"nodes_metrics_packets_connack": randFloat(),
236+
"nodes_metrics_packets_disconnect_sent": randFloat(),
237+
"nodes_metrics_packets_pubcomp_sent": randFloat(),
238+
"nodes_metrics_packets_unsubscribe": randFloat(),
239+
"nodes_metrics_packets_auth": randFloat(),
240+
"nodes_metrics_packets_suback": randFloat(),
241+
"nodes_metrics_packets_pubrec_received": randFloat(),
242+
"nodes_metrics_messages_expired": randFloat(),
243+
"nodes_metrics_messages_qos2_received": randFloat(),
244+
"nodes_metrics_packets_sent": randFloat(),
245+
"nodes_metrics_packets_pubrel_received": randFloat(),
246+
"nodes_metrics_messages_qos0_received": randFloat(),
247+
"nodes_connections": randFloat(),
248+
"nodes_load1": "1.26",
249+
"nodes_load15": "1.08",
250+
"nodes_load5": "1.19",
251+
"nodes_max_fds": 1048576,
252+
"nodes_memory_total": 155385856,
253+
"nodes_memory_used": 114687840,
254+
"nodes_name": "[email protected]",
255+
"nodes_node_status": "Running",
256+
"nodes_otp_release": "R21/10.2.1",
257+
"nodes_process_available": 2097152,
258+
"nodes_process_used": 388,
259+
"nodes_uptime": "3 hours, 46 minutes, 36 seconds",
260+
"nodes_version": "v3.0.1",
223261
}
224-
return b
262+
263+
return
225264
}
226265

227-
/*
228266
var _ = Describe("Exporter", func() {
229-
const timeout = 5 * time.Second
230267

231268
var (
232-
s *ghttp.Server
233269
e *Exporter
234-
235-
//body []byte
270+
f *mockFetcher
236271
)
237272

238273
BeforeEach(func() {
239-
s = ghttp.NewServer()
240-
241-
c := &config{
242-
host: s.URL(),
243-
username: "admin",
244-
password: "public",
245-
node: "emq@" + s.URL(),
246-
apiVersion: "v3",
247-
targets: targetsV3,
248-
}
249-
250-
e = NewExporter(c, timeout)
251-
274+
f = &mockFetcher{}
275+
e = NewExporter(f)
252276
})
253277

254-
AfterEach(func() {
255-
s.Close()
256-
})
257-
258-
It("should send desc to the channel", func(done Done) {
278+
It("should send description to the channel", func(done Done) {
259279
ch := make(chan *prometheus.Desc)
260280

261281
go e.Describe(ch)
262-
Expect(<-ch).To(ContainSubstring("emq_up"))
263-
Expect(<-ch).To(ContainSubstring("emq_exporter_total_scrapes"))
282+
Eventually(ch).Should(Receive())
264283

265284
close(done)
266285
})
286+
287+
It("should send metrics to the channel", func(done Done) {
288+
ch := make(chan prometheus.Metric)
289+
290+
//run multiple Collect() goroutines to make sure:
291+
//1. no data race (go test . -race)
292+
//2. metrics are being updated properly
293+
for i := 0; i < 1000; i++ {
294+
go e.Collect(ch)
295+
Eventually(ch).Should(Receive())
296+
}
297+
298+
close(done)
299+
}, 5)
267300
})
268-
*/

0 commit comments

Comments
 (0)