forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
67 lines (56 loc) · 2 KB
/
main_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
package main
import (
"os"
"testing"
"github.com/prebid/prebid-server/config"
"github.com/stretchr/testify/assert"
"github.com/spf13/viper"
)
func compareStrings(t *testing.T, message string, expect string, actual string) {
if expect != actual {
t.Errorf(message, expect, actual)
}
}
// forceEnv sets an environment variable to a certain value, and return a deferable function to reset it to the original value.
func forceEnv(t *testing.T, key string, val string) func() {
orig, set := os.LookupEnv(key)
err := os.Setenv(key, val)
if err != nil {
t.Fatalf("Error setting environment %s", key)
}
if set {
return func() {
if os.Setenv(key, orig) != nil {
t.Fatalf("Error unsetting environment %s", key)
}
}
}
return func() {
if os.Unsetenv(key) != nil {
t.Fatalf("Error unsetting environment %s", key)
}
}
}
// Test the viper setup
func TestViperInit(t *testing.T) {
v := viper.New()
config.SetupViper(v, "")
compareStrings(t, "Viper error: external_url expected to be %s, found %s", "http://localhost:8000", v.Get("external_url").(string))
compareStrings(t, "Viper error: adapters.pulsepoint.endpoint expected to be %s, found %s", "http://bid.contextweb.com/header/s/ortb/prebid-s2s", v.Get("adapters.pulsepoint.endpoint").(string))
}
func TestViperEnv(t *testing.T) {
v := viper.New()
config.SetupViper(v, "")
port := forceEnv(t, "PBS_PORT", "7777")
defer port()
endpt := forceEnv(t, "PBS_ADAPTERS_PUBMATIC_ENDPOINT", "not_an_endpoint")
defer endpt()
ttl := forceEnv(t, "PBS_HOST_COOKIE_TTL_DAYS", "60")
defer ttl()
ipv4Networks := forceEnv(t, "PBS_REQUEST_VALIDATION_IPV4_PRIVATE_NETWORKS", "1.1.1.1/24 2.2.2.2/24")
defer ipv4Networks()
assert.Equal(t, 7777, v.Get("port"), "Basic Config")
assert.Equal(t, "not_an_endpoint", v.Get("adapters.pubmatic.endpoint"), "Nested Config")
assert.Equal(t, 60, v.Get("host_cookie.ttl_days"), "Config With Underscores")
assert.ElementsMatch(t, []string{"1.1.1.1/24", "2.2.2.2/24"}, v.Get("request_validation.ipv4_private_networks"), "Arrays")
}