-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoftype_test.go
124 lines (118 loc) · 2.85 KB
/
oftype_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
122
123
124
package go2linq
import (
"iter"
"testing"
"github.com/solsw/iterhelper"
)
// https://github.com/jskeet/edulinq/blob/master/src/Edulinq.Tests/OfTypeTest.cs
func TestOfType_any_int(t *testing.T) {
type args struct {
source iter.Seq[any]
}
tests := []struct {
name string
args args
want iter.Seq[int]
wantErr bool
}{
{name: "UnboxToInt",
args: args{
source: iterhelper.VarSeq[any](10, 30, 50),
},
want: iterhelper.VarSeq(10, 30, 50),
},
{name: "OfType",
args: args{
source: iterhelper.VarSeq[any](1, 2, "two", 3, 3.14, 4, nil),
},
want: iterhelper.VarSeq(1, 2, 3, 4),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := OfType[any, int](tt.args.source)
if (err != nil) != tt.wantErr {
t.Errorf("OfType() error = %v, wantErr %v", err, tt.wantErr)
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("OfType() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}
func TestOfType_any_string(t *testing.T) {
type args struct {
source iter.Seq[any]
}
tests := []struct {
name string
args args
want iter.Seq[string]
wantErr bool
}{
{name: "SequenceWithAllValidValues",
args: args{
source: iterhelper.VarSeq[any]("first", "second", "third"),
},
want: iterhelper.VarSeq("first", "second", "third"),
},
{name: "NullsAreExcluded",
args: args{
source: iterhelper.VarSeq[any]("first", nil, "third"),
},
want: iterhelper.VarSeq("first", "third"),
},
{name: "WrongElementTypesAreIgnored",
args: args{
source: iterhelper.VarSeq("first", any(1), "third"),
},
want: iterhelper.VarSeq("first", "third"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := OfType[any, string](tt.args.source)
if (err != nil) != tt.wantErr {
t.Errorf("OfType() error = %v, wantErr %v", err, tt.wantErr)
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("OfType() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}
func TestOfType_any_int64(t *testing.T) {
type args struct {
source iter.Seq[any]
}
tests := []struct {
name string
args args
want iter.Seq[int64]
wantErr bool
}{
{name: "UnboxingWithWrongElementTypes",
args: args{
source: iterhelper.VarSeq[any](int64(100), 100, int64(300)),
},
want: iterhelper.VarSeq(int64(100), int64(300)),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := OfType[any, int64](tt.args.source)
if (err != nil) != tt.wantErr {
t.Errorf("OfType() error = %v, wantErr %v", err, tt.wantErr)
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("OfType() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}