File: series_test.go

package info (click to toggle)
golang-github-zorkian-go-datadog-api 2.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,612 kB
  • sloc: makefile: 28; sh: 13
file content (78 lines) | stat: -rw-r--r-- 1,478 bytes parent folder | download
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
package datadog

import (
	"bytes"
	"encoding/json"
	"io/ioutil"
	"net/http"
	"net/http/httptest"
	"strings"
	"testing"

	"github.com/stretchr/testify/assert"
)

func removeWhitespace(s string) string {
	s = strings.Replace(s, " ", "", -1)
	s = strings.Replace(s, "\n", "", -1)
	return s
}

// TestPostMetrics tests submitting series sends correct
// payloads to the Datadog API for the /v1/series endpoint
func TestPostMetrics(t *testing.T) {
	reqs := make(chan string, 1)

	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		buf := new(bytes.Buffer)
		buf.ReadFrom(r.Body)
		reqs <- buf.String()
		w.WriteHeader(200)
		w.Write([]byte("{\"status\": \"ok\"}"))
		return
	}))
	defer ts.Close()

	client := Client{
		baseUrl:    ts.URL,
		HttpClient: http.DefaultClient,
	}

	tcs := []string{
		"./tests/fixtures/series/post_series_mixed.json",
		"./tests/fixtures/series/post_series_valid.json",
	}

	for _, tc := range tcs {
		b, err := ioutil.ReadFile(tc)
		if err != nil {
			t.Fatal(err)
		}

		var post reqPostSeries
		json.Unmarshal(b, &post)
		if err != nil {
			t.Fatal(err)
		}

		err = client.PostMetrics(post.Series)
		if err != nil {
			t.Fatal(err)
		}

		assert.Equal(t, nil, err)

		payload := <-reqs
		assert.Equal(t, removeWhitespace(string(b)), payload)
	}

	// Empty slice metrics test case

	err := client.PostMetrics([]Metric{})
	if err != nil {
		t.Fatal(err)
	}

	payload := <-reqs
	assert.Equal(t, "{}", payload)
}