Xray-core/infra/conf/http_test.go

40 lines
686 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package conf_test
import (
"testing"
2020-12-04 03:36:16 +02:00
. "github.com/xtls/xray-core/infra/conf"
"github.com/xtls/xray-core/proxy/http"
2020-11-25 13:01:53 +02:00
)
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,
},
},
})
}