| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package v4_test
- import (
- "github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
- "github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
- "github.com/v2fly/v2ray-core/v4/infra/conf/v4"
- "testing"
- "github.com/v2fly/v2ray-core/v4/proxy/http"
- )
- func TestHTTPServerConfig(t *testing.T) {
- creator := func() cfgcommon.Buildable {
- return new(v4.HTTPServerConfig)
- }
- testassist.RunMultiTestCase(t, []testassist.TestCase{
- {
- Input: `{
- "timeout": 10,
- "accounts": [
- {
- "user": "my-username",
- "pass": "my-password"
- }
- ],
- "allowTransparent": true,
- "userLevel": 1
- }`,
- Parser: testassist.LoadJSON(creator),
- Output: &http.ServerConfig{
- Accounts: map[string]string{
- "my-username": "my-password",
- },
- AllowTransparent: true,
- UserLevel: 1,
- Timeout: 10,
- },
- },
- })
- }
|