1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-15 17:54:37 -04:00
v2fly/common/platform/platform_test.go

42 lines
613 B
Go
Raw Normal View History

2017-05-25 19:11:38 -04:00
package platform_test
import (
"testing"
. "v2ray.com/core/common/platform"
"v2ray.com/core/testing/assert"
)
func TestNormalizeEnvName(t *testing.T) {
assert := assert.On(t)
cases := []struct {
input string
output string
}{
{
input: "a",
output: "A",
},
{
input: "a.a",
output: "A_A",
},
{
input: "A.A.B",
output: "A_A_B",
},
}
for _, test := range cases {
assert.String(NormalizeEnvName(test.input)).Equals(test.output)
}
}
func TestEnvFlag(t *testing.T) {
assert := assert.On(t)
assert.Int(EnvFlag{
Name: "xxxxx.y",
}.GetValueAsInt(10)).Equals(10)
}