-
Notifications
You must be signed in to change notification settings - Fork 9
/
get_env_with_test.go
113 lines (93 loc) · 2.48 KB
/
get_env_with_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
package shh
import (
"fmt"
"os"
)
// GetEnvWithDefault
func ExampleGetEnvWithDefault_notSet() {
os.Clearenv()
fmt.Println(GetEnvWithDefault("SHH_TEST_ENV", "bar"))
// Output: bar
}
func ExampleGetEnvWithDefault_empty() {
os.Setenv("SHH_TEST_ENV", "")
fmt.Println(GetEnvWithDefault("SHH_TEST_ENV", "bar"))
// Output:
// bar
}
func ExampleGetEnvWithDefault_notDefault() {
os.Setenv("SHH_TEST_ENV", "foo")
fmt.Println(GetEnvWithDefault("SHH_TEST_ENV", "bar"))
// Output: foo
}
func ExampleGetEnvWithDefault_default() {
os.Setenv("SHH_TEST_ENV", "bar")
fmt.Println(GetEnvWithDefault("SHH_TEST_ENV", "bar"))
// Output: bar
}
// GetEnvWithDefaultInt
func ExampleGetEnvWithDefaultInt_notSet() {
os.Clearenv()
fmt.Println(GetEnvWithDefaultInt("SHH_TEST_ENV", 42))
// Output: 42
}
func ExampleGetEnvWithDefaultInt_empty() {
os.Setenv("SHH_TEST_ENV", "")
fmt.Println(GetEnvWithDefaultInt("SHH_TEST_ENV", 42))
// Output: 42
}
func ExampleGetEnvWithDefaultInt_notDefault() {
os.Setenv("SHH_TEST_ENV", "7")
fmt.Println(GetEnvWithDefaultInt("SHH_TEST_ENV", 42))
// Output: 7
}
func ExampleGetEnvWithDefaultInt_default() {
os.Setenv("SHH_TEST_ENV", "42")
fmt.Println(GetEnvWithDefaultInt("SHH_TEST_ENV", 42))
// Output: 42
}
// GetEnvWithDefaultDuration
func ExampleGetEnvWithDefaultDuration_notSet() {
os.Clearenv()
fmt.Println(GetEnvWithDefaultDuration("SHH_TEST_ENV", "42s"))
// Output: 42s
}
func ExampleGetEnvWithDefaultDuration_empty() {
os.Setenv("SHH_TEST_ENV", "")
fmt.Println(GetEnvWithDefaultDuration("SHH_TEST_ENV", "42s"))
// Output: 42s
}
func ExampleGetEnvWithDefaultDuration_notDefault() {
os.Setenv("SHH_TEST_ENV", "7s")
fmt.Println(GetEnvWithDefaultDuration("SHH_TEST_ENV", "42s"))
// Output: 7s
}
func ExampleGetEnvWithDefaultDuration_default() {
os.Setenv("SHH_TEST_ENV", "42s")
fmt.Println(GetEnvWithDefaultDuration("SHH_TEST_ENV", "42s"))
// Output: 42s
}
// GetEnvWithDefaultStrings
func ExampleGetEnvWithDefaultStrings_empty() {
os.Setenv("SHH_TEST_ENV", "")
fmt.Println(len(GetEnvWithDefaultStrings("SHH_TEST_ENV", "")))
// Output: 0
}
func ExampleGetEnvWithDefaultStrings_single() {
os.Setenv("SHH_TEST_ENV", "foo")
v := GetEnvWithDefaultStrings("SHH_TEST_ENV", "")
fmt.Println(len(v))
fmt.Println(v[0])
// Output: 1
// foo
}
func ExampleGetEnvWithDefaultStrings_multiple() {
os.Setenv("SHH_TEST_ENV", "foo,bar")
v := GetEnvWithDefaultStrings("SHH_TEST_ENV", "")
fmt.Println(len(v))
fmt.Println(v[0])
fmt.Println(v[1])
// Output: 2
// bar
// foo
}