@@ -8681,3 +8681,83 @@ func TestMapOfKeyPanic(t *testing.T) {
8681
8681
var slice []int
8682
8682
m .MapIndex (ValueOf (slice ))
8683
8683
}
8684
+
8685
+ func testTypeAssert [T comparable ](t * testing.T , val T ) {
8686
+ t .Helper ()
8687
+ v , ok := TypeAssert [T ](ValueOf (val ))
8688
+ if v != val || ! ok {
8689
+ t .Errorf ("TypeAssert[%T](%v) = (%v, %v); want = (%v, true)" , * new (T ), val , v , ok , val )
8690
+ }
8691
+ }
8692
+
8693
+ func testTypeAssertDifferentType [T , T2 comparable ](t * testing.T , val T2 ) {
8694
+ t .Helper ()
8695
+ if v , ok := TypeAssert [T ](ValueOf (val )); ok {
8696
+ t .Errorf ("TypeAssert[%T](%v) = (%v, %v); want = (%v, false)" , * new (T ), val , v , ok , * new (T ))
8697
+ }
8698
+ }
8699
+
8700
+ func newPtr [T any ](t T ) * T {
8701
+ return & t
8702
+ }
8703
+
8704
+ func TestTypeAssert (t * testing.T ) {
8705
+ testTypeAssert (t , int (1111 ))
8706
+ testTypeAssert (t , int (111111111 ))
8707
+ testTypeAssert (t , int (- 111111111 ))
8708
+ testTypeAssert (t , int32 (111111111 ))
8709
+ testTypeAssert (t , int32 (- 111111111 ))
8710
+ testTypeAssert (t , uint32 (111111111 ))
8711
+ testTypeAssert (t , [2 ]int {111111111 , 22222222 })
8712
+ testTypeAssert (t , [2 ]int {- 111111111 , - 22222222 })
8713
+ testTypeAssert (t , newPtr (1111 ))
8714
+ testTypeAssert (t , newPtr (111111111 ))
8715
+ testTypeAssert (t , newPtr (- 111111111 ))
8716
+ testTypeAssert (t , newPtr ([2 ]int {- 111111111 , - 22222222 }))
8717
+
8718
+ testTypeAssert (t , newPtr (time .Now ()))
8719
+
8720
+ testTypeAssertDifferentType [uint ](t , int (111111111 ))
8721
+ testTypeAssertDifferentType [uint ](t , int (- 111111111 ))
8722
+ }
8723
+
8724
+ type testTypeWithMethod struct {
8725
+ val string
8726
+ }
8727
+
8728
+ func (v testTypeWithMethod ) String () string { return v .val }
8729
+
8730
+ func TestTypeAssertMethod (t * testing.T ) {
8731
+ method := ValueOf (& testTypeWithMethod {val : "test value" }).MethodByName ("String" )
8732
+ f , ok := TypeAssert [func () string ](method )
8733
+ if ! ok {
8734
+ t .Fatalf (`TypeAssert[func() string](method) = (,false); want = (,true)` )
8735
+ }
8736
+
8737
+ out := f ()
8738
+ if out != "test value" {
8739
+ t .Fatalf (`TypeAssert[func() string](method)() = %q; want "test value"` , out )
8740
+ }
8741
+ }
8742
+
8743
+ func TestTypeAssertZeroValPanic (t * testing.T ) {
8744
+ defer func () { recover () }()
8745
+ TypeAssert [int ](Value {})
8746
+ t .Fatalf ("TypeAssert did not panic" )
8747
+ }
8748
+
8749
+ func TestTypeAssertReadOnlyPanic (t * testing.T ) {
8750
+ defer func () { recover () }()
8751
+ TypeAssert [int ](ValueOf (& testTypeWithMethod {}).FieldByName ("val" ))
8752
+ t .Fatalf ("TypeAssert did not panic" )
8753
+ }
8754
+
8755
+ func TestTypeAssertAllocs (t * testing.T ) {
8756
+ val := ValueOf (new (time.Time )).Elem ()
8757
+ allocs := testing .AllocsPerRun (100 , func () {
8758
+ TypeAssert [time.Time ](val )
8759
+ })
8760
+ if allocs != 0 {
8761
+ t .Errorf ("unexpected amount of allocations = %v; want = 0" , allocs )
8762
+ }
8763
+ }
0 commit comments