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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
package integration
import (
"testing"
datadog "github.com/zorkian/go-datadog-api"
)
func TestDashboardListItemsV2GetAndUpdate(t *testing.T) {
list := getTestDashboardList()
list, err := client.CreateDashboardList(list)
if err != nil {
t.Fatalf("Creating a dashboard list failed when it shouldn't: %s", err)
}
defer cleanUpDashboardList(t, *list.Id)
if *list.DashboardCount != 0 {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
// Test update with timeboard in list
timeboard := createTestDashboard(t)
defer cleanUpDashboard(t, *timeboard.Id)
timeboardItems := []datadog.DashboardListItemV2{
getTestDashboardListItemV2Timeboard(*timeboard.NewId),
}
actualItems, err := client.UpdateDashboardListItemsV2(*list.Id, timeboardItems)
if err != nil {
t.Fatalf("Updating dashboard list items failed when it shouldn't: %s", err)
}
if len(actualItems) != len(timeboardItems) {
t.Fatalf("Number of updated dashboards does not match: %d != %d", len(actualItems), len(timeboardItems))
}
assertDashboardListItemV2Equals(t, &actualItems[0], &timeboardItems[0])
// Get dashboard list to make sure count is 1
list, err = client.GetDashboardList(*list.Id)
if err != nil {
t.Fatalf("Getting a dashboard list failed when it shouldn't: %s", err)
}
if *list.DashboardCount != len(timeboardItems) {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
// Test update with screenboard in list
screenboard := createTestScreenboard(t)
defer cleanUpScreenboard(t, *screenboard.Id)
screenboardItems := []datadog.DashboardListItemV2{
getTestDashboardListItemV2Screenboard(*screenboard.NewId),
}
actualItems, err = client.UpdateDashboardListItemsV2(*list.Id, screenboardItems)
if err != nil {
t.Fatalf("Updating dashboard list items failed when it shouldn't: %s", err)
}
if len(actualItems) != len(screenboardItems) {
t.Fatalf("Number of updated dashboards does not match: %d != %d", len(actualItems), len(screenboardItems))
}
assertDashboardListItemV2Equals(t, &actualItems[0], &screenboardItems[0])
// Get dashboard list to make sure count is 1
list, err = client.GetDashboardList(*list.Id)
if err != nil {
t.Fatalf("Getting a dashboard list failed when it shouldn't: %s", err)
}
if *list.DashboardCount != len(screenboardItems) {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
}
func TestDashboardListItemsV2AddAndDelete(t *testing.T) {
list := getTestDashboardList()
list, err := client.CreateDashboardList(list)
if err != nil {
t.Fatalf("Creating a dashboard list failed when it shouldn't: %s", err)
}
defer cleanUpDashboardList(t, *list.Id)
// Add timeboard to list
timeboard := createTestDashboard(t)
defer cleanUpDashboard(t, *timeboard.Id)
items := []datadog.DashboardListItemV2{
getTestDashboardListItemV2Timeboard(*timeboard.NewId),
}
addedItems, err := client.AddDashboardListItemsV2(*list.Id, items)
if err != nil {
t.Fatalf("Adding dashboard list items failed when it shouldn't: %s", err)
}
if len(addedItems) != len(items) {
t.Fatalf("Number of updated dashboards does not match: %d != %d", len(addedItems), len(items))
}
assertDashboardListItemV2Equals(t, &addedItems[0], &items[0])
// Get dashboard list to make sure count is 1
list, err = client.GetDashboardList(*list.Id)
if err != nil {
t.Fatalf("Getting a dashboard list failed when it shouldn't: %s", err)
}
if *list.DashboardCount != len(items) {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
// Adding an existing item should be ignored, meaning we should only get
// one item back in the list of added items.
screenboard := createTestScreenboard(t)
defer cleanUpScreenboard(t, *screenboard.Id)
items = append(items, getTestDashboardListItemV2Screenboard(*screenboard.NewId))
addedItems, err = client.AddDashboardListItemsV2(*list.Id, items)
if err != nil {
t.Fatalf("Adding dashboard list items failed when it shouldn't: %s", err)
}
if len(addedItems) != 1 {
t.Fatalf("Number of updated dashboards does not match: %d != %d", len(addedItems), 1)
}
assertDashboardListItemV2Equals(t, &addedItems[0], &items[1])
// Get dashboard list to make sure count is now 2
list, err = client.GetDashboardList(*list.Id)
if err != nil {
t.Fatalf("Getting a dashboard list failed when it shouldn't: %s", err)
}
if *list.DashboardCount != len(items) {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
// Delete everything in the dashboard list and check length of deleted items is 2
deletedItems, err := client.DeleteDashboardListItemsV2(*list.Id, items)
if err != nil {
t.Fatalf("Deleting dashboard list items failed when it shouldn't: %s", err)
}
if len(deletedItems) != len(items) {
t.Fatalf("Number of deleted dashboards does not match: %d != %d", len(deletedItems), len(items))
}
// Check that the dashboard list is empty again
list, err = client.GetDashboardList(*list.Id)
if err != nil {
t.Fatalf("Getting a dashboard list failed when it shouldn't: %s", err)
}
if *list.DashboardCount != 0 {
t.Fatalf("Number of dashboards in dashboard list does not match: %d != %d", *list.DashboardCount, 0)
}
}
func getTestDashboardListItemV2Timeboard(id string) datadog.DashboardListItemV2 {
return datadog.DashboardListItemV2{
ID: datadog.String(id),
Type: datadog.String(datadog.DashboardListItemCustomTimeboard),
}
}
func assertDashboardListItemV2Equals(t *testing.T, actual, expected *datadog.DashboardListItemV2) {
if *actual.ID != *expected.ID {
t.Errorf("Dashboard list item id does not match: %s != %s", *actual.ID, *expected.ID)
}
if *actual.Type != *expected.Type {
t.Errorf("Dashboard list item type does not match: %s != %s", *actual.Type, *expected.Type)
}
}
func getTestDashboardListItemV2Screenboard(id string) datadog.DashboardListItemV2 {
return datadog.DashboardListItemV2{
ID: datadog.String(id),
Type: datadog.String(datadog.DashboardListItemCustomScreenboard),
}
}
|