The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/registry/apis/dashboard/conversion_test.go

106 lines
3.2 KiB

package dashboard
import (
"testing"
"time"
common "github.com/grafana/grafana/pkg/apimachinery/apis/common/v0alpha1"
dashboardinternal "github.com/grafana/grafana/pkg/apis/dashboard"
dashboardv0alpha1 "github.com/grafana/grafana/pkg/apis/dashboard/v0alpha1"
dashboardv1alpha1 "github.com/grafana/grafana/pkg/apis/dashboard/v1alpha1"
dashboardv2alpha1 "github.com/grafana/grafana/pkg/apis/dashboard/v2alpha1"
"github.com/stretchr/testify/require"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
)
func TestConvertDashboardVersionsToInternal(t *testing.T) {
// create the scheme of all the dashboard versions
// it's all a part of the grand scheme - ‿ -
scheme := runtime.NewScheme()
err := dashboardv0alpha1.AddToScheme(scheme)
require.NoError(t, err)
err = dashboardv1alpha1.AddToScheme(scheme)
require.NoError(t, err)
err = dashboardv2alpha1.AddToScheme(scheme)
require.NoError(t, err)
err = dashboardinternal.AddToScheme(scheme)
require.NoError(t, err)
// all dashboard versions in this test have the same info inside
// so, the internal version should be the same when going back and forth
creationTimestamp := time.Now()
name := "test"
title := "New dashboard"
namespace := "default"
annotations := map[string]string{"created-by": "me"}
labels := map[string]string{"starred-by": "you"}
rv := "1"
body := map[string]interface{}{"title": title, "description": "A new dashboard"}
expectedDashbaord := dashboardinternal.Dashboard{
ObjectMeta: v1.ObjectMeta{
Name: name,
Namespace: namespace,
CreationTimestamp: v1.NewTime(creationTimestamp),
Annotations: annotations,
Labels: labels,
ResourceVersion: rv,
},
Spec: common.Unstructured{
Object: body,
},
}
dashV0 := &dashboardv0alpha1.Dashboard{
ObjectMeta: v1.ObjectMeta{
Name: name,
Namespace: namespace,
CreationTimestamp: v1.NewTime(creationTimestamp),
Annotations: annotations,
Labels: labels,
ResourceVersion: rv,
},
Spec: common.Unstructured{
Object: body,
},
}
dash, err := ToInternalDashboard(scheme, dashV0)
require.NoError(t, err)
require.Equal(t, expectedDashbaord, *dash)
dashV1 := &dashboardv1alpha1.Dashboard{
ObjectMeta: v1.ObjectMeta{
Name: name,
Namespace: namespace,
CreationTimestamp: v1.NewTime(creationTimestamp),
Annotations: annotations,
Labels: labels,
ResourceVersion: rv,
},
Spec: dashboardv1alpha1.DashboardSpec{
Title: title,
Unstructured: common.Unstructured{Object: body},
},
}
dash, err = ToInternalDashboard(scheme, dashV1)
require.NoError(t, err)
require.Equal(t, expectedDashbaord, *dash)
dashV2 := &dashboardv2alpha1.Dashboard{
ObjectMeta: v1.ObjectMeta{
Name: name,
Namespace: namespace,
CreationTimestamp: v1.NewTime(creationTimestamp),
Annotations: annotations,
Labels: labels,
ResourceVersion: rv,
},
Spec: dashboardv2alpha1.DashboardSpec{
Title: title,
Unstructured: common.Unstructured{Object: body},
},
}
dash, err = ToInternalDashboard(scheme, dashV2)
require.NoError(t, err)
require.Equal(t, expectedDashbaord, *dash)
}