mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
28 lines
451 B
Go
28 lines
451 B
Go
// +build json
|
|
|
|
package blackhole_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
. "v2ray.com/core/proxy/blackhole"
|
|
"v2ray.com/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()
|
|
}
|