2021-06-19 08:45:43 -04:00
|
|
|
package v4_test
|
2019-02-10 13:04:11 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
v4 "github.com/v2fly/v2ray-core/v5/infra/conf/v4"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestBufferSize(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Input int32
|
|
|
|
Output int32
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Input: 0,
|
|
|
|
Output: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Input: -1,
|
|
|
|
Output: -1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Input: 1,
|
|
|
|
Output: 1024,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range cases {
|
2020-10-11 07:22:46 -04:00
|
|
|
bs := c.Input
|
2021-06-19 08:45:43 -04:00
|
|
|
pConf := v4.Policy{
|
2019-02-10 13:04:11 -05:00
|
|
|
BufferSize: &bs,
|
|
|
|
}
|
|
|
|
p, err := pConf.Build()
|
|
|
|
common.Must(err)
|
|
|
|
if p.Buffer.Connection != c.Output {
|
|
|
|
t.Error("expected buffer size ", c.Output, " but got ", p.Buffer.Connection)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|