mirror of https://github.com/helm/helm
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.
183 lines
4.6 KiB
183 lines
4.6 KiB
/*
|
|
Copyright The Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package postrender
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const testingScript = `#!/bin/sh
|
|
if [ $# -eq 0 ]; then
|
|
sed s/FOOTEST/BARTEST/g <&0
|
|
else
|
|
sed s/FOOTEST/"$*"/g <&0
|
|
fi
|
|
`
|
|
|
|
func TestGetFullPath(t *testing.T) {
|
|
is := assert.New(t)
|
|
t.Run("full path resolves correctly", func(t *testing.T) {
|
|
testpath := setupTestingScript(t)
|
|
|
|
fullPath, err := getFullPath(testpath)
|
|
is.NoError(err)
|
|
is.Equal(testpath, fullPath)
|
|
})
|
|
|
|
t.Run("relative path resolves correctly", func(t *testing.T) {
|
|
testpath := setupTestingScript(t)
|
|
|
|
currentDir, err := os.Getwd()
|
|
require.NoError(t, err)
|
|
relative, err := filepath.Rel(currentDir, testpath)
|
|
require.NoError(t, err)
|
|
fullPath, err := getFullPath(relative)
|
|
is.NoError(err)
|
|
is.Equal(testpath, fullPath)
|
|
})
|
|
|
|
t.Run("binary in PATH resolves correctly", func(t *testing.T) {
|
|
testpath := setupTestingScript(t)
|
|
|
|
realPath := os.Getenv("PATH")
|
|
os.Setenv("PATH", filepath.Dir(testpath))
|
|
defer func() {
|
|
os.Setenv("PATH", realPath)
|
|
}()
|
|
|
|
fullPath, err := getFullPath(filepath.Base(testpath))
|
|
is.NoError(err)
|
|
is.Equal(testpath, fullPath)
|
|
})
|
|
|
|
// NOTE(thomastaylor312): See note in getFullPath for more details why this
|
|
// is here
|
|
|
|
// t.Run("binary in plugin path resolves correctly", func(t *testing.T) {
|
|
// testpath, cleanup := setupTestingScript(t)
|
|
// defer cleanup()
|
|
|
|
// realPath := os.Getenv("HELM_PLUGINS")
|
|
// os.Setenv("HELM_PLUGINS", filepath.Dir(testpath))
|
|
// defer func() {
|
|
// os.Setenv("HELM_PLUGINS", realPath)
|
|
// }()
|
|
|
|
// fullPath, err := getFullPath(filepath.Base(testpath))
|
|
// is.NoError(err)
|
|
// is.Equal(testpath, fullPath)
|
|
// })
|
|
|
|
// t.Run("binary in multiple plugin paths resolves correctly", func(t *testing.T) {
|
|
// testpath, cleanup := setupTestingScript(t)
|
|
// defer cleanup()
|
|
|
|
// realPath := os.Getenv("HELM_PLUGINS")
|
|
// os.Setenv("HELM_PLUGINS", filepath.Dir(testpath)+string(os.PathListSeparator)+"/another/dir")
|
|
// defer func() {
|
|
// os.Setenv("HELM_PLUGINS", realPath)
|
|
// }()
|
|
|
|
// fullPath, err := getFullPath(filepath.Base(testpath))
|
|
// is.NoError(err)
|
|
// is.Equal(testpath, fullPath)
|
|
// })
|
|
}
|
|
|
|
func TestExecRun(t *testing.T) {
|
|
if runtime.GOOS == "windows" {
|
|
// the actual Run test uses a basic sed example, so skip this test on windows
|
|
t.Skip("skipping on windows")
|
|
}
|
|
is := assert.New(t)
|
|
testpath := setupTestingScript(t)
|
|
|
|
renderer, err := NewExec(testpath)
|
|
require.NoError(t, err)
|
|
|
|
output, err := renderer.Run(bytes.NewBufferString("FOOTEST"))
|
|
is.NoError(err)
|
|
is.Contains(output.String(), "BARTEST")
|
|
}
|
|
|
|
func TestNewExecWithOneArgsRun(t *testing.T) {
|
|
if runtime.GOOS == "windows" {
|
|
// the actual Run test uses a basic sed example, so skip this test on windows
|
|
t.Skip("skipping on windows")
|
|
}
|
|
is := assert.New(t)
|
|
testpath := setupTestingScript(t)
|
|
|
|
renderer, err := NewExec(testpath, "ARG1")
|
|
require.NoError(t, err)
|
|
|
|
output, err := renderer.Run(bytes.NewBufferString("FOOTEST"))
|
|
is.NoError(err)
|
|
is.Contains(output.String(), "ARG1")
|
|
}
|
|
|
|
func TestNewExecWithTwoArgsRun(t *testing.T) {
|
|
if runtime.GOOS == "windows" {
|
|
// the actual Run test uses a basic sed example, so skip this test on windows
|
|
t.Skip("skipping on windows")
|
|
}
|
|
is := assert.New(t)
|
|
testpath := setupTestingScript(t)
|
|
|
|
renderer, err := NewExec(testpath, "ARG1", "ARG2")
|
|
require.NoError(t, err)
|
|
|
|
output, err := renderer.Run(bytes.NewBufferString("FOOTEST"))
|
|
is.NoError(err)
|
|
is.Contains(output.String(), "ARG1 ARG2")
|
|
}
|
|
|
|
func setupTestingScript(t *testing.T) (filepath string) {
|
|
t.Helper()
|
|
|
|
tempdir := t.TempDir()
|
|
|
|
f, err := os.CreateTemp(tempdir, "post-render-test.sh")
|
|
if err != nil {
|
|
t.Fatalf("unable to create tempfile for testing: %s", err)
|
|
}
|
|
|
|
_, err = f.WriteString(testingScript)
|
|
if err != nil {
|
|
t.Fatalf("unable to write tempfile for testing: %s", err)
|
|
}
|
|
|
|
err = f.Chmod(0755)
|
|
if err != nil {
|
|
t.Fatalf("unable to make tempfile executable for testing: %s", err)
|
|
}
|
|
|
|
err = f.Close()
|
|
if err != nil {
|
|
t.Fatalf("unable to close tempfile after writing: %s", err)
|
|
}
|
|
|
|
return f.Name()
|
|
}
|