mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
9945e27c01
close #1609
140 lines
4.3 KiB
Go
140 lines
4.3 KiB
Go
// Copyright 2022 Woodpecker 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 settings
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func TestParamsToEnv(t *testing.T) {
|
|
from := map[string]interface{}{
|
|
"skip": nil,
|
|
"string": "stringz",
|
|
"int": 1,
|
|
"float": 1.2,
|
|
"bool": true,
|
|
"slice": []int{1, 2, 3},
|
|
"map": map[string]interface{}{"hello": "world"},
|
|
"complex": []struct{ Name string }{{"Jack"}, {"Jill"}},
|
|
"complex2": struct{ Name string }{"Jack"},
|
|
"from.address": "noreply@example.com",
|
|
"tags": stringsToInterface("next", "latest"),
|
|
"tag": stringsToInterface("next"),
|
|
"my_secret": map[string]interface{}{"from_secret": "secret_token"},
|
|
"UPPERCASE_SECRET": map[string]interface{}{"from_secret": "SECRET_TOKEN"},
|
|
}
|
|
want := map[string]string{
|
|
"PLUGIN_STRING": "stringz",
|
|
"PLUGIN_INT": "1",
|
|
"PLUGIN_FLOAT": "1.2",
|
|
"PLUGIN_BOOL": "true",
|
|
"PLUGIN_SLICE": "1,2,3",
|
|
"PLUGIN_MAP": `{"hello":"world"}`,
|
|
"PLUGIN_COMPLEX": `[{"name":"Jack"},{"name":"Jill"}]`,
|
|
"PLUGIN_COMPLEX2": `{"name":"Jack"}`,
|
|
"PLUGIN_FROM_ADDRESS": "noreply@example.com",
|
|
"PLUGIN_TAG": "next",
|
|
"PLUGIN_TAGS": "next,latest",
|
|
"PLUGIN_MY_SECRET": "FooBar",
|
|
"PLUGIN_UPPERCASE_SECRET": "FooBar",
|
|
}
|
|
secrets := map[string]string{
|
|
"secret_token": "FooBar",
|
|
}
|
|
got := map[string]string{}
|
|
assert.NoError(t, ParamsToEnv(from, got, secrets))
|
|
assert.EqualValues(t, want, got, "Problem converting plugin parameters to environment variables")
|
|
|
|
// handle edge cases (#1609)
|
|
got = map[string]string{}
|
|
assert.NoError(t, ParamsToEnv(map[string]interface{}{"a": []interface{}{"a", nil}}, got, nil))
|
|
assert.EqualValues(t, map[string]string{"PLUGIN_A": "a,"}, got)
|
|
}
|
|
|
|
func TestSanitizeParamKey(t *testing.T) {
|
|
assert.EqualValues(t, "PLUGIN_DRY_RUN", sanitizeParamKey("dry-run"))
|
|
assert.EqualValues(t, "PLUGIN_DRY_RUN", sanitizeParamKey("dry_Run"))
|
|
assert.EqualValues(t, "PLUGIN_DRY_RUN", sanitizeParamKey("dry.run"))
|
|
}
|
|
|
|
func TestYAMLToParamsToEnv(t *testing.T) {
|
|
fromYAML := []byte(`skip: ~
|
|
string: stringz
|
|
int: 1
|
|
float: 1.2
|
|
bool: true
|
|
slice: [1, 2, 3]
|
|
my_secret:
|
|
from_secret: secret_token
|
|
map:
|
|
key: "value"
|
|
entry2:
|
|
- "a"
|
|
- "b"
|
|
- 3
|
|
secret:
|
|
from_secret: secret_token
|
|
list.map:
|
|
- registry: https://codeberg.org
|
|
username: "6543"
|
|
password:
|
|
from_secret: cb_password
|
|
`)
|
|
var from map[string]interface{}
|
|
err := yaml.Unmarshal(fromYAML, &from)
|
|
assert.NoError(t, err)
|
|
|
|
want := map[string]string{
|
|
"PLUGIN_STRING": "stringz",
|
|
"PLUGIN_INT": "1",
|
|
"PLUGIN_FLOAT": "1.2",
|
|
"PLUGIN_BOOL": "true",
|
|
"PLUGIN_SLICE": "1,2,3",
|
|
"PLUGIN_MY_SECRET": "FooBar",
|
|
"PLUGIN_MAP": `{"entry2":["a","b",3],"key":"value","secret":"FooBar"}`,
|
|
"PLUGIN_LIST_MAP": `[{"password":"geheim","registry":"https://codeberg.org","username":"6543"}]`,
|
|
}
|
|
secrets := map[string]string{
|
|
"secret_token": "FooBar",
|
|
"cb_password": "geheim",
|
|
}
|
|
got := map[string]string{}
|
|
assert.NoError(t, ParamsToEnv(from, got, secrets))
|
|
assert.EqualValues(t, want, got, "Problem converting plugin parameters to environment variables")
|
|
}
|
|
|
|
func TestYAMLToParamsToEnvError(t *testing.T) {
|
|
fromYAML := []byte(`my_secret:
|
|
from_secret: not_a_secret
|
|
`)
|
|
var from map[string]interface{}
|
|
err := yaml.Unmarshal(fromYAML, &from)
|
|
assert.NoError(t, err)
|
|
secrets := map[string]string{
|
|
"secret_token": "FooBar",
|
|
}
|
|
assert.Error(t, ParamsToEnv(from, make(map[string]string), secrets))
|
|
}
|
|
|
|
func stringsToInterface(val ...string) []interface{} {
|
|
res := make([]interface{}, len(val))
|
|
for i := range val {
|
|
res[i] = val[i]
|
|
}
|
|
return res
|
|
}
|