| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package sqlstore
- import (
- "testing"
- "time"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/models"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestDashboardProvisioningTest(t *testing.T) {
- Convey("Testing Dashboard provisioning", t, func() {
- InitTestDB(t)
- saveDashboardCmd := &models.SaveDashboardCommand{
- OrgId: 1,
- FolderId: 0,
- IsFolder: false,
- Dashboard: simplejson.NewFromAny(map[string]interface{}{
- "id": nil,
- "title": "test dashboard",
- }),
- }
- Convey("Saving dashboards with extras", func() {
- now := time.Now()
- cmd := &models.SaveProvisionedDashboardCommand{
- DashboardCmd: saveDashboardCmd,
- DashboardProvisioning: &models.DashboardProvisioning{
- Name: "default",
- ExternalId: "/var/grafana.json",
- Updated: now.Unix(),
- },
- }
- err := SaveProvisionedDashboard(cmd)
- So(err, ShouldBeNil)
- So(cmd.Result, ShouldNotBeNil)
- So(cmd.Result.Id, ShouldNotEqual, 0)
- dashId := cmd.Result.Id
- Convey("Can query for provisioned dashboards", func() {
- query := &models.GetProvisionedDashboardDataQuery{Name: "default"}
- err := GetProvisionedDashboardDataQuery(query)
- So(err, ShouldBeNil)
- So(len(query.Result), ShouldEqual, 1)
- So(query.Result[0].DashboardId, ShouldEqual, dashId)
- So(query.Result[0].Updated, ShouldEqual, now.Unix())
- })
- })
- })
- }
|