| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- package sqlstore
- import (
- "testing"
- . "github.com/smartystreets/goconvey/convey"
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/services/search"
- )
- func insertTestDashboard(title string, orgId int64, tags ...interface{}) *m.Dashboard {
- cmd := m.SaveDashboardCommand{
- OrgId: orgId,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "id": nil,
- "title": title,
- "tags": tags,
- }),
- }
- err := SaveDashboard(&cmd)
- So(err, ShouldBeNil)
- return cmd.Result
- }
- func TestDashboardDataAccess(t *testing.T) {
- Convey("Testing DB", t, func() {
- InitTestDB(t)
- Convey("Given saved dashboard", func() {
- savedDash := insertTestDashboard("test dash 23", 1, "prod", "webapp")
- insertTestDashboard("test dash 45", 1, "prod")
- insertTestDashboard("test dash 67", 1, "prod", "webapp")
- Convey("Should return dashboard model", func() {
- So(savedDash.Title, ShouldEqual, "test dash 23")
- So(savedDash.Slug, ShouldEqual, "test-dash-23")
- So(savedDash.Id, ShouldNotEqual, 0)
- })
- Convey("Should be able to get dashboard", func() {
- query := m.GetDashboardQuery{
- Slug: "test-dash-23",
- OrgId: 1,
- }
- err := GetDashboard(&query)
- So(err, ShouldBeNil)
- So(query.Result.Title, ShouldEqual, "test dash 23")
- So(query.Result.Slug, ShouldEqual, "test-dash-23")
- })
- Convey("Should return error if no dashboard is updated", func() {
- cmd := m.SaveDashboardCommand{
- OrgId: 1,
- Overwrite: true,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "id": float64(123412321),
- "title": "Expect error",
- "tags": []interface{}{},
- }),
- }
- err := SaveDashboard(&cmd)
- So(err, ShouldNotBeNil)
- })
- Convey("Should not be able to overwrite dashboard in another org", func() {
- query := m.GetDashboardQuery{Slug: "test-dash-23", OrgId: 1}
- GetDashboard(&query)
- cmd := m.SaveDashboardCommand{
- OrgId: 2,
- Overwrite: true,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "id": float64(query.Result.Id),
- "title": "Expect error",
- "tags": []interface{}{},
- }),
- }
- err := SaveDashboard(&cmd)
- So(err, ShouldNotBeNil)
- })
- Convey("Should be able to search for dashboard", func() {
- query := search.FindPersistedDashboardsQuery{
- Title: "test dash 23",
- OrgId: 1,
- }
- err := SearchDashboards(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 1)
- hit := query.Result[0]
- So(len(hit.Tags), ShouldEqual, 2)
- })
- Convey("Should be able to search for dashboard by dashboard ids", func() {
- Convey("should be able to find two dashboards by id", func() {
- query := search.FindPersistedDashboardsQuery{
- DashboardIds: []int{1, 2},
- OrgId: 1,
- }
- err := SearchDashboards(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 2)
- hit := query.Result[0]
- So(len(hit.Tags), ShouldEqual, 2)
- hit2 := query.Result[1]
- So(len(hit2.Tags), ShouldEqual, 1)
- })
- Convey("DashboardIds that does not exists should not cause errors", func() {
- query := search.FindPersistedDashboardsQuery{
- DashboardIds: []int{1000},
- OrgId: 1,
- }
- err := SearchDashboards(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 0)
- })
- })
- Convey("Should not be able to save dashboard with same name", func() {
- cmd := m.SaveDashboardCommand{
- OrgId: 1,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "id": nil,
- "title": "test dash 23",
- "tags": []interface{}{},
- }),
- }
- err := SaveDashboard(&cmd)
- So(err, ShouldNotBeNil)
- })
- Convey("Should be able to get dashboard tags", func() {
- query := m.GetDashboardTagsQuery{OrgId: 1}
- err := GetDashboardTags(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 2)
- })
- Convey("Given two dashboards, one is starred dashboard by user 10, other starred by user 1", func() {
- starredDash := insertTestDashboard("starred dash", 1)
- StarDashboard(&m.StarDashboardCommand{
- DashboardId: starredDash.Id,
- UserId: 10,
- })
- StarDashboard(&m.StarDashboardCommand{
- DashboardId: savedDash.Id,
- UserId: 1,
- })
- Convey("Should be able to search for starred dashboards", func() {
- query := search.FindPersistedDashboardsQuery{OrgId: 1, UserId: 10, IsStarred: true}
- err := SearchDashboards(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 1)
- So(query.Result[0].Title, ShouldEqual, "starred dash")
- })
- })
- })
- })
- }
|