2019-02-10 13:04:11 -05:00
|
|
|
package conf_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
. "github.com/v2fly/v2ray-core/v4/infra/conf"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/http"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
func TestHTTPServerConfig(t *testing.T) {
|
2019-02-10 13:04:11 -05:00
|
|
|
creator := func() Buildable {
|
2020-10-11 07:22:46 -04:00
|
|
|
return new(HTTPServerConfig)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
runMultiTestCase(t, []TestCase{
|
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"timeout": 10,
|
|
|
|
"accounts": [
|
|
|
|
{
|
|
|
|
"user": "my-username",
|
|
|
|
"pass": "my-password"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"allowTransparent": true,
|
|
|
|
"userLevel": 1
|
|
|
|
}`,
|
|
|
|
Parser: loadJSON(creator),
|
|
|
|
Output: &http.ServerConfig{
|
|
|
|
Accounts: map[string]string{
|
|
|
|
"my-username": "my-password",
|
|
|
|
},
|
|
|
|
AllowTransparent: true,
|
|
|
|
UserLevel: 1,
|
|
|
|
Timeout: 10,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|