-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathos_test.go
41 lines (33 loc) · 1023 Bytes
/
os_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
package main
import (
"os"
. "gopkg.in/check.v1"
)
type OsSuite struct {
BaseSuite
EnvironmentVariable string
EnvDefaultValue string
EnvSetValue string
}
var _ = Suite(&OsSuite{
EnvironmentVariable: "OS_TEST_ENV_VARIABLE",
EnvDefaultValue: "this is the default value",
EnvSetValue: "qqq",
})
func (s *OsSuite) SetUpTest(c *C) {
_ = os.Setenv(s.EnvironmentVariable, s.EnvSetValue)
}
func (s *OsSuite) TearDownTest(c *C) {
_ = os.Unsetenv(s.EnvironmentVariable)
}
func (s *OsSuite) TestGetEnvWithDefaultValueSet(c *C) {
grabbedValue := GetEnvWithDefault(s.EnvironmentVariable, s.EnvDefaultValue)
c.Assert(grabbedValue, Not(Equals), s.EnvDefaultValue)
c.Assert(grabbedValue, Equals, s.EnvSetValue)
}
func (s *OsSuite) TestGetEnvWithDefaultValueUnset(c *C) {
_ = os.Unsetenv(s.EnvironmentVariable)
grabbedValue := GetEnvWithDefault(s.EnvironmentVariable, s.EnvDefaultValue)
c.Assert(grabbedValue, Not(Equals), s.EnvSetValue)
c.Assert(grabbedValue, Equals, s.EnvDefaultValue)
}