1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 06:25:24 +00:00
v2fly/common/common_test.go

45 lines
803 B
Go
Raw Normal View History

2017-12-20 10:16:45 +00:00
package common_test
import (
"errors"
"testing"
. "github.com/v2fly/v2ray-core/v5/common"
2017-12-20 10:16:45 +00:00
)
func TestMust(t *testing.T) {
2019-01-18 14:59:39 +00:00
hasPanic := func(f func()) (ret bool) {
defer func() {
if r := recover(); r != nil {
ret = true
}
}()
f()
return false
2017-12-20 10:16:45 +00:00
}
2019-01-18 14:59:39 +00:00
testCases := []struct {
Input func()
Panic bool
}{
{
Panic: true,
Input: func() { Must(func() error { return errors.New("test error") }()) },
},
{
Panic: true,
Input: func() { Must2(func() (int, error) { return 0, errors.New("test error") }()) },
},
{
Panic: false,
Input: func() { Must(func() error { return nil }()) },
},
2017-12-20 10:16:45 +00:00
}
2019-01-18 14:59:39 +00:00
for idx, test := range testCases {
if hasPanic(test.Input) != test.Panic {
t.Error("test case #", idx, " expect panic ", test.Panic, " but actually not")
}
}
2017-12-20 10:16:45 +00:00
}