2016-08-08 17:53:07 -04:00
|
|
|
// +build json
|
|
|
|
|
2016-07-24 07:40:27 -04:00
|
|
|
package blackhole_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
. "v2ray.com/core/proxy/blackhole"
|
|
|
|
"v2ray.com/core/testing/assert"
|
2016-07-24 07:40:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
2016-09-22 06:01:36 -04:00
|
|
|
assert.Int(int(config.Response.Type)).Equals(int(Response_HTTP))
|
|
|
|
response, err := config.Response.GetInternalResponse()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
_, ok := response.(*HTTPResponse)
|
2016-07-24 07:40:27 -04:00
|
|
|
assert.Bool(ok).IsTrue()
|
|
|
|
}
|