-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration_test.go
182 lines (163 loc) · 4.26 KB
/
configuration_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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* ****************************************************************************
* Copyright 2021 51 Degrees Mobile Experts Limited (51degrees.com)
*
* 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 config
import (
"fmt"
"testing"
)
type Override struct {
Common `mapstructure:",squash"`
LocalFile string `mapstructure:"localFile"`
}
func TestCamelConvertEmpty(t *testing.T) {
i := ""
e := ""
if convert(i) != e {
t.Fatal("Camel convert not failed")
}
}
func TestCamelConvertNone(t *testing.T) {
i := "None"
e := "NONE"
if convert(i) != e {
t.Fatal("Camel convert none failed")
}
}
func TestCamelConvertSingle(t *testing.T) {
i := "LocalFile"
e := "LOCAL_FILE"
if convert(i) != e {
t.Fatal("Camel convert single failed")
}
}
func TestCamelConvertMultiple(t *testing.T) {
i := "AzureStorageAccount"
e := "AZURE_STORAGE_ACCOUNT"
if convert(i) != e {
t.Fatal("Camel convert multiple failed")
}
}
func TestLocalConfigurationSettings(t *testing.T) {
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.local.json", &c)
if err != nil {
t.Fatal(err)
}
if c.LocalFile == "" {
t.Error("Local file not set")
return
}
}
func TestLocalConfigurationEnvironment(t *testing.T) {
e := "TEST ENV LOCAL FILE"
t.Setenv("LOCAL_FILE", e)
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.local.json", &c)
if err != nil {
t.Fatal(err)
}
if c.LocalFile != e {
t.Error("Local file not expected value")
return
}
}
func TestAwsConfigurationSettingsTrue(t *testing.T) {
testAwsConfigurationSettings(t, true)
}
func TestAwsConfigurationSettingsFalse(t *testing.T) {
testAwsConfigurationSettings(t, false)
}
func testAwsConfigurationSettings(t *testing.T, expected bool) {
e := fmt.Sprintf("%t", expected)
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.aws."+e+".json", &c)
if err != nil {
t.Fatal(err)
}
if c.AwsEnabled != expected {
t.Errorf("AWS Enabled not '%t'", expected)
return
}
}
func TestAwsConfigurationEnvironmentTrue(t *testing.T) {
testAwsConfigurationEnvironment(t, true)
}
func TestAwsConfigurationEnvironmentFalse(t *testing.T) {
testAwsConfigurationEnvironment(t, false)
}
func testAwsConfigurationEnvironment(t *testing.T, expected bool) {
e := fmt.Sprintf("%t", expected)
t.Setenv("AWS_ENABLED", e)
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.none.json", &c)
if err != nil {
t.Fatal(err)
}
if c.AwsEnabled != expected {
t.Errorf("AWS Enabled not '%s'", e)
return
}
}
func TestGcpConfigurationSettings(t *testing.T) {
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.gcp.json", &c)
if err != nil {
t.Fatal(err)
}
if c.GcpProject == "" {
t.Error("GCP Project not set")
return
}
}
func TestGcpConfigurationEnvironment(t *testing.T) {
e := "PROJECT NAME"
t.Setenv("GCP_PROJECT", e)
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.none.json", &c)
if err != nil {
t.Fatal(err)
}
if c.GcpProject != e {
t.Error("GCP Project not expected value")
return
}
}
func TestAzureConfigurationSettings(t *testing.T) {
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.azure.json", &c)
if err != nil {
t.Fatal(err)
}
if c.AzureStorageAccount == "" || c.AzureStorageAccessKey == "" {
t.Error("Azure not set")
return
}
}
func TestAzureConfigurationEnvironment(t *testing.T) {
ea := "ACCOUNT"
ek := "KEY"
t.Setenv("AZURE_STORAGE_ACCOUNT", ea)
t.Setenv("AZURE_STORAGE_ACCESS_KEY", ek)
c := Override{}
err := LoadConfig([]string{"."}, "appsettings.test.none.json", &c)
if err != nil {
t.Fatal(err)
}
if c.AzureStorageAccount != ea || c.AzureStorageAccessKey != ek {
t.Error("Azure not expected value")
return
}
}