// SPDX-License-Identifier: Apache-2.0 // Copyright Authors of K9s package xray_test import ( "context" "testing" "github.com/derailed/k9s/internal" "github.com/derailed/k9s/internal/client" "github.com/derailed/k9s/internal/xray" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "k8s.io/apimachinery/pkg/runtime" ) func TestStatefulSetRender(t *testing.T) { uu := map[string]struct { file string level1, level2 int status string }{ "plain": { file: "sts", level1: 1, level2: 1, status: xray.OkStatus, }, } var re xray.StatefulSet for k := range uu { u := uu[k] t.Run(k, func(t *testing.T) { f := makeFactory() f.rows = map[*client.GVR][]runtime.Object{client.PodGVR: {load(t, "po")}} o := load(t, u.file) root := xray.NewTreeNode(client.StsGVR, "statefulsets") ctx := context.WithValue(context.Background(), xray.KeyParent, root) ctx = context.WithValue(ctx, internal.KeyFactory, f) require.NoError(t, re.Render(ctx, "", o)) assert.Equal(t, u.level1, root.CountChildren()) assert.Equal(t, u.level2, root.Children[0].CountChildren()) }) } }