forked from grafana-tools/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest-dashboard_integration_test.go
118 lines (91 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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)
}
board.ID = 1234
board.Title = "barfoo"
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)
}
}
}
func Test_Dashboard_CRUD_By_UID(t *testing.T) {
var (
err error
boardResult sdk.Board
)
shouldSkip(t)
ctx := context.Background()
client := getClient(t)
var board sdk.Board
raw, _ := ioutil.ReadFile("testdata/empty-dashboard-with-uid-2.6.json")
if err = json.Unmarshal(raw, &board); err != nil {
t.Fatal(err)
}
board.ID = 4321
board.Title = "foobar"
//Cleanup if Already exists
if _, err = client.DeleteDashboardByUID(ctx, board.UID); 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 boardResult, _, err = client.GetDashboardByUID(ctx, board.UID); err != nil {
t.Fatal(err)
}
if boardResult.UID != board.UID {
t.Fatal("Created board could not be found")
}
//Remove the dashboard that was created.
if _, err = client.DeleteDashboardByUID(ctx, board.UID); err != nil {
t.Fatal(err)
}
//Verify that it has been deleted
if boardResult, _, err = client.GetDashboardByUID(ctx, board.UID); err == nil {
t.Fatal("Failed to delete dashboard, it can still be retrieved")
}
}