|
|
|
|
@ -14,54 +14,74 @@ import ( |
|
|
|
|
func TestGetLibraryElement(t *testing.T) { |
|
|
|
|
scenarioWithPanel(t, "When an admin tries to get a library panel that does not exist, it should fail", |
|
|
|
|
func(t *testing.T, sc scenarioContext) { |
|
|
|
|
// by uid
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": "unknown"}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
require.Equal(t, 404, resp.Status()) |
|
|
|
|
|
|
|
|
|
// by name
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":name": "unknown"}) |
|
|
|
|
resp = sc.service.getByNameHandler(sc.reqContext) |
|
|
|
|
require.Equal(t, 404, resp.Status()) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
scenarioWithPanel(t, "When an admin tries to get a library panel that exists, it should succeed and return correct result", |
|
|
|
|
func(t *testing.T, sc scenarioContext) { |
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
var result = validateAndUnMarshalResponse(t, resp) |
|
|
|
|
var expected = libraryElementResult{ |
|
|
|
|
Result: libraryElement{ |
|
|
|
|
ID: 1, |
|
|
|
|
OrgID: 1, |
|
|
|
|
FolderID: 1, |
|
|
|
|
UID: result.Result.UID, |
|
|
|
|
Name: "Text - Library Panel", |
|
|
|
|
Kind: int64(Panel), |
|
|
|
|
Type: "text", |
|
|
|
|
Description: "A description", |
|
|
|
|
Model: map[string]interface{}{ |
|
|
|
|
"datasource": "${DS_GDEV-TESTDATA}", |
|
|
|
|
"description": "A description", |
|
|
|
|
"id": float64(1), |
|
|
|
|
"title": "Text - Library Panel", |
|
|
|
|
"type": "text", |
|
|
|
|
}, |
|
|
|
|
Version: 1, |
|
|
|
|
Meta: LibraryElementDTOMeta{ |
|
|
|
|
FolderName: "ScenarioFolder", |
|
|
|
|
FolderUID: sc.folder.Uid, |
|
|
|
|
ConnectedDashboards: 0, |
|
|
|
|
Created: result.Result.Meta.Created, |
|
|
|
|
Updated: result.Result.Meta.Updated, |
|
|
|
|
CreatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
var expected = func(res libraryElementResult) libraryElementResult { |
|
|
|
|
return libraryElementResult{ |
|
|
|
|
Result: libraryElement{ |
|
|
|
|
ID: 1, |
|
|
|
|
OrgID: 1, |
|
|
|
|
FolderID: 1, |
|
|
|
|
UID: res.Result.UID, |
|
|
|
|
Name: "Text - Library Panel", |
|
|
|
|
Kind: int64(Panel), |
|
|
|
|
Type: "text", |
|
|
|
|
Description: "A description", |
|
|
|
|
Model: map[string]interface{}{ |
|
|
|
|
"datasource": "${DS_GDEV-TESTDATA}", |
|
|
|
|
"description": "A description", |
|
|
|
|
"id": float64(1), |
|
|
|
|
"title": "Text - Library Panel", |
|
|
|
|
"type": "text", |
|
|
|
|
}, |
|
|
|
|
UpdatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
Version: 1, |
|
|
|
|
Meta: LibraryElementDTOMeta{ |
|
|
|
|
FolderName: "ScenarioFolder", |
|
|
|
|
FolderUID: sc.folder.Uid, |
|
|
|
|
ConnectedDashboards: 0, |
|
|
|
|
Created: res.Result.Meta.Created, |
|
|
|
|
Updated: res.Result.Meta.Updated, |
|
|
|
|
CreatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
}, |
|
|
|
|
UpdatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if diff := cmp.Diff(expected, result, getCompareOptions()...); diff != "" { |
|
|
|
|
|
|
|
|
|
// by uid
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
var result = validateAndUnMarshalResponse(t, resp) |
|
|
|
|
|
|
|
|
|
if diff := cmp.Diff(expected(result), result, getCompareOptions()...); diff != "" { |
|
|
|
|
t.Fatalf("Result mismatch (-want +got):\n%s", diff) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// by name
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":name": sc.initialResult.Result.Name}) |
|
|
|
|
resp = sc.service.getByNameHandler(sc.reqContext) |
|
|
|
|
arrayResult := validateAndUnMarshalArrayResponse(t, resp) |
|
|
|
|
|
|
|
|
|
if diff := cmp.Diff(libraryElementArrayResult{Result: []libraryElement{expected(result).Result}}, arrayResult, getCompareOptions()...); diff != "" { |
|
|
|
|
t.Fatalf("Result mismatch (-want +got):\n%s", diff) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
@ -102,57 +122,77 @@ func TestGetLibraryElement(t *testing.T) { |
|
|
|
|
err := sc.service.ConnectElementsToDashboard(sc.reqContext, []string{sc.initialResult.Result.UID}, dashInDB.Id) |
|
|
|
|
require.NoError(t, err) |
|
|
|
|
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
var result = validateAndUnMarshalResponse(t, resp) |
|
|
|
|
var expected = libraryElementResult{ |
|
|
|
|
Result: libraryElement{ |
|
|
|
|
ID: 1, |
|
|
|
|
OrgID: 1, |
|
|
|
|
FolderID: 1, |
|
|
|
|
UID: result.Result.UID, |
|
|
|
|
Name: "Text - Library Panel", |
|
|
|
|
Kind: int64(Panel), |
|
|
|
|
Type: "text", |
|
|
|
|
Description: "A description", |
|
|
|
|
Model: map[string]interface{}{ |
|
|
|
|
"datasource": "${DS_GDEV-TESTDATA}", |
|
|
|
|
"description": "A description", |
|
|
|
|
"id": float64(1), |
|
|
|
|
"title": "Text - Library Panel", |
|
|
|
|
"type": "text", |
|
|
|
|
}, |
|
|
|
|
Version: 1, |
|
|
|
|
Meta: LibraryElementDTOMeta{ |
|
|
|
|
FolderName: "ScenarioFolder", |
|
|
|
|
FolderUID: sc.folder.Uid, |
|
|
|
|
ConnectedDashboards: 1, |
|
|
|
|
Created: result.Result.Meta.Created, |
|
|
|
|
Updated: result.Result.Meta.Updated, |
|
|
|
|
CreatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
expected := func(res libraryElementResult) libraryElementResult { |
|
|
|
|
return libraryElementResult{ |
|
|
|
|
Result: libraryElement{ |
|
|
|
|
ID: 1, |
|
|
|
|
OrgID: 1, |
|
|
|
|
FolderID: 1, |
|
|
|
|
UID: res.Result.UID, |
|
|
|
|
Name: "Text - Library Panel", |
|
|
|
|
Kind: int64(Panel), |
|
|
|
|
Type: "text", |
|
|
|
|
Description: "A description", |
|
|
|
|
Model: map[string]interface{}{ |
|
|
|
|
"datasource": "${DS_GDEV-TESTDATA}", |
|
|
|
|
"description": "A description", |
|
|
|
|
"id": float64(1), |
|
|
|
|
"title": "Text - Library Panel", |
|
|
|
|
"type": "text", |
|
|
|
|
}, |
|
|
|
|
UpdatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
Version: 1, |
|
|
|
|
Meta: LibraryElementDTOMeta{ |
|
|
|
|
FolderName: "ScenarioFolder", |
|
|
|
|
FolderUID: sc.folder.Uid, |
|
|
|
|
ConnectedDashboards: 1, |
|
|
|
|
Created: res.Result.Meta.Created, |
|
|
|
|
Updated: res.Result.Meta.Updated, |
|
|
|
|
CreatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
}, |
|
|
|
|
UpdatedBy: LibraryElementDTOMetaUser{ |
|
|
|
|
ID: 1, |
|
|
|
|
Name: userInDbName, |
|
|
|
|
AvatarURL: userInDbAvatar, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// by uid
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
result := validateAndUnMarshalResponse(t, resp) |
|
|
|
|
|
|
|
|
|
if diff := cmp.Diff(expected(result), result, getCompareOptions()...); diff != "" { |
|
|
|
|
t.Fatalf("Result mismatch (-want +got):\n%s", diff) |
|
|
|
|
} |
|
|
|
|
if diff := cmp.Diff(expected, result, getCompareOptions()...); diff != "" { |
|
|
|
|
|
|
|
|
|
// by name
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":name": sc.initialResult.Result.Name}) |
|
|
|
|
resp = sc.service.getByNameHandler(sc.reqContext) |
|
|
|
|
arrayResult := validateAndUnMarshalArrayResponse(t, resp) |
|
|
|
|
if diff := cmp.Diff(libraryElementArrayResult{Result: []libraryElement{expected(result).Result}}, arrayResult, getCompareOptions()...); diff != "" { |
|
|
|
|
t.Fatalf("Result mismatch (-want +got):\n%s", diff) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
scenarioWithPanel(t, "When an admin tries to get a library panel that exists in an other org, it should fail", |
|
|
|
|
func(t *testing.T, sc scenarioContext) { |
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
sc.reqContext.SignedInUser.OrgId = 2 |
|
|
|
|
sc.reqContext.SignedInUser.OrgRole = models.ROLE_ADMIN |
|
|
|
|
|
|
|
|
|
// by uid
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":uid": sc.initialResult.Result.UID}) |
|
|
|
|
resp := sc.service.getHandler(sc.reqContext) |
|
|
|
|
require.Equal(t, 404, resp.Status()) |
|
|
|
|
|
|
|
|
|
// by name
|
|
|
|
|
sc.reqContext.ReplaceAllParams(map[string]string{":name": sc.initialResult.Result.Name}) |
|
|
|
|
resp = sc.service.getByNameHandler(sc.reqContext) |
|
|
|
|
require.Equal(t, 404, resp.Status()) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|