-
Notifications
You must be signed in to change notification settings - Fork 2
/
builder_test.go
121 lines (115 loc) · 3.72 KB
/
builder_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package engine
import (
"github.com/spf13/viper"
"strings"
"testing"
)
func TestGetConfiguredVersion(t *testing.T) {
type args struct {
override string
allowCached bool
}
tests := []struct {
name string
args args
configureVersion string
want string
}{
{name: "return overridden version", args: args{override: "2.0.0", allowCached: false}, want: "2.0.0"},
{name: "return configured version", args: args{override: "", allowCached: false}, configureVersion: "1.2.3", want: "1.2.3"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.configureVersion != "" {
viper.Set("version", tt.configureVersion)
}
t.Cleanup(func() {
viper.Set("version", nil)
})
if got := GetConfiguredVersion(tt.args.override, tt.args.allowCached); got != tt.want {
t.Errorf("GetConfiguredVersion() = %v, want %v", got, tt.want)
}
})
}
}
func TestGetConfiguredType(t *testing.T) {
type args struct {
override string
}
tests := []struct {
name string
args args
configureType string
want EngineType
}{
{name: "return overridden engine type", args: args{override: "docker"}, want: "docker"},
{name: "return configured engine type", args: args{override: ""}, configureType: "jvm", want: "jvm"},
{name: "return default engine type", args: args{override: ""}, want: defaultEngineType},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.configureType != "" {
viper.Set("engine", tt.configureType)
}
t.Cleanup(func() {
viper.Set("engine", nil)
})
if got := GetConfiguredType(tt.args.override); got != tt.want {
t.Errorf("GetConfiguredType() = %v, want %v", got, tt.want)
}
})
}
}
func TestSanitiseVersionOutput(t *testing.T) {
type args struct {
s string
}
tests := []struct {
name string
args args
want string
}{
{name: "remove version", args: args{s: "Version: 1.2.3"}, want: "1.2.3"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := SanitiseVersionOutput(tt.args.s); got != tt.want {
t.Errorf("SanitiseVersionOutput() = %v, want %v", got, tt.want)
}
})
}
}
func TestBuildEnvFromParent(t *testing.T) {
type args struct {
options StartOptions
includeHome bool
env []string
}
tests := []struct {
name string
args args
wantPrefixes []string
}{
{name: "should include home", args: args{options: StartOptions{LogLevel: "WARN"}, includeHome: true, env: []string{"HOME=/home/example"}}, wantPrefixes: []string{"HOME="}},
{name: "should exclude home", args: args{options: StartOptions{LogLevel: "WARN"}, includeHome: false, env: []string{"HOME=/home/example"}}, wantPrefixes: []string{""}},
{name: "should set log level", args: args{options: StartOptions{LogLevel: "WARN"}, includeHome: false, env: []string{}}, wantPrefixes: []string{"IMPOSTER_LOG_LEVEL=WARN"}},
{name: "should pass through imposter env var", args: args{options: StartOptions{LogLevel: "WARN"}, includeHome: false, env: []string{"IMPOSTER_TEST=foo"}}, wantPrefixes: []string{"IMPOSTER_TEST=foo"}},
{name: "should pass through log level env var", args: args{options: StartOptions{LogLevel: "WARN"}, includeHome: false, env: []string{"IMPOSTER_LOG_LEVEL=ERROR"}}, wantPrefixes: []string{"IMPOSTER_LOG_LEVEL=ERROR"}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := buildEnvFromParent(tt.args.env, tt.args.options, tt.args.includeHome)
found := false
for _, prefix := range tt.wantPrefixes {
for _, env := range got {
if strings.HasPrefix(env, prefix) {
found = true
}
}
}
if !found {
t.Errorf("buildEnvFromParent() = %v, wantPrefixes %v", got, tt.wantPrefixes)
}
})
}
}