-
Notifications
You must be signed in to change notification settings - Fork 6
/
selectmany_test.go
415 lines (399 loc) · 10.5 KB
/
selectmany_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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package go2linq
import (
"fmt"
"iter"
"slices"
"strconv"
"strings"
"testing"
"github.com/solsw/errorhelper"
)
// https://github.com/jskeet/edulinq/blob/master/src/Edulinq.Tests/SelectManyTest.cs
func TestSelectMany_int_rune(t *testing.T) {
type args struct {
source iter.Seq[int]
selector func(int) iter.Seq[rune]
}
tests := []struct {
name string
args args
want iter.Seq[rune]
}{
{name: "SimpleFlatten",
args: args{
source: VarToSeq(3, 5, 20, 15),
selector: func(x int) iter.Seq[rune] {
return slices.Values([]rune(fmt.Sprint(x)))
},
},
want: VarToSeq('3', '5', '2', '0', '1', '5'),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectMany(tt.args.source, tt.args.selector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectMany() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectMany_int_int(t *testing.T) {
type args struct {
source iter.Seq[int]
selector func(int) iter.Seq[int]
}
tests := []struct {
name string
args args
want iter.Seq[int]
}{
{name: "SimpleFlatten1",
args: args{
source: VarToSeq(1, 2, 3, 4),
selector: func(i int) iter.Seq[int] {
return VarToSeq(i, i*i)
},
},
want: VarToSeq(1, 1, 2, 4, 3, 9, 4, 16),
},
{name: "SimpleFlatten2",
args: args{
source: VarToSeq(1, 2, 3, 4),
selector: func(i int) iter.Seq[int] {
if i%2 == 0 {
return Empty[int]()
}
return VarToSeq(i, i*i)
},
},
want: VarToSeq(1, 1, 3, 9),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectMany(tt.args.source, tt.args.selector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectMany() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectMany_string_string(t *testing.T) {
type args struct {
source iter.Seq[string]
selector func(string) iter.Seq[string]
}
tests := []struct {
name string
args args
want iter.Seq[string]
}{
// https://learn.microsoft.com/dotnet/csharp/programming-guide/concepts/linq/projection-operations#selectmany
{name: "SelectMany",
args: args{
source: VarToSeq("an apple a day", "the quick brown fox"),
selector: func(s string) iter.Seq[string] {
return slices.Values(strings.Fields(s))
},
},
want: VarToSeq("an", "apple", "a", "day", "the", "quick", "brown", "fox"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectMany(tt.args.source, tt.args.selector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectMany() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectManyIdx_int_rune(t *testing.T) {
type args struct {
source iter.Seq[int]
selector func(int, int) iter.Seq[rune]
}
tests := []struct {
name string
args args
want iter.Seq[rune]
}{
{name: "SimpleFlattenWithIndex",
args: args{
source: VarToSeq(3, 5, 20, 15),
selector: func(x, idx int) iter.Seq[rune] {
return slices.Values([]rune(fmt.Sprint(x + idx)))
},
},
want: VarToSeq('3', '6', '2', '2', '1', '8'),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectManyIdx(tt.args.source, tt.args.selector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectManyIdx() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectManyIdx_int_int(t *testing.T) {
type args struct {
source iter.Seq[int]
selector func(int, int) iter.Seq[int]
}
tests := []struct {
name string
args args
want iter.Seq[int]
}{
{name: "SimpleFlatten",
args: args{
source: VarToSeq(1, 2, 3, 4),
selector: func(i, idx int) iter.Seq[int] {
if idx%2 == 0 {
return Empty[int]()
}
return VarToSeq(i, i*i)
},
},
want: VarToSeq(2, 4, 4, 16),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectManyIdx(tt.args.source, tt.args.selector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectManyIdx() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectManyColl_int_rune_string(t *testing.T) {
type args struct {
source iter.Seq[int]
collectionSelector func(int) iter.Seq[rune]
resultSelector func(int, rune) string
}
tests := []struct {
name string
args args
want iter.Seq[string]
}{
{name: "FlattenWithProjection",
args: args{
source: VarToSeq(3, 5, 20, 15),
collectionSelector: func(x int) iter.Seq[rune] {
return slices.Values([]rune(fmt.Sprint(x)))
},
resultSelector: func(x int, c rune) string {
return fmt.Sprintf("%d: %s", x, string(c))
},
},
want: VarToSeq("3: 3", "5: 5", "20: 2", "20: 0", "15: 1", "15: 5"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectManyColl(tt.args.source, tt.args.collectionSelector, tt.args.resultSelector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectManyColl() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
func TestSelectManyCollIdx_int_rune_string(t *testing.T) {
type args struct {
source iter.Seq[int]
collectionSelector func(int, int) iter.Seq[rune]
resultSelector func(int, rune) string
}
tests := []struct {
name string
args args
want iter.Seq[string]
}{
{name: "FlattenWithProjectionAndIndex",
args: args{
source: VarToSeq(3, 5, 20, 15),
collectionSelector: func(x, idx int) iter.Seq[rune] {
return slices.Values([]rune(fmt.Sprint(x + idx)))
},
resultSelector: func(x int, c rune) string {
return fmt.Sprintf("%d: %s", x, string(c))
},
},
want: VarToSeq("3: 3", "5: 6", "20: 2", "20: 2", "15: 1", "15: 8"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _ := SelectManyCollIdx(tt.args.source, tt.args.collectionSelector, tt.args.resultSelector)
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("SelectManyCollIdx() = %v, want %v", StringDef(got), StringDef(tt.want))
}
})
}
}
// second example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.concat#examples
func ExampleSelectMany_ex1() {
cats := []Pet{
{Name: "Barley", Age: 8},
{Name: "Boots", Age: 4},
{Name: "Whiskers", Age: 1},
}
dogs := []Pet{
{Name: "Bounder", Age: 3},
{Name: "Snoopy", Age: 14},
{Name: "Fido", Age: 9},
}
select1, _ := Select(slices.Values(cats), func(cat Pet) string { return cat.Name })
select2, _ := Select(slices.Values(dogs), func(dog Pet) string { return dog.Name })
selectMany, _ := SelectMany(VarToSeq(select1, select2), Identity[iter.Seq[string]])
for name := range selectMany {
fmt.Println(name)
}
// Output:
// Barley
// Boots
// Whiskers
// Bounder
// Snoopy
// Fido
}
// SelectManyEx1 example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.selectmany
func ExampleSelectMany_ex2() {
petOwners := []PetOwner{
{Name: "Higa, Sidney", Pets: []string{"Scruffy", "Sam"}},
{Name: "Ashkenazi, Ronen", Pets: []string{"Walker", "Sugar"}},
{Name: "Price, Vernette", Pets: []string{"Scratches", "Diesel"}},
}
// Query using SelectMany().
selectMany, _ := SelectMany(
slices.Values(petOwners),
func(petOwner PetOwner) iter.Seq[string] { return slices.Values(petOwner.Pets) },
)
fmt.Println("Using SelectMany():")
// Only one loop is required to iterate through the results since it is a one-dimensional collection.
for pet := range selectMany {
fmt.Println(pet)
}
// This code shows how to use Select() instead of SelectMany().
petLists, _ := Select(
slices.Values(petOwners),
func(petOwner PetOwner) iter.Seq[string] {
return slices.Values(petOwner.Pets)
},
)
fmt.Println("\nUsing Select():")
// Notice that two loops are required to iterate through the results
// because the query returns a collection of sequences.
for petList := range petLists {
for pet := range petList {
fmt.Println(pet)
}
fmt.Println()
}
// Output:
// Using SelectMany():
// Scruffy
// Sam
// Walker
// Sugar
// Scratches
// Diesel
//
// Using Select():
// Scruffy
// Sam
//
// Walker
// Sugar
//
// Scratches
// Diesel
}
// SelectManyEx2 example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.selectmany
func ExampleSelectManyIdx() {
petOwners := []PetOwner{
{Name: "Higa, Sidney", Pets: []string{"Scruffy", "Sam"}},
{Name: "Ashkenazi, Ronen", Pets: []string{"Walker", "Sugar"}},
{Name: "Price, Vernette", Pets: []string{"Scratches", "Diesel"}},
{Name: "Hines, Patrick", Pets: []string{"Dusty"}},
}
// Project the items in the array by appending the index of each PetOwner
// to each pet's name in that petOwner's slice of pets.
selectManyIdx, _ := SelectManyIdx(
slices.Values(petOwners),
func(petOwner PetOwner, index int) iter.Seq[string] {
return errorhelper.Must(
Select(
slices.Values(petOwner.Pets),
func(pet string) string { return strconv.Itoa(index) + pet },
),
)
},
)
for pet := range selectManyIdx {
fmt.Println(pet)
}
// Output:
// 0Scruffy
// 0Sam
// 1Walker
// 1Sugar
// 2Scratches
// 2Diesel
// 3Dusty
}
// SelectManyEx3 example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.selectmany
func ExampleSelectManyColl() {
petOwners := []PetOwner{
{Name: "Higa", Pets: []string{"Scruffy", "Sam"}},
{Name: "Ashkenazi", Pets: []string{"Walker", "Sugar"}},
{Name: "Price", Pets: []string{"Scratches", "Diesel"}},
{Name: "Hines", Pets: []string{"Dusty"}},
}
// Project all pet's names together with the pet's owner.
selectManyColl, _ := SelectManyColl(
slices.Values(petOwners),
func(petOwner PetOwner) iter.Seq[string] {
return slices.Values(petOwner.Pets)
},
func(petOwner PetOwner, petName string) OwnerAndPet {
return OwnerAndPet{petOwner: petOwner, petName: petName}
},
)
// Filter only pet's names that start with S.
where, _ := Where(selectManyColl,
func(ownerAndPet OwnerAndPet) bool {
return strings.HasPrefix(ownerAndPet.petName, "S")
},
)
// Project the pet owner's name and the pet's name.
ownerPetNames, _ := Select(where,
func(ownerAndPet OwnerAndPet) OwnerNameAndPetName {
return OwnerNameAndPetName{Owner: ownerAndPet.petOwner.Name, Pet: ownerAndPet.petName}
},
)
for ownerPetName := range ownerPetNames {
fmt.Printf("%+v\n", ownerPetName)
}
// Output:
// {Owner:Higa Pet:Scruffy}
// {Owner:Higa Pet:Sam}
// {Owner:Ashkenazi Pet:Sugar}
// {Owner:Price Pet:Scratches}
}