summaryrefslogtreecommitdiff
path: root/internal/user/mock_test.go
blob: caea4daf68640d396598e7f156c2a4d1d28ada0c (plain)
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
package user

type RepositoryMock struct {
	users []User
	err   error
}

func newEmptyRepository() *RepositoryMock {
	return &RepositoryMock{users: []User{}, err: nil}
}

func (r *RepositoryMock) Create(in *CreateInput) (*User, error) {
	if r.err != nil {
		return nil, r.err
	}

	user := User{
		Username:     in.Username,
		Phone:        in.Phone,
		Email:        in.Email,
		passwordHash: in.PwHash,
	}

	r.users = append(r.users, user)
	return &user, nil
}

func (r *RepositoryMock) GetByUsernameOrEmail(username string, email string) (*User, error) {
	if r.err != nil {
		return nil, r.err
	}

	for _, user := range r.users {
		if user.Username == username || user.Email == email {
			return &user, nil
		}
	}

	return nil, ErrUserNotFound
}

func getInvalidRegisterInputs() map[string]RegisterInput {
	baseInput := RegisterInput{
		Username: "testusername",
		Email:    "testemail@mail.com",
		Phone:    "+232442223",
		Password: "1233213344234",
	}

	badInputs := map[string]RegisterInput{}

	input := baseInput
	input.Username = ""
	badInputs["no username"] = input

	input = baseInput
	input.Username = " "
	badInputs["username is only whitespace"] = input

	input = baseInput
	input.Username = "m ike"
	badInputs["username contains a space"] = input

	input = baseInput
	input.Username = "1mike"
	badInputs["username starts with a number"] = input

	input = baseInput
	input.Username = "ab"
	badInputs["username is less than 3 chars"] = input

	input = baseInput
	input.Email = ""
	badInputs["no email"] = input

	input = baseInput
	input.Email = " "
	badInputs["email is just whitespace"] = input

	input = baseInput
	input.Email = "some weird@email.com"
	badInputs["email contains inner whitespace"] = input

	input = baseInput
	input.Email = "someweird@em ail.com"
	badInputs["email contains whitespace after @ and before dot"] = input

	input = baseInput
	input.Email = "someweird@email.c om"
	badInputs["email contains whitespace after dot"] = input

	input = baseInput
	input.Email = "emailnoat.com"
	badInputs["email has no @"] = input

	input = baseInput
	input.Email = "emailnodot@somcom"
	badInputs["email has no dot"] = input

	input = baseInput
	input.Email = "@."
	badInputs["email is only at dot"] = input

	input = baseInput
	input.Phone = "070e833"
	badInputs["phone number has letters"] = input

	input = baseInput
	input.Phone = " "
	badInputs["phone number is only empty space"] = input

	input = baseInput
	input.Password = ""
	badInputs["no password"] = input

	input = baseInput
	input.Password = "12345678901234567890123456789012345678901234567890123456789012345678901234567890"
	badInputs["password is over 72 chars"] = input

	input = baseInput
	input.Password = "1234"
	badInputs["password is less than 8 chars"] = input

	return badInputs
}

func (r *RepositoryMock) fill() {
	users := []User{
		{
			Username:     "johnsmith",
			Email:        "jognsmith@email.com",
			Phone:        "+332200334",
			passwordHash: "213412",
		},
		{
			Username:     "janedoe",
			Email:        "janedoe@email.com",
			Phone:        "+332200334",
			passwordHash: "213412",
		},
		{
			Username:     "mrtest",
			Email:        "mrtest@email.com",
			Phone:        "+332200334",
			passwordHash: "213412",
		},
	}

	r.users = users
}