mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
34266cd369
Enables adding a section `plugin.<plugin id>` and key/value to Grafana configuration file which will be converted and sent as environment variables to the backend plugin. Also sends some additional environment variables, Grafana version (GF_VERSION), Grafana edition (GF_EDITION) and enterprise license path (GF_ENTERPRISE_LICENSE_PATH). Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> Fixes #21515,
105 lines
2.6 KiB
Go
105 lines
2.6 KiB
Go
package plugins
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/dashboards"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestDashboardImport(t *testing.T) {
|
|
pluginScenario("When importing a plugin dashboard", t, func() {
|
|
origNewDashboardService := dashboards.NewService
|
|
mock := &dashboards.FakeDashboardService{}
|
|
dashboards.MockDashboardService(mock)
|
|
|
|
cmd := ImportDashboardCommand{
|
|
PluginId: "test-app",
|
|
Path: "dashboards/connections.json",
|
|
OrgId: 1,
|
|
User: &models.SignedInUser{UserId: 1, OrgRole: models.ROLE_ADMIN},
|
|
Inputs: []ImportDashboardInput{
|
|
{Name: "*", Type: "datasource", Value: "graphite"},
|
|
},
|
|
}
|
|
|
|
err := ImportDashboard(&cmd)
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should install dashboard", func() {
|
|
So(cmd.Result, ShouldNotBeNil)
|
|
|
|
resultStr, _ := mock.SavedDashboards[0].Dashboard.Data.EncodePretty()
|
|
expectedBytes, _ := ioutil.ReadFile("testdata/test-app/dashboards/connections_result.json")
|
|
expectedJson, _ := simplejson.NewJson(expectedBytes)
|
|
expectedStr, _ := expectedJson.EncodePretty()
|
|
|
|
So(string(resultStr), ShouldEqual, string(expectedStr))
|
|
|
|
panel := mock.SavedDashboards[0].Dashboard.Data.Get("rows").GetIndex(0).Get("panels").GetIndex(0)
|
|
So(panel.Get("datasource").MustString(), ShouldEqual, "graphite")
|
|
})
|
|
|
|
Reset(func() {
|
|
dashboards.NewService = origNewDashboardService
|
|
})
|
|
})
|
|
|
|
Convey("When evaling dashboard template", t, func() {
|
|
template, _ := simplejson.NewJson([]byte(`{
|
|
"__inputs": [
|
|
{
|
|
"name": "DS_NAME",
|
|
"type": "datasource"
|
|
}
|
|
],
|
|
"test": {
|
|
"prop": "${DS_NAME}"
|
|
}
|
|
}`))
|
|
|
|
evaluator := &DashTemplateEvaluator{
|
|
template: template,
|
|
inputs: []ImportDashboardInput{
|
|
{Name: "*", Type: "datasource", Value: "my-server"},
|
|
},
|
|
}
|
|
|
|
res, err := evaluator.Eval()
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should render template", func() {
|
|
So(res.GetPath("test", "prop").MustString(), ShouldEqual, "my-server")
|
|
})
|
|
|
|
Convey("should not include inputs in output", func() {
|
|
inputs := res.Get("__inputs")
|
|
So(inputs.Interface(), ShouldBeNil)
|
|
})
|
|
|
|
})
|
|
}
|
|
|
|
func pluginScenario(desc string, t *testing.T, fn func()) {
|
|
Convey("Given a plugin", t, func() {
|
|
pm := &PluginManager{
|
|
Cfg: &setting.Cfg{
|
|
FeatureToggles: map[string]bool{},
|
|
PluginSettings: setting.PluginSettings{
|
|
"test-app": map[string]string{
|
|
"path": "testdata/test-app",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
err := pm.Init()
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey(desc, fn)
|
|
})
|
|
}
|