mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 10:20:36 +02:00
e34daae0cf
* Refactor: move cncd/pipeline/ to pipeline/ * Refactor: move pipeline/pipeline/ to pipeline/
55 lines
932 B
Go
55 lines
932 B
Go
package compiler
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"testing"
|
|
|
|
"github.com/kr/pretty"
|
|
)
|
|
|
|
func TestGenerateScriptPosix(t *testing.T) {
|
|
testdata := []struct {
|
|
from []string
|
|
want string
|
|
}{
|
|
{
|
|
from: []string{"echo ${PATH}", "go build", "go test"},
|
|
want: `
|
|
if [ -n "$CI_NETRC_MACHINE" ]; then
|
|
cat <<EOF > $HOME/.netrc
|
|
machine $CI_NETRC_MACHINE
|
|
login $CI_NETRC_USERNAME
|
|
password $CI_NETRC_PASSWORD
|
|
EOF
|
|
chmod 0600 $HOME/.netrc
|
|
fi
|
|
unset CI_NETRC_USERNAME
|
|
unset CI_NETRC_PASSWORD
|
|
unset CI_SCRIPT
|
|
unset DRONE_NETRC_USERNAME
|
|
unset DRONE_NETRC_PASSWORD
|
|
|
|
echo + "echo \${PATH}"
|
|
echo ${PATH}
|
|
|
|
echo + "go build"
|
|
go build
|
|
|
|
echo + "go test"
|
|
go test
|
|
|
|
`,
|
|
},
|
|
}
|
|
for _, test := range testdata {
|
|
script := generateScriptPosix(test.from)
|
|
decoded, _ := base64.StdEncoding.DecodeString(script)
|
|
got := string(decoded)
|
|
|
|
if got != test.want {
|
|
t.Errorf("Want encoded script for %s", test.from)
|
|
pretty.Ldiff(t, got, test.want)
|
|
}
|
|
}
|
|
}
|