You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/proxy/blackhole/config_json_test.go

28 lines
477 B

// +build json
package blackhole_test
import (
"encoding/json"
"testing"
. "github.com/v2ray/v2ray-core/proxy/blackhole"
"github.com/v2ray/v2ray-core/testing/assert"
)
func TestHTTPResponseJSON(t *testing.T) {
assert := assert.On(t)
rawJson := `{
"response": {
"type": "http"
}
}`
config := new(Config)
err := json.Unmarshal([]byte(rawJson), config)
assert.Error(err).IsNil()
_, ok := config.Response.(*HTTPResponse)
assert.Bool(ok).IsTrue()
}