mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Add integration with Jeager Add Jaeger datasource and modify derived fields in loki to allow for opening a trace in Jager in separate split. Modifies build so that this branch docker images are pushed to docker hub Add a traceui dir with docker-compose and provision files for demoing.:wq * Enable docker logger plugin to send logs to loki * Add placeholder zipkin datasource * Fixed rebase issues, added enhanceDataFrame to non-legacy code path * Trace selector for jaeger query field * Fix logs default mode for Loki * Fix loading jaeger query field services on split * Updated grafana image in traceui/compose file * Fix prettier error * Hide behind feature flag, clean up unused code. * Fix tests * Fix tests * Cleanup code and review feedback * Remove traceui directory * Remove circle build changes * Fix feature toggles object * Fix merge issues * Fix some null errors * Fix test after strict null changes * Review feedback fixes * Fix toggle name Co-authored-by: David Kaltschmidt <david.kaltschmidt@gmail.com>
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
package plugins
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
"gopkg.in/ini.v1"
|
|
)
|
|
|
|
func TestPluginScans(t *testing.T) {
|
|
|
|
Convey("When scanning for plugins", t, func() {
|
|
setting.StaticRootPath, _ = filepath.Abs("../../public/")
|
|
setting.Raw = ini.Empty()
|
|
|
|
pm := &PluginManager{
|
|
Cfg: &setting.Cfg{
|
|
FeatureToggles: map[string]bool{},
|
|
},
|
|
}
|
|
err := pm.Init()
|
|
|
|
So(err, ShouldBeNil)
|
|
So(len(DataSources), ShouldBeGreaterThan, 1)
|
|
So(len(Panels), ShouldBeGreaterThan, 1)
|
|
|
|
Convey("Should set module automatically", func() {
|
|
So(DataSources["graphite"].Module, ShouldEqual, "app/plugins/datasource/graphite/module")
|
|
})
|
|
})
|
|
|
|
Convey("When reading app plugin definition", t, func() {
|
|
setting.Raw = ini.Empty()
|
|
sec, err := setting.Raw.NewSection("plugin.nginx-app")
|
|
So(err, ShouldBeNil)
|
|
_, err = sec.NewKey("path", "testdata/test-app")
|
|
So(err, ShouldBeNil)
|
|
|
|
pm := &PluginManager{
|
|
Cfg: &setting.Cfg{
|
|
FeatureToggles: map[string]bool{},
|
|
},
|
|
}
|
|
err = pm.Init()
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(Apps), ShouldBeGreaterThan, 0)
|
|
So(Apps["test-app"].Info.Logos.Large, ShouldEqual, "public/plugins/test-app/img/logo_large.png")
|
|
So(Apps["test-app"].Info.Screenshots[1].Path, ShouldEqual, "public/plugins/test-app/img/screenshot2.png")
|
|
})
|
|
|
|
Convey("When checking if renderer is backend only plugin", t, func() {
|
|
pluginScanner := &PluginScanner{}
|
|
result := pluginScanner.IsBackendOnlyPlugin("renderer")
|
|
|
|
So(result, ShouldEqual, true)
|
|
})
|
|
|
|
Convey("When checking if app is backend only plugin", t, func() {
|
|
pluginScanner := &PluginScanner{}
|
|
result := pluginScanner.IsBackendOnlyPlugin("app")
|
|
|
|
So(result, ShouldEqual, false)
|
|
})
|
|
|
|
}
|