|
1 | 1 | package main
|
2 | 2 |
|
3 | 3 | import (
|
4 |
| - "io/ioutil" |
| 4 | + "math/rand" |
5 | 5 | "os"
|
6 | 6 |
|
7 | 7 | . "github.com/onsi/ginkgo"
|
@@ -215,54 +215,86 @@ var _ = Describe("Utility Functions", func() {
|
215 | 215 | })
|
216 | 216 | })
|
217 | 217 |
|
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", |
223 | 261 | }
|
224 |
| - return b |
| 262 | + |
| 263 | + return |
225 | 264 | }
|
226 | 265 |
|
227 |
| -/* |
228 | 266 | var _ = Describe("Exporter", func() {
|
229 |
| - const timeout = 5 * time.Second |
230 | 267 |
|
231 | 268 | var (
|
232 |
| - s *ghttp.Server |
233 | 269 | e *Exporter
|
234 |
| -
|
235 |
| - //body []byte |
| 270 | + f *mockFetcher |
236 | 271 | )
|
237 | 272 |
|
238 | 273 | 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) |
252 | 276 | })
|
253 | 277 |
|
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) { |
259 | 279 | ch := make(chan *prometheus.Desc)
|
260 | 280 |
|
261 | 281 | 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()) |
264 | 283 |
|
265 | 284 | close(done)
|
266 | 285 | })
|
| 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) |
267 | 300 | })
|
268 |
| -*/ |
|
0 commit comments