| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- package sqlstore
- import (
- "testing"
- "time"
- "github.com/go-xorm/xorm"
- . "github.com/smartystreets/goconvey/convey"
- "github.com/grafana/grafana/pkg/components/simplejson"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/setting"
- )
- func TestDashboardSnapshotDBAccess(t *testing.T) {
- Convey("Testing DashboardSnapshot data access", t, func() {
- InitTestDB(t)
- Convey("Given saved snapshot", func() {
- cmd := m.CreateDashboardSnapshotCommand{
- Key: "hej",
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "hello": "mupp",
- }),
- UserId: 1000,
- OrgId: 1,
- }
- err := CreateDashboardSnapshot(&cmd)
- So(err, ShouldBeNil)
- Convey("Should be able to get snapshot by key", func() {
- query := m.GetDashboardSnapshotQuery{Key: "hej"}
- err = GetDashboardSnapshot(&query)
- So(err, ShouldBeNil)
- So(query.Result, ShouldNotBeNil)
- So(query.Result.Dashboard.Get("hello").MustString(), ShouldEqual, "mupp")
- })
- Convey("And the user has the admin role", func() {
- Convey("Should return all the snapshots", func() {
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_ADMIN},
- }
- err := SearchDashboardSnapshots(&query)
- So(err, ShouldBeNil)
- So(query.Result, ShouldNotBeNil)
- So(len(query.Result), ShouldEqual, 1)
- })
- })
- Convey("And the user has the editor role and has created a snapshot", func() {
- Convey("Should return all the snapshots", func() {
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_EDITOR, UserId: 1000},
- }
- err := SearchDashboardSnapshots(&query)
- So(err, ShouldBeNil)
- So(query.Result, ShouldNotBeNil)
- So(len(query.Result), ShouldEqual, 1)
- })
- })
- Convey("And the user has the editor role and has not created any snapshot", func() {
- Convey("Should not return any snapshots", func() {
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_EDITOR, UserId: 2},
- }
- err := SearchDashboardSnapshots(&query)
- So(err, ShouldBeNil)
- So(query.Result, ShouldNotBeNil)
- So(len(query.Result), ShouldEqual, 0)
- })
- })
- Convey("And the user is anonymous", func() {
- cmd := m.CreateDashboardSnapshotCommand{
- Key: "strangesnapshotwithuserid0",
- DeleteKey: "adeletekey",
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "hello": "mupp",
- }),
- UserId: 0,
- OrgId: 1,
- }
- err := CreateDashboardSnapshot(&cmd)
- So(err, ShouldBeNil)
- Convey("Should not return any snapshots", func() {
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_EDITOR, IsAnonymous: true, UserId: 0},
- }
- err := SearchDashboardSnapshots(&query)
- So(err, ShouldBeNil)
- So(query.Result, ShouldNotBeNil)
- So(len(query.Result), ShouldEqual, 0)
- })
- })
- })
- })
- }
- func TestDeleteExpiredSnapshots(t *testing.T) {
- Convey("Testing dashboard snapshots clean up", t, func() {
- x := InitTestDB(t)
- setting.SnapShotRemoveExpired = true
- notExpiredsnapshot := createTestSnapshot(x, "key1", 1000)
- createTestSnapshot(x, "key2", -1000)
- createTestSnapshot(x, "key3", -1000)
- Convey("Clean up old dashboard snapshots", func() {
- err := DeleteExpiredSnapshots(&m.DeleteExpiredSnapshotsCommand{})
- So(err, ShouldBeNil)
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_ADMIN},
- }
- err = SearchDashboardSnapshots(&query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 1)
- So(query.Result[0].Key, ShouldEqual, notExpiredsnapshot.Key)
- })
- Convey("Don't delete anything if there are no expired snapshots", func() {
- err := DeleteExpiredSnapshots(&m.DeleteExpiredSnapshotsCommand{})
- So(err, ShouldBeNil)
- query := m.GetDashboardSnapshotsQuery{
- OrgId: 1,
- SignedInUser: &m.SignedInUser{OrgRole: m.ROLE_ADMIN},
- }
- SearchDashboardSnapshots(&query)
- So(len(query.Result), ShouldEqual, 1)
- })
- })
- }
- func createTestSnapshot(x *xorm.Engine, key string, expires int64) *m.DashboardSnapshot {
- cmd := m.CreateDashboardSnapshotCommand{
- Key: key,
- DeleteKey: "delete" + key,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "hello": "mupp",
- }),
- UserId: 1000,
- OrgId: 1,
- Expires: expires,
- }
- err := CreateDashboardSnapshot(&cmd)
- So(err, ShouldBeNil)
- // Set expiry date manually - to be able to create expired snapshots
- expireDate := time.Now().Add(time.Second * time.Duration(expires))
- _, err = x.Exec("update dashboard_snapshot set expires = ? where "+dialect.Quote("key")+" = ?", expireDate, key)
- So(err, ShouldBeNil)
- return cmd.Result
- }
|