加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
erpc_test.go 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
andeyalee 提交于 2019-11-14 16:48 . chore: rename repo to erpc
package erpc_test
import (
"testing"
"time"
"github.com/henrylee2cn/erpc/v6"
)
func panic_call(erpc.CallCtx, *interface{}) (interface{}, *erpc.Status) {
panic("panic_call")
}
func panic_push(erpc.PushCtx, *interface{}) *erpc.Status {
panic("panic_push")
}
func TestPanic(t *testing.T) {
srv := erpc.NewPeer(erpc.PeerConfig{
CountTime: true,
ListenPort: 9090,
})
srv.RouteCallFunc(panic_call)
srv.RoutePushFunc(panic_push)
go srv.ListenAndServe()
time.Sleep(2 * time.Second)
cli := erpc.NewPeer(erpc.PeerConfig{})
defer cli.Close()
sess, stat := cli.Dial(":9090")
if !stat.OK() {
t.Fatal(stat)
}
stat = sess.Call("/panic/call", nil, nil).Status()
if stat.OK() {
t.Fatalf("/panic/call: expect error!")
}
t.Logf("/panic/call error: %v", stat)
stat = sess.Push("/panic/push", nil)
if !stat.OK() {
t.Fatalf("/panic/push: expect ok!")
}
t.Logf("/panic/push: ok")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化