mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 02:16:10 -05:00
42 lines
613 B
Go
42 lines
613 B
Go
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)
|
|
}
|