コード例 #1
0
ファイル: config_test.go プロジェクト: jrconlin/pushgo
[discovery]

[balancer]
type = "static"
`

var env = envconf.New([]string{
	"PUSHGO_DEFAULT_CURRENT_HOST=push.services.mozilla.com",
	"pushgo_default_use_aws_host=0",
	"PushGo_WebSocket_Origins=https://push.services.mozilla.com",
	"PUSHGO_WEBSOCKET_LISTENER_ADDR=",
	"PUSHGO_WEBSOCKET_LISTENER_MAX_CONNECTIONS=25000",
	"pushgo_endpoint_listener_addr=",
	"pushgo_endpoint_listener_max_connections=6000",
	"PUSHGO_logging_TYPE=stdout",
	"pushgo_LOGGING_FORMAT=text",
	"pushgo_logging_FILTER=0",
	"PUSHGO_PROPPING_TYPE=udp",
	"PUSHGO_PROPPING_URL=http://push.services.mozilla.com/ping",
	"PushGo_Router_Bucket_Size=15",
	"PUSHGO_ROUTER_LISTENER_ADDR=",
	"PUSHGO_ROUTER_LISTENER_MAX_CONNECTIONS=12000",
	"PUSHGO_ENDPOINT_MAX_DATA_LEN=512",
	"PUSHGO_BALANCER_TYPE=none",
})

func TestConfigFile(t *testing.T) {
	var configFile ConfigFile
	if _, err := toml.Decode(configSource, &configFile); err != nil {
		t.Fatalf("Error decoding config: %s", err)
	}
コード例 #2
0
ファイル: config_test.go プロジェクト: shihuacai1989/pushgo
    [router.listener]
    addr = ":3000"
    max_connections = 6000

[discovery]
`

var env = envconf.New([]string{
	"PUSHGO_DEFAULT_CURRENT_HOST=push.services.mozilla.com",
	"pushgo_default_use_aws=0",
	"PushGo_Default_Origins=https://push.services.mozilla.com",
	"PUSHGO_DEFAULT_WS_ADDR=",
	"PUSHGO_DEFAULT_WS_MAX_CONNS=25000",
	"pushgo_default_endpoint_addr=",
	"pushgo_default_endpoint_max_conns=6000",
	"PUSHGO_logging_TYPE=stdout",
	"pushgo_LOGGING_FORMAT=text",
	"pushgo_logging_FILTER=0",
	"PUSHGO_PROPPING_TYPE=udp",
	"PUSHGO_PROPPING_URL=http://push.services.mozilla.com/ping",
	"PushGo_Router_Bucket_Size=15",
	"PushGo_Router_Pool_Size=250",
	"PUSHGO_ROUTER_LISTENER_ADDR=",
	"PUSHGO_ROUTER_LISTENER_MAX_CONNS=12000",
})

func TestConfigFile(t *testing.T) {
	var configFile ConfigFile
	if _, err := toml.Decode(configSource, &configFile); err != nil {
		t.Fatalf("Error decoding config: %s", err)
	}
	app, err := LoadApplication(configFile, env, 0)