mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
27 lines
653 B
Go
27 lines
653 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/unit"
|
|
)
|
|
|
|
func TestParseOS(t *testing.T) {
|
|
assert := unit.Assert(t)
|
|
|
|
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) {
|
|
assert := unit.Assert(t)
|
|
|
|
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)
|
|
}
|