-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrepeat_test.go
123 lines (117 loc) · 2.42 KB
/
repeat_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
package go2linq
import (
"errors"
"fmt"
"iter"
"testing"
"github.com/solsw/iterhelper"
)
// https://github.com/jskeet/edulinq/blob/master/src/Edulinq.Tests/RepeatTest.cs
func TestRepeat_string(t *testing.T) {
type args struct {
element string
count int
}
tests := []struct {
name string
args args
want iter.Seq[string]
wantErr bool
expectedErr error
}{
{name: "NegativeCount",
args: args{
element: "foo",
count: -1,
},
wantErr: true,
expectedErr: ErrNegativeCount,
},
{name: "SimpleRepeat",
args: args{
element: "foo",
count: 3,
},
want: iterhelper.VarSeq("foo", "foo", "foo"),
},
{name: "EmptyRepeat",
args: args{
element: "foo",
count: 0,
},
want: Empty[string](),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := Repeat(tt.args.element, tt.args.count)
if (err != nil) != tt.wantErr {
t.Errorf("Repeat() error = %v, wantErr %v", err, tt.wantErr)
return
}
if tt.wantErr {
if !errors.Is(err, tt.expectedErr) {
t.Errorf("Repeat() error = %v, expectedErr %v", err, tt.expectedErr)
}
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("Repeat() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}
func TestRepeat_int(t *testing.T) {
type args struct {
element int
count int
}
tests := []struct {
name string
args args
want iter.Seq[int]
wantErr bool
}{
{name: "1",
args: args{
element: 0,
count: 0,
},
want: Empty[int](),
},
{name: "2",
args: args{
element: 2,
count: 2,
},
want: iterhelper.VarSeq(2, 2),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := Repeat(tt.args.element, tt.args.count)
if (err != nil) != tt.wantErr {
t.Errorf("Repeat() error = %v, wantErr %v", err, tt.wantErr)
return
}
equal, _ := SequenceEqual(got, tt.want)
if !equal {
t.Errorf("Repeat() = %v, want %v", iterhelper.StringDef(got), iterhelper.StringDef(tt.want))
}
})
}
}
// example from
// https://learn.microsoft.com/dotnet/api/system.linq.enumerable.repeat#examples
func ExampleRepeat() {
ss, _ := Repeat("I like programming.", 4)
for s := range ss {
fmt.Println(s)
}
// Output:
// I like programming.
// I like programming.
// I like programming.
// I like programming.
}