-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall_types_test.go
More file actions
66 lines (58 loc) · 1.11 KB
/
all_types_test.go
File metadata and controls
66 lines (58 loc) · 1.11 KB
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
package dscope
import (
"fmt"
"reflect"
"slices"
"testing"
)
func TestAllTypes(t *testing.T) {
scope := New(
func() (int32, int64) {
return 42, 42
},
func() (string, float64) {
return "foo", 42
},
)
var names []string
for t := range scope.AllTypes() {
names = append(names, fmt.Sprintf("%v", t))
}
slices.Sort(names)
if str := fmt.Sprintf("%v", names); str != "[dscope.InjectStruct float64 int32 int64 string]" {
t.Fatalf("got %v", str)
}
scope = scope.Fork(
func() int32 {
return 42
},
func() int8 {
return 42
},
)
names = nil
for t := range scope.AllTypes() {
names = append(names, fmt.Sprintf("%v", t))
}
slices.Sort(names)
if str := fmt.Sprintf("%v", names); str != "[dscope.InjectStruct float64 int32 int64 int8 string]" {
t.Fatalf("got %v", str)
}
// early break
for range scope.AllTypes() {
break
}
}
func TestAllTypesInjectStruct(t *testing.T) {
scope := New()
found := false
for typ := range scope.AllTypes() {
if typ == reflect.TypeFor[InjectStruct]() {
found = true
break
}
}
if !found {
t.Fatal("InjectStruct not found in AllTypes")
}
}