cloudinit/system/env_test.go

56 lines
867 B
Go
Raw Normal View History

2014-11-22 02:43:48 +03:00
package system
import (
"testing"
)
func TestServiceContents(t *testing.T) {
2014-11-22 02:43:48 +03:00
tests := []struct {
Config interface{}
Contents string
}{
{
struct{}{},
"",
},
{
struct {
A string `env:"A"`
B int `env:"B"`
C bool `env:"C"`
D float64 `env:"D"`
}{
"hi", 1, true, 0.12345,
},
`[Service]
Environment="A=hi"
Environment="B=1"
Environment="C=true"
Environment="D=0.12345"
`,
},
{
struct {
A float64 `env:"A"`
B float64 `env:"B"`
C float64 `env:"C"`
D float64 `env:"D"`
}{
0.000001, 1, 0.9999999, 0.1,
},
`[Service]
Environment="A=1e-06"
Environment="B=1"
Environment="C=0.9999999"
Environment="D=0.1"
`,
},
}
for _, tt := range tests {
if c := serviceContents(tt.Config); c != tt.Contents {
2014-11-22 02:43:48 +03:00
t.Errorf("bad contents (%+v): want %q, got %q", tt, tt.Contents, c)
}
}
}