1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-19 10:54:15 -04:00
v2fly/tools/build/env_test.go

28 lines
696 B
Go
Raw Normal View History

2015-10-17 18:50:51 -04:00
package main
import (
"testing"
2015-12-02 11:27:55 -05:00
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
2015-10-17 18:50:51 -04:00
)
func TestParseOS(t *testing.T) {
v2testing.Current(t)
2015-10-17 18:50:51 -04:00
assert.Pointer(parseOS("windows")).Equals(Windows)
assert.Pointer(parseOS("macos")).Equals(MacOS)
assert.Pointer(parseOS("linux")).Equals(Linux)
assert.Pointer(parseOS("test")).Equals(UnknownOS)
}
func TestParseArch(t *testing.T) {
v2testing.Current(t)
2015-10-17 18:50:51 -04:00
assert.Pointer(parseArch("x86")).Equals(X86)
assert.Pointer(parseArch("x64")).Equals(Amd64)
assert.Pointer(parseArch("arm")).Equals(Arm)
assert.Pointer(parseArch("arm64")).Equals(Arm64)
assert.Pointer(parseArch("test")).Equals(UnknownArch)
}