Andrey Smirnov 032c99a030
refactor: remove pkg/resources dependencies on k8s and base62
This continues the process of removing extra dependencies before moving
`pkg/resources` into machinery.

See also: #4420 #4469

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
2021-11-15 17:41:11 +03:00

53 lines
1.3 KiB
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package k8s_test
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s"
"github.com/talos-systems/talos/pkg/resources/k8s"
)
func TestManifestSetYAML(t *testing.T) {
manifest := k8s.NewManifest(k8s.ControlPlaneNamespaceName, "test")
adapter := k8sadapter.Manifest(manifest)
require.NoError(t, adapter.SetYAML([]byte(strings.TrimSpace(`
---
apiVersion: audit.k8s.io/v1beta1
kind: Policy
rules:
- level: Metadata
---
`))))
assert.Len(t, adapter.Objects(), 1)
assert.Equal(t, adapter.Objects()[0].GetKind(), "Policy")
}
func TestManifestSetYAMLEmptyComments(t *testing.T) {
manifest := k8s.NewManifest(k8s.ControlPlaneNamespaceName, "test")
adapter := k8sadapter.Manifest(manifest)
require.NoError(t, adapter.SetYAML([]byte(strings.TrimSpace(`
---
apiVersion: audit.k8s.io/v1beta1
kind: Policy
rules:
- level: Metadata
---
# Left empty
---
`))))
assert.Len(t, adapter.Objects(), 1)
assert.Equal(t, adapter.Objects()[0].GetKind(), "Policy")
}