mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 08:48:54 -04:00
42 lines
805 B
Go
42 lines
805 B
Go
package common_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
. "github.com/v2fly/v2ray-core/v4/common"
|
|
)
|
|
|
|
type TConfig struct {
|
|
value int
|
|
}
|
|
|
|
type YConfig struct {
|
|
value string
|
|
}
|
|
|
|
func TestObjectCreation(t *testing.T) {
|
|
var f = func(ctx context.Context, t interface{}) (interface{}, error) {
|
|
return func() int {
|
|
return t.(*TConfig).value
|
|
}, nil
|
|
}
|
|
|
|
Must(RegisterConfig((*TConfig)(nil), f))
|
|
err := RegisterConfig((*TConfig)(nil), f)
|
|
if err == nil {
|
|
t.Error("expect non-nil error, but got nil")
|
|
}
|
|
|
|
g, err := CreateObject(context.Background(), &TConfig{value: 2})
|
|
Must(err)
|
|
if v := g.(func() int)(); v != 2 {
|
|
t.Error("expect return value 2, but got ", v)
|
|
}
|
|
|
|
_, err = CreateObject(context.Background(), &YConfig{value: "T"})
|
|
if err == nil {
|
|
t.Error("expect non-nil error, but got nil")
|
|
}
|
|
}
|