f1dbbcbe00
* add /meta and /metas APIs * wrapped storage route * format file * fix switch statement lint issue * fix plugininstaller test --------- Co-authored-by: Todd Treece <todd.treece@grafana.com>
86 lines
2.8 KiB
Go
86 lines
2.8 KiB
Go
package plugins
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
pluginsv0alpha1 "github.com/grafana/grafana/apps/plugins/pkg/apis/plugins/v0alpha1"
|
|
"github.com/grafana/grafana/pkg/tests/apis"
|
|
"github.com/grafana/grafana/pkg/util/testutil"
|
|
)
|
|
|
|
func TestIntegrationPluginMetas(t *testing.T) {
|
|
testutil.SkipIntegrationTestInShortMode(t)
|
|
|
|
t.Run("list plugin metas", func(t *testing.T) {
|
|
helper := setupHelper(t)
|
|
ctx := context.Background()
|
|
client := helper.GetResourceClient(apis.ResourceClientArgs{
|
|
User: helper.Org1.Admin,
|
|
GVR: gvrPlugins,
|
|
})
|
|
|
|
plugin1Name := "test-plugin-metas-1"
|
|
plugin1 := helper.LoadYAMLOrJSON(fmt.Sprintf(`{
|
|
"apiVersion": "plugins.grafana.app/v0alpha1",
|
|
"kind": "Plugin",
|
|
"metadata": {"name": "%s"},
|
|
"spec": {"id": "grafana-piechart-panel", "version": "1.0.0"}
|
|
}`, plugin1Name))
|
|
_, err := client.Resource.Create(ctx, plugin1, metav1.CreateOptions{})
|
|
require.NoError(t, err)
|
|
|
|
plugin2Name := "test-plugin-metas-2"
|
|
plugin2 := helper.LoadYAMLOrJSON(fmt.Sprintf(`{
|
|
"apiVersion": "plugins.grafana.app/v0alpha1",
|
|
"kind": "Plugin",
|
|
"metadata": {"name": "%s"},
|
|
"spec": {"id": "grafana-clock-panel", "version": "1.0.0"}
|
|
}`, plugin2Name))
|
|
_, err = client.Resource.Create(ctx, plugin2, metav1.CreateOptions{})
|
|
require.NoError(t, err)
|
|
|
|
namespace := helper.Namespacer(helper.Org1.Admin.Identity.GetOrgID())
|
|
path := fmt.Sprintf("/apis/plugins.grafana.app/v0alpha1/namespaces/%s/pluginmetas", namespace)
|
|
response := apis.DoRequest(helper, apis.RequestParams{
|
|
User: helper.Org1.Admin,
|
|
Method: "GET",
|
|
Path: path,
|
|
}, &pluginsv0alpha1.PluginMetaList{})
|
|
|
|
require.NotNil(t, response.Result)
|
|
require.NotNil(t, response.Result.Items)
|
|
require.GreaterOrEqual(t, len(response.Result.Items), 2)
|
|
|
|
foundIDs := make(map[string]bool)
|
|
for _, item := range response.Result.Items {
|
|
require.NotNil(t, item.Spec.PluginJSON)
|
|
foundIDs[item.Spec.PluginJSON.Id] = true
|
|
require.NotEmpty(t, item.Spec.PluginJSON.Id)
|
|
require.NotEmpty(t, item.Spec.PluginJSON.Type)
|
|
require.NotEmpty(t, item.Spec.PluginJSON.Name)
|
|
}
|
|
require.True(t, foundIDs["grafana-piechart-panel"])
|
|
require.True(t, foundIDs["grafana-clock-panel"])
|
|
})
|
|
|
|
t.Run("list plugin metas with no plugins", func(t *testing.T) {
|
|
helper := setupHelper(t)
|
|
namespace := helper.Namespacer(helper.Org1.Admin.Identity.GetOrgID())
|
|
path := fmt.Sprintf("/apis/plugins.grafana.app/v0alpha1/namespaces/%s/pluginmetas", namespace)
|
|
response := apis.DoRequest(helper, apis.RequestParams{
|
|
User: helper.Org1.Admin,
|
|
Method: "GET",
|
|
Path: path,
|
|
}, &pluginsv0alpha1.PluginMetaList{})
|
|
|
|
require.NotNil(t, response.Result)
|
|
require.NotNil(t, response.Result.Items)
|
|
require.GreaterOrEqual(t, len(response.Result.Items), 0)
|
|
})
|
|
}
|