mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 16:57:46 -04:00
40 lines
664 B
Go
40 lines
664 B
Go
|
package conf_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "v2ray.com/core/infra/conf"
|
||
|
"v2ray.com/core/proxy/http"
|
||
|
)
|
||
|
|
||
|
func TestHttpServerConfig(t *testing.T) {
|
||
|
creator := func() Buildable {
|
||
|
return new(HttpServerConfig)
|
||
|
}
|
||
|
|
||
|
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,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|