mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
7536647ab6
* introduce registry write/read separation * internal + external registries * fix tests * fixup * rename * move interfaces * back to plugins.Store * fix registry name * remove context.TODOs * remove some ctx for now * tidy * remove dupe logic * update naming * move from manager.go to store * amend logger name * new store writer svc * restrict changes * more simplifying * move interfaces around * remove unused * fix linter * tidy * add registry test * fix tests * revert testdata changes * revert testdata changes #1 * revert testdata changes #2 * revert testdata changes #3 * revert testdata changes #4 * revert testdata changes #5 * revert testdata changes * fixup testdata * remove unused log * update naming in test * adjust ctx in test
226 lines
6.5 KiB
Go
226 lines
6.5 KiB
Go
package manager
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"testing"
|
|
"testing/fstest"
|
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDashboardFileStore(t *testing.T) {
|
|
m := setupPluginDashboardsForTest(t)
|
|
|
|
t.Run("Input validation", func(t *testing.T) {
|
|
t.Run("ListPluginDashboardFiles", func(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
args *plugins.ListPluginDashboardFilesArgs
|
|
}{
|
|
{
|
|
name: "nil args should return error",
|
|
},
|
|
{
|
|
name: "empty args.PluginID should return error",
|
|
args: &plugins.ListPluginDashboardFilesArgs{},
|
|
},
|
|
{
|
|
name: "args.PluginID with only space should return error",
|
|
args: &plugins.ListPluginDashboardFilesArgs{PluginID: " \t "},
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
res, err := m.ListPluginDashboardFiles(context.Background(), tc.args)
|
|
assert.Error(t, err)
|
|
assert.Nil(t, res)
|
|
})
|
|
}
|
|
})
|
|
|
|
t.Run("GetPluginDashboardFileContents", func(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
args *plugins.GetPluginDashboardFileContentsArgs
|
|
}{
|
|
{
|
|
name: "nil args should return error",
|
|
},
|
|
{
|
|
name: "empty args.PluginID should return error",
|
|
args: &plugins.GetPluginDashboardFileContentsArgs{},
|
|
},
|
|
{
|
|
name: "args.PluginID with only space should return error",
|
|
args: &plugins.GetPluginDashboardFileContentsArgs{PluginID: " "},
|
|
},
|
|
{
|
|
name: "empty args.FileReference should return error",
|
|
args: &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
},
|
|
},
|
|
{
|
|
name: "args.FileReference with only space should return error",
|
|
args: &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboard",
|
|
FileReference: " \t",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), tc.args)
|
|
assert.Error(t, err)
|
|
assert.Nil(t, res)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
|
|
t.Run("Plugin without dashboards", func(t *testing.T) {
|
|
t.Run("Should return zero file references", func(t *testing.T) {
|
|
res, err := m.ListPluginDashboardFiles(context.Background(), &plugins.ListPluginDashboardFilesArgs{
|
|
PluginID: "pluginWithoutDashboards",
|
|
})
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
require.Len(t, res.FileReferences, 0)
|
|
})
|
|
|
|
t.Run("Should return file not found error when trying to get non-existing plugin dashboard file content", func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithoutDashboards",
|
|
FileReference: "dashboards/dash2.json",
|
|
})
|
|
require.Error(t, err)
|
|
require.EqualError(t, err, "plugin dashboard file not found")
|
|
require.Nil(t, res)
|
|
})
|
|
})
|
|
|
|
t.Run("Plugin with dashboards", func(t *testing.T) {
|
|
t.Run("Should return two file references", func(t *testing.T) {
|
|
res, err := m.ListPluginDashboardFiles(context.Background(), &plugins.ListPluginDashboardFilesArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
})
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
require.Len(t, res.FileReferences, 2)
|
|
})
|
|
|
|
t.Run("With filesystem", func(t *testing.T) {
|
|
origOpenDashboardFile := openDashboardFile
|
|
mapFs := fstest.MapFS{
|
|
"plugins/plugin-id/dashboards/dash1.json": {
|
|
Data: []byte("dash1"),
|
|
},
|
|
"plugins/plugin-id/dashboards/dash2.json": {
|
|
Data: []byte("dash2"),
|
|
},
|
|
"plugins/plugin-id/dashboards/dash3.json": {
|
|
Data: []byte("dash3"),
|
|
},
|
|
"plugins/plugin-id/dash2.json": {
|
|
Data: []byte("dash2"),
|
|
},
|
|
}
|
|
openDashboardFile = mapFs.Open
|
|
t.Cleanup(func() {
|
|
openDashboardFile = origOpenDashboardFile
|
|
})
|
|
|
|
t.Run("Should return file not found error when trying to get non-existing plugin dashboard file content", func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
FileReference: "dashboards/dash3.json",
|
|
})
|
|
require.Error(t, err)
|
|
require.EqualError(t, err, "plugin dashboard file not found")
|
|
require.Nil(t, res)
|
|
})
|
|
|
|
t.Run("Should return file content for dashboards/dash1.json", func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
FileReference: "dashboards/dash1.json",
|
|
})
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
require.NotNil(t, res.Content)
|
|
b, err := io.ReadAll(res.Content)
|
|
require.NoError(t, err)
|
|
require.Equal(t, "dash1", string(b))
|
|
require.NoError(t, res.Content.Close())
|
|
})
|
|
|
|
t.Run("Should return file content for dashboards/dash2.json", func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
FileReference: "dashboards/dash2.json",
|
|
})
|
|
require.NoError(t, err)
|
|
require.NotNil(t, res)
|
|
require.NotNil(t, res.Content)
|
|
b, err := io.ReadAll(res.Content)
|
|
require.NoError(t, err)
|
|
require.Equal(t, "dash2", string(b))
|
|
require.NoError(t, res.Content.Close())
|
|
})
|
|
|
|
t.Run("Should return error when trying to read relative file", func(t *testing.T) {
|
|
res, err := m.GetPluginDashboardFileContents(context.Background(), &plugins.GetPluginDashboardFileContentsArgs{
|
|
PluginID: "pluginWithDashboards",
|
|
FileReference: "dashboards/../dash2.json",
|
|
})
|
|
require.Error(t, err)
|
|
require.EqualError(t, err, "plugin dashboard file not found")
|
|
require.Nil(t, res)
|
|
})
|
|
})
|
|
})
|
|
}
|
|
|
|
func setupPluginDashboardsForTest(t *testing.T) *PluginManager {
|
|
t.Helper()
|
|
|
|
return &PluginManager{
|
|
pluginRegistry: &fakePluginRegistry{
|
|
store: map[string]*plugins.Plugin{
|
|
"pluginWithoutDashboards": {
|
|
JSONData: plugins.JSONData{
|
|
Includes: []*plugins.Includes{
|
|
{
|
|
Type: "page",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"pluginWithDashboards": {
|
|
PluginDir: "plugins/plugin-id",
|
|
JSONData: plugins.JSONData{
|
|
Includes: []*plugins.Includes{
|
|
{
|
|
Type: "page",
|
|
},
|
|
{
|
|
Type: "dashboard",
|
|
Path: "dashboards/dash1.json",
|
|
},
|
|
{
|
|
Type: "dashboard",
|
|
Path: "dashboards/dash2.json",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|