File: utils_test.go

package info (click to toggle)
golang-k8s-sigs-kustomize-api 0.20.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,768 kB
  • sloc: makefile: 206; sh: 67
file content (51 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2020 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0

package generators_test

import (
	"testing"

	"github.com/stretchr/testify/require"
	. "sigs.k8s.io/kustomize/api/internal/generators"
)

func TestParseFileSource(t *testing.T) {
	tests := map[string]*struct {
		Input    string
		Error    string
		Key      string
		Filename string
	}{
		"filename only": {
			Input:    "./path/myfile",
			Key:      "myfile",
			Filename: "./path/myfile",
		},
		"key and filename": {
			Input:    "newName.ini=oldName",
			Key:      "newName.ini",
			Filename: "oldName",
		},
		"multiple =": {
			Input: "newName.ini==oldName",
			Error: `source "newName.ini==oldName" key name or file path contains '='`,
		},
		"missing key": {
			Input: "=myfile",
			Error: `missing key name for file path "myfile" in source "=myfile"`,
		},
	}
	for name, test := range tests {
		t.Run(name, func(t *testing.T) {
			key, file, err := ParseFileSource(test.Input)
			if test.Error != "" {
				require.EqualError(t, err, test.Error)
			} else {
				require.NoError(t, err)
				require.Equal(t, test.Key, key)
				require.Equal(t, test.Filename, file)
			}
		})
	}
}