-
Notifications
You must be signed in to change notification settings - Fork 272
/
fill_test.go
49 lines (39 loc) · 1.03 KB
/
fill_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
package funk
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFillMismatchedTypes(t *testing.T) {
_, err := Fill([]string{"a", "b"}, 1)
assert.EqualError(t, err, "cannot fill '[]string' with 'int'")
}
func TestFillUnfillableTypes(t *testing.T) {
var stringVariable string
var uint32Variable uint32
var boolVariable bool
types := [](interface{}){
stringVariable,
uint32Variable,
boolVariable,
}
for _, unfillable := range types {
_, err := Fill(unfillable, 1)
assert.EqualError(t, err, "can only fill slices and arrays")
}
}
func TestFillSlice(t *testing.T) {
input := []int{1, 2, 3}
result, err := Fill(input, 1)
assert.NoError(t, err)
assert.Equal(t, []int{1, 1, 1}, result)
// Assert that input does not change
assert.Equal(t, []int{1, 2, 3}, input)
}
func TestFillArray(t *testing.T) {
input := [...]int{1, 2, 3}
result, err := Fill(input, 2)
assert.NoError(t, err)
assert.Equal(t, []int{2, 2, 2}, result)
// Assert that input does not change
assert.Equal(t, [...]int{1, 2, 3}, input)
}