-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweet_test.go
55 lines (52 loc) · 1.04 KB
/
tweet_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
package twitter
import (
"github.com/stretchr/testify/require"
"github.com/trenchesdeveloper/tweeter/faker"
"testing"
)
func TestCreateTweetInput_Sanitize(t *testing.T) {
tests := []struct {
name string
in *CreateTweetInput
}{
{
name: "sanitizes the input",
in: &CreateTweetInput{Body: "Hello, World! "},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.in.Sanitize()
require.Equal(t, "Hello, World!", tt.in.Body)
})
}
}
func TestCreateTweetInput_Validate(t *testing.T) {
tests := []struct {
name string
in CreateTweetInput
want error
}{
{
name: "valid tweet",
in: CreateTweetInput{Body: "Hello, World!"},
want: nil,
},
{
name: "invalid tweet",
in: CreateTweetInput{Body: ""},
want: ErrValidation,
},
{
name: "tweet too long",
in: CreateTweetInput{Body: faker.RandString(300)},
want: ErrValidation,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.in.Validate()
require.Equal(t, tt.want, got)
})
}
}