-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrange_test.go
112 lines (107 loc) · 2.08 KB
/
range_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
package go2linq
import (
"errors"
"fmt"
"iter"
"math"
"testing"
"github.com/solsw/iterhelper"
)
// https://github.com/jskeet/edulinq/blob/master/src/Edulinq.Tests/RangeTest.cs
func TestRange(t *testing.T) {
type args struct {
start int
count int
}
tests := []struct {
name string
args args
want iter.Seq[int]
wantErr bool
expectedErr error
}{
{name: "NegativeCount",
args: args{
start: 10,
count: -1,
},
wantErr: true,
expectedErr: ErrNegativeCount,
},
{name: "ValidRange",
args: args{
start: 5,
count: 3,
},
want: iterhelper.VarSeq(5, 6, 7),
},
{name: "NegativeStart",
args: args{
start: -2,
count: 5,
},
want: iterhelper.VarSeq(-2, -1, 0, 1, 2),
},
{name: "EmptyRange",
args: args{
start: 100,
count: 0,
},
want: Empty[int](),
},
{name: "SingleValueOfMaxInt32",
args: args{
start: math.MaxInt32,
count: 1,
},
want: iterhelper.VarSeq(math.MaxInt32),
},
{name: "EmptyRangeStartingAtMinInt32",
args: args{
start: math.MinInt32,
count: 0,
},
want: Empty[int](),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := Range(tt.args.start, tt.args.count)
if (err != nil) != tt.wantErr {
t.Errorf("Range() error = %v, wantErr %v", err, tt.wantErr)
return
}
if tt.wantErr {
if !errors.Is(err, tt.expectedErr) {
t.Errorf("Range() error = %v, expectedErr %v", err, tt.expectedErr)
}
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("Range() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}
// example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.range#examples
func ExampleRange() {
// Generate a sequence of integers from 1 to 10 and then select their squares.
rnge, _ := Range(1, 10)
squares, _ := Select(rnge, func(x int) int { return x * x })
for num := range squares {
fmt.Println(num)
}
// Output:
// 1
// 4
// 9
// 16
// 25
// 36
// 49
// 64
// 81
// 100
}