mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
f357245f93
https://github.com/XTLS/Xray-core/pull/3751#issuecomment-2329564039 --------- Co-authored-by: 风扇滑翔翼 <Fangliding.fshxy@outlook.com>
152 lines
3.2 KiB
Go
152 lines
3.2 KiB
Go
package conf_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
. "github.com/xtls/xray-core/infra/conf"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func TestSocketConfig(t *testing.T) {
|
|
createParser := func() func(string) (proto.Message, error) {
|
|
return func(s string) (proto.Message, error) {
|
|
config := new(SocketConfig)
|
|
if err := json.Unmarshal([]byte(s), config); err != nil {
|
|
return nil, err
|
|
}
|
|
return config.Build()
|
|
}
|
|
}
|
|
|
|
// test "tcpFastOpen": true, queue length 256 is expected. other parameters are tested here too
|
|
expectedOutput := &internet.SocketConfig{
|
|
Mark: 1,
|
|
Tfo: 256,
|
|
DomainStrategy: internet.DomainStrategy_USE_IP,
|
|
DialerProxy: "tag",
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"mark": 1,
|
|
"tcpFastOpen": true,
|
|
"domainStrategy": "UseIP",
|
|
"dialerProxy": "tag"
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != 256 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be 256")
|
|
}
|
|
|
|
// test "tcpFastOpen": false, disabled TFO is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: -1,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"tcpFastOpen": false
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != 0 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be 0")
|
|
}
|
|
|
|
// test "tcpFastOpen": 65535, queue length 65535 is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: 65535,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"tcpFastOpen": 65535
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != 65535 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be 65535")
|
|
}
|
|
|
|
// test "tcpFastOpen": -65535, disable TFO is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: -65535,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"tcpFastOpen": -65535
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != 0 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be 0")
|
|
}
|
|
|
|
// test "tcpFastOpen": 0, no operation is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: 0,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"tcpFastOpen": 0
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != -1 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be -1")
|
|
}
|
|
|
|
// test omit "tcpFastOpen", no operation is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: 0,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != -1 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be -1")
|
|
}
|
|
|
|
// test "tcpFastOpen": null, no operation is expected
|
|
expectedOutput = &internet.SocketConfig{
|
|
Mark: 0,
|
|
Tfo: 0,
|
|
}
|
|
runMultiTestCase(t, []TestCase{
|
|
{
|
|
Input: `{
|
|
"tcpFastOpen": null
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: expectedOutput,
|
|
},
|
|
})
|
|
if expectedOutput.ParseTFOValue() != -1 {
|
|
t.Fatalf("unexpected parsed TFO value, which should be -1")
|
|
}
|
|
}
|