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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
package com.ufund.api.ufundapi.controller;
import java.io.IOException;
import java.security.InvalidParameterException;
import java.util.Map;
import static java.util.Map.entry;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import com.ufund.api.ufundapi.DuplicateKeyException;
import com.ufund.api.ufundapi.model.User;
import com.ufund.api.ufundapi.model.UserAuth;
import com.ufund.api.ufundapi.service.AuthService;
import com.ufund.api.ufundapi.service.UserService;
@Tag("Controller-tier")
public class UserControllerTest {
private UserController userController;
private AuthService mockAuthService;
private UserService mockUserService;
private Map<String, String> userMap;
@BeforeEach
public void setupUserController() {
mockUserService = mock(UserService.class);
mockAuthService = mock(AuthService.class);
userController = new UserController(mockUserService, mockAuthService);
userMap = Map.ofEntries(
entry("username", "Test"),
entry("password", "Pass")
);
}
@Test
public void testGetUser() throws IOException { // getUser may throw IOException
// Setup
String username = "Test";
User user = User.create(username, "pass");
String key = UserAuth.generate(username).getKey( );
// When the same id is passed in, our mock User DAO will return the User object
when(mockUserService.getUser(username)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.getUser(username, key);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
assertNotNull(response.getBody());
assertEquals(user.getUsername(), response.getBody().getUsername());
}
@Test
public void testGetUserNotFound() throws Exception { // createUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// When the same id is passed in, our mock User service will return null, simulating
// no User found
when(mockUserService.getUser(username)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.getUser(username, key);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testGetUserUnauthorized() throws Exception { // createUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// When getUser is called on the Mock User service, throw an IOException
// doThrow(new IllegalAccessException()).when(mockUserService).getUser(username);
doThrow(new IllegalAccessException()).when(mockAuthService).authenticate(username, key);
// Invoke
ResponseEntity<User> response = userController.getUser(username, key);
// Analyze
assertEquals(HttpStatus.UNAUTHORIZED, response.getStatusCode());
}
@Test
public void testGetUserHandleException() throws Exception { // createUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// When getUser is called on the Mock User service, throw an IOException
doThrow(new IOException()).when(mockUserService).getUser(username);
// Invoke
ResponseEntity<User> response = userController.getUser(username, key);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testCreateUser() throws IOException, DuplicateKeyException { // createUser may throw IOException
// Setup
String username = "Test";
String password = "Pass";
User user = User.create(username, "pass");
// when createUser is called, return true simulating successful
// creation and save
when(mockUserService.createUser(username, password)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.createUser(userMap);
// Analyze
assertEquals(HttpStatus.CREATED, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testCreateUserFailed() throws IOException, DuplicateKeyException { // createUser may throw IOException
// Setup
String username = "Test";
String password = "Pass";
// when createUser is called, return false simulating failed
// creation and save
when(mockUserService.createUser(username, password)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.createUser(userMap);
// Analyze
assertEquals(HttpStatus.CONFLICT, response.getStatusCode());
}
@Test
public void testCreateUserDuplicate() throws IOException, DuplicateKeyException { // createUser may throw IOException
// Setup
String username = "Test";
String password = "Pass";
// when createUser is called, return false simulating failed
// creation and save
when(mockUserService.createUser(username, password)).thenThrow(DuplicateKeyException.class);
// Invoke
ResponseEntity<User> response = userController.createUser(userMap);
// Analyze
assertEquals(HttpStatus.CONFLICT, response.getStatusCode());
}
@Test
public void testCreateUserHandleException() throws IOException, DuplicateKeyException { // createUser may throw IOException
// Setup
String username = "Test";
String password = "Pass";
// When createUser is called on the Mock User service, throw an IOException
doThrow(new IOException()).when(mockUserService).createUser(username, password);
// Invoke
ResponseEntity<User> response = userController.createUser(userMap);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testUpdateUser() throws IOException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = User.create(username, "pass");
String key = UserAuth.generate(username).getKey();
// when updateUser is called, return true simulating successful
// update and save
when(mockUserService.updateUser(user, username)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username, key);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testUpdateUserFailed() throws IOException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = User.create(username, "pass");
String key = UserAuth.generate(username).getKey();
// when updateUser is called, return true simulating successful
// update and save
when(mockUserService.updateUser(user, username)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username, key);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testUpdateUserInvalidParameter() throws IOException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = User.create(username, "pass");
String key = UserAuth.generate(username).getKey();
// When updateUser is called on the Mock User DAO, throw an IOException
doThrow(new IOException()).when(mockUserService).updateUser(user, username);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username, key);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testUpdateUserUnauthorized() throws IOException, IllegalAccessException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = User.create(username, "pass");
String key = UserAuth.generate(username).getKey();
// When updateUser is called on the Mock User service, throw a Invalid Parameter exception
// exception
doThrow(new IllegalAccessException()).when(mockAuthService).authenticate(username, key);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username, key);
// Analyze
assertEquals(HttpStatus.UNAUTHORIZED, response.getStatusCode());
}
@Test
public void testDeleteUser() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// when deleteUser is called return true, simulating successful deletion
when(mockUserService.deleteUser(username)).thenReturn(true);
// Invoke
ResponseEntity<Boolean> response = userController.deleteUser(username, key);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
}
@Test
public void testDeleteUserNotFound() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// when deleteUser is called return false, simulating failed deletion
when(mockUserService.deleteUser(username)).thenReturn(false);
// Invoke
ResponseEntity<Boolean> response = userController.deleteUser(username, key);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testDeleteUserHandleException() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// When deleteUser is called on the Mock User service, throw an IOException
doThrow(new IOException()).when(mockUserService).deleteUser(username);
// Invoke
ResponseEntity<Boolean> response = userController.deleteUser(username, key);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testDeleteUserUnauthorized() throws IOException, IllegalAccessException { // deleteUser may throw IOException
// Setup
String username = "Test";
String key = UserAuth.generate(username).getKey();
// When deleteUser is called on the Mock User service, throw an IOException
doThrow(new IllegalAccessException()).when(mockAuthService).authenticate(username, key);
// Invoke
ResponseEntity<Boolean> response = userController.deleteUser(username, key);
// Analyze
assertEquals(HttpStatus.UNAUTHORIZED, response.getStatusCode());
}
}
|