forked from kubernetes-sigs/kustomize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Localize configMapGenerator, secretGenerator fields (kubernetes-sigs#…
…4894) * Localize configMapGenerator, secretGenerator fields * Improve readability * Expose kv parseFileSource * Add localizeGenerator to Localizer * Improve and test ParseFileSource error messages
- Loading branch information
1 parent
7a8c65e
commit d5c0143
Showing
5 changed files
with
222 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters