|
1 | 1 | package main
|
2 | 2 |
|
3 | 3 | import (
|
| 4 | + "io/ioutil" |
4 | 5 | "os"
|
| 6 | + "time" |
5 | 7 |
|
6 | 8 | . "github.com/onsi/ginkgo"
|
7 | 9 | . "github.com/onsi/gomega"
|
| 10 | + "github.com/onsi/gomega/ghttp" |
| 11 | + "github.com/prometheus/client_golang/prometheus" |
8 | 12 | )
|
9 | 13 |
|
10 |
| -var _ = Describe("Main", func() { |
| 14 | +var _ = Describe("Utility Functions", func() { |
| 15 | + |
11 | 16 | Describe("Loading credentials", func() {
|
| 17 | + |
12 | 18 | Context("loading from env vars", func() {
|
13 | 19 |
|
14 | 20 | AfterEach(func() {
|
@@ -149,35 +155,113 @@ var _ = Describe("Main", func() {
|
149 | 155 | })
|
150 | 156 | })
|
151 | 157 |
|
152 |
| - Describe("Utility functions", func() { |
153 |
| - Context("parsing strings", func() { |
| 158 | + Context("parsing strings", func() { |
154 | 159 |
|
155 |
| - It("should parse a simple float", func() { |
156 |
| - s := "0.5" |
| 160 | + It("should parse a simple float", func() { |
| 161 | + s := "0.5" |
157 | 162 |
|
158 |
| - v, err := parseString(s) |
| 163 | + v, err := parseString(s) |
159 | 164 |
|
160 |
| - Expect(err).ShouldNot(HaveOccurred()) |
161 |
| - Expect(v).Should(Equal(0.5)) |
162 |
| - }) |
| 165 | + Expect(err).ShouldNot(HaveOccurred()) |
| 166 | + Expect(v).Should(Equal(0.5)) |
| 167 | + }) |
163 | 168 |
|
164 |
| - It("should parse byte represented as string", func() { |
165 |
| - s := "123.19M" |
| 169 | + It("should parse byte represented as string", func() { |
| 170 | + s := "123.19M" |
166 | 171 |
|
167 |
| - v, err := parseString(s) |
| 172 | + v, err := parseString(s) |
168 | 173 |
|
169 |
| - Expect(err).ShouldNot(HaveOccurred()) |
170 |
| - Expect(v).Should(Equal(1.29174077e+08)) |
171 |
| - }) |
| 174 | + Expect(err).ShouldNot(HaveOccurred()) |
| 175 | + Expect(v).Should(Equal(1.29174077e+08)) |
| 176 | + }) |
172 | 177 |
|
173 |
| - It("should fail on invalid string", func() { |
174 |
| - s := "invalid string" |
| 178 | + It("should fail on invalid string", func() { |
| 179 | + s := "invalid string" |
175 | 180 |
|
176 |
| - v, err := parseString(s) |
| 181 | + v, err := parseString(s) |
177 | 182 |
|
178 |
| - Expect(err).Should(HaveOccurred()) |
179 |
| - Expect(v).Should(Equal(float64(0))) |
180 |
| - }) |
| 183 | + Expect(err).Should(HaveOccurred()) |
| 184 | + Expect(v).Should(Equal(float64(0))) |
181 | 185 | })
|
182 | 186 | })
|
| 187 | + |
| 188 | + Context("creating a new metric", func() { |
| 189 | + It("should return a valid metric", func() { |
| 190 | + m := metric{ |
| 191 | + kind: prometheus.GaugeValue, |
| 192 | + name: "emq_node_memory_current", |
| 193 | + help: "Current memory usage", |
| 194 | + value: 1.5533, |
| 195 | + } |
| 196 | + |
| 197 | + pm, err := newMetric(m) |
| 198 | + |
| 199 | + Expect(err).ToNot(HaveOccurred()) |
| 200 | + Expect(pm.Desc().String()).To(Equal("Desc{fqName: \"emq_node_memory_current\", help: \"Current memory usage\", constLabels: {}, variableLabels: []}")) |
| 201 | + }) |
| 202 | + |
| 203 | + It("should fail when the fqName isn't valid", func() { |
| 204 | + m := metric{ |
| 205 | + kind: prometheus.GaugeValue, |
| 206 | + name: "/*3433##", |
| 207 | + help: "Can't touch this", |
| 208 | + value: 0.003, |
| 209 | + } |
| 210 | + |
| 211 | + pm, err := newMetric(m) |
| 212 | + |
| 213 | + Expect(err).Should(HaveOccurred()) |
| 214 | + Expect(err.Error()).To(Equal("\"/*3433##\" is not a valid metric name")) |
| 215 | + Expect(pm).To(BeNil()) |
| 216 | + }) |
| 217 | + }) |
| 218 | +}) |
| 219 | + |
| 220 | +//helper function to load json data from the testdata folder |
| 221 | +func loadData(path string) []byte { |
| 222 | + b, err := ioutil.ReadFile("testdata/" + path) |
| 223 | + if err != nil { |
| 224 | + panic(err) |
| 225 | + } |
| 226 | + return b |
| 227 | +} |
| 228 | + |
| 229 | +var _ = Describe("Exporter", func() { |
| 230 | + const timeout = 5 * time.Second |
| 231 | + |
| 232 | + var ( |
| 233 | + s *ghttp.Server |
| 234 | + e *Exporter |
| 235 | + |
| 236 | + //body []byte |
| 237 | + ) |
| 238 | + |
| 239 | + BeforeEach(func() { |
| 240 | + s = ghttp.NewServer() |
| 241 | + |
| 242 | + c := &config{ |
| 243 | + host: s.URL(), |
| 244 | + username: "admin", |
| 245 | + password: "public", |
| 246 | + node: "emq@" + s.URL(), |
| 247 | + apiVersion: "v3", |
| 248 | + } |
| 249 | + |
| 250 | + e = NewExporter(c, timeout) |
| 251 | + |
| 252 | + }) |
| 253 | + |
| 254 | + AfterEach(func() { |
| 255 | + s.Close() |
| 256 | + }) |
| 257 | + |
| 258 | + It("should send desc to the channel", func(done Done) { |
| 259 | + ch := make(chan *prometheus.Desc) |
| 260 | + |
| 261 | + go e.Describe(ch) |
| 262 | + Expect(<-ch).To(ContainSubstring("emq_up")) |
| 263 | + Expect(<-ch).To(ContainSubstring("emq_exporter_total_scrapes")) |
| 264 | + |
| 265 | + close(done) |
| 266 | + }) |
183 | 267 | })
|
0 commit comments