forked from grafana-tools/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest-dashboard_integration_test.go
61 lines (48 loc) · 1.12 KB
/
rest-dashboard_integration_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
package sdk_test
import (
"context"
"encoding/json"
"io/ioutil"
"testing"
"github.com/grafana-tools/sdk"
)
func Test_Dashboard_CRUD(t *testing.T) {
var (
boardLinks []sdk.FoundBoard
err error
)
shouldSkip(t)
ctx := context.Background()
client := getClient(t)
var board sdk.Board
raw, _ := ioutil.ReadFile("testdata/new-empty-dashboard-2.6.json")
if err = json.Unmarshal(raw, &board); err != nil {
t.Fatal(err)
}
if _, err = client.DeleteDashboard(ctx, board.UpdateSlug()); err != nil {
t.Fatal(err)
}
params := sdk.SetDashboardParams{
FolderID: sdk.DefaultFolderId,
Overwrite: false,
}
if _, err = client.SetDashboard(ctx, board, params); err != nil {
t.Fatal(err)
}
if boardLinks, err = client.Search(ctx, sdk.SearchType(sdk.SearchTypeDashboard)); err != nil {
t.Fatal(err)
}
if len(boardLinks) == 0 {
t.Fatal("search query returned empty dashboard list")
}
for _, link := range boardLinks {
_, _, err = client.GetDashboardByUID(ctx, link.UID)
if err != nil {
t.Fatal(err)
}
_, _, err = client.GetDashboardBySlug(ctx, link.URI)
if err != nil {
t.Fatal(err)
}
}
}