-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartial_type_parmas_test.go
121 lines (111 loc) · 2.86 KB
/
partial_type_parmas_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package generic
import (
"go/ast"
"testing"
)
func TestPartialTypeParameterInference(t *testing.T) {
env := TypeEnv{
"int": &TypeConstant{Name: "int"},
"string": &TypeConstant{Name: "string"},
"MyFunc": &GenericType{
Name: "MyFunc",
TypeParams: []Type{
&TypeVariable{Name: "T"},
&TypeVariable{Name: "U"},
},
Constraints: map[string]TypeConstraint{
"T": {Types: []Type{&TypeConstant{Name: "int"}, &TypeConstant{Name: "float64"}}},
"U": {Types: []Type{&TypeConstant{Name: "string"}, &TypeConstant{Name: "bool"}}},
},
},
}
tests := []struct {
name string
expr ast.Expr
expectedParams []Type
expectError bool
}{
{
name: "Fully specified type parameters",
expr: &ast.IndexListExpr{
X: &ast.Ident{Name: "MyFunc"},
Indices: []ast.Expr{
&ast.Ident{Name: "int"},
&ast.Ident{Name: "string"},
},
},
expectedParams: []Type{
&TypeConstant{Name: "int"},
&TypeConstant{Name: "string"},
},
expectError: false,
},
{
name: "Partially specified type parameters",
expr: &ast.IndexListExpr{
X: &ast.Ident{Name: "MyFunc"},
Indices: []ast.Expr{
&ast.Ident{Name: "int"},
},
},
expectedParams: []Type{
&TypeConstant{Name: "int"},
&TypeVariable{Name: "U"},
},
expectError: false,
},
{
name: "Infer all type parameters",
expr: &ast.Ident{Name: "MyFunc"},
expectedParams: []Type{
&TypeVariable{Name: "T"},
&TypeVariable{Name: "U"},
},
expectError: false,
},
{
name: "Invalid type parameter",
expr: &ast.IndexListExpr{
X: &ast.Ident{Name: "MyFunc"},
Indices: []ast.Expr{
&ast.Ident{Name: "bool"},
},
},
expectError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
inferred, err := InferType(tt.expr, env, nil)
if tt.expectError {
if err == nil {
t.Errorf("Expected an error, but got none")
}
return
}
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
genericType, ok := inferred.(*GenericType)
if !ok {
t.Fatalf("Expected GenericType, got %T", inferred)
}
if len(genericType.TypeParams) != len(tt.expectedParams) {
t.Fatalf("Expected %d type parameters, got %d", len(tt.expectedParams), len(genericType.TypeParams))
}
for i, param := range genericType.TypeParams {
if !TypesEqual(param, tt.expectedParams[i]) {
t.Errorf("Type parameter %d: expected %v, got %v", i, tt.expectedParams[i], param)
}
}
// Check if constraints are satisfied
originalGeneric := env["MyFunc"].(*GenericType)
for i, param := range genericType.TypeParams {
constraint := originalGeneric.Constraints[originalGeneric.TypeParams[i].(*TypeVariable).Name]
if !checkConstraint(param, constraint) {
t.Errorf("Type parameter %d (%v) does not satisfy constraint %v", i, param, constraint)
}
}
})
}
}