2021-06-19 08:45:43 -04:00
|
|
|
package v4_test
|
2019-02-10 13:04:11 -05:00
|
|
|
|
|
|
|
import (
|
2021-06-19 08:04:50 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
|
2021-06-19 08:28:20 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
|
2021-06-19 08:45:43 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/v4"
|
2019-02-10 13:04:11 -05:00
|
|
|
"testing"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/blackhole"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHTTPResponseJSON(t *testing.T) {
|
2021-06-19 08:04:50 -04:00
|
|
|
creator := func() cfgcommon.Buildable {
|
2021-06-19 08:45:43 -04:00
|
|
|
return new(v4.BlackholeConfig)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
2021-06-19 08:28:20 -04:00
|
|
|
testassist.RunMultiTestCase(t, []testassist.TestCase{
|
2019-02-10 13:04:11 -05:00
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"response": {
|
|
|
|
"type": "http"
|
|
|
|
}
|
|
|
|
}`,
|
2021-06-19 08:28:20 -04:00
|
|
|
Parser: testassist.LoadJSON(creator),
|
2019-02-10 13:04:11 -05:00
|
|
|
Output: &blackhole.Config{
|
|
|
|
Response: serial.ToTypedMessage(&blackhole.HTTPResponse{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Input: `{}`,
|
2021-06-19 08:28:20 -04:00
|
|
|
Parser: testassist.LoadJSON(creator),
|
2019-02-10 13:04:11 -05:00
|
|
|
Output: &blackhole.Config{},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|