1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-20 20:24:15 -04:00
v2fly/infra/conf/v4/http_test.go

42 lines
865 B
Go
Raw Normal View History

package v4_test
2019-02-10 13:04:11 -05:00
import (
2021-10-28 06:34:19 -04:00
"testing"
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon/testassist"
v4 "github.com/v2fly/v2ray-core/v5/infra/conf/v4"
"github.com/v2fly/v2ray-core/v5/proxy/http"
2019-02-10 13:04:11 -05:00
)
func TestHTTPServerConfig(t *testing.T) {
2021-06-19 08:04:50 -04:00
creator := func() cfgcommon.Buildable {
return new(v4.HTTPServerConfig)
2019-02-10 13:04:11 -05:00
}
2021-06-19 08:28:20 -04:00
testassist.RunMultiTestCase(t, []testassist.TestCase{
2019-02-10 13:04:11 -05:00
{
Input: `{
"timeout": 10,
"accounts": [
{
"user": "my-username",
"pass": "my-password"
}
],
"allowTransparent": true,
"userLevel": 1
}`,
2021-06-19 08:28:20 -04:00
Parser: testassist.LoadJSON(creator),
2019-02-10 13:04:11 -05:00
Output: &http.ServerConfig{
Accounts: map[string]string{
"my-username": "my-password",
},
AllowTransparent: true,
UserLevel: 1,
Timeout: 10,
},
},
})
}