mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
51 lines
915 B
Go
51 lines
915 B
Go
package db_lib
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/ansible-semaphore/semaphore/util"
|
|
)
|
|
|
|
// contains checks if a slice contains a specific string
|
|
func contains(slice []string, item string) bool {
|
|
for _, s := range slice {
|
|
if s == item {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func TestGetEnvironmentVars(t *testing.T) {
|
|
|
|
os.Setenv("SEMAPHORE_TEST", "test123")
|
|
os.Setenv("SEMAPHORE_TEST2", "test222")
|
|
os.Setenv("PASSWORD", "test222")
|
|
|
|
util.Config = &util.ConfigType{
|
|
ForwardedEnvVars: []string{"SEMAPHORE_TEST"},
|
|
EnvVars: map[string]string{
|
|
"ANSIBLE_FORCE_COLOR": "False",
|
|
},
|
|
}
|
|
|
|
res := getEnvironmentVars()
|
|
|
|
expected := []string{
|
|
"SEMAPHORE_TEST=test123",
|
|
"ANSIBLE_FORCE_COLOR=False",
|
|
}
|
|
|
|
if len(res) != len(expected) {
|
|
t.Errorf("Expected %v, got %v", expected, res)
|
|
}
|
|
|
|
for _, e := range expected {
|
|
|
|
if !contains(res, e) {
|
|
t.Errorf("Expected %v, got %v", expected, res)
|
|
}
|
|
}
|
|
}
|