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
|
package com.ufund.api.ufundapi.controller;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.assertEquals;
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.model.User;
import com.ufund.api.ufundapi.persistence.UserFileDAO;
@Tag("Controller-tier")
public class UserControllerTest {
private UserController userController;
private UserFileDAO mockUserDAO;
@BeforeEach
public void setupUserController() {
mockUserDAO = mock(UserFileDAO.class);
userController = new UserController(mockUserDAO);
}
@Test
public void testGetUser() throws IOException { // getUser may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// When the same id is passed in, our mock User DAO will return the User object
when(mockUserDAO.getUser(username)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.getUser(username);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testGetUserNotFound() throws Exception { // createUser may throw IOException
// Setup
String username = "Test";
// When the same id is passed in, our mock User DAO will return null, simulating
// no User found
when(mockUserDAO.getUser(username)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.getUser(username);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testGetUserHandleException() throws Exception { // createUser may throw IOException
// Setup
String username = "Test";
// When getUser is called on the Mock User DAO, throw an IOException
doThrow(new IOException()).when(mockUserDAO).getUser(username);
// Invoke
ResponseEntity<User> response = userController.getUser(username);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
/*****************************************************************
* The following tests will fail until all userController methods
* are implemented.
****************************************************************/
@Test
public void testCreateUser() throws IOException { // createUser may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// when createUser is called, return true simulating successful
// creation and save
when(mockUserDAO.addUser(user)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.CREATED, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testCreateUserFailed() throws IOException { // createUser may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// when createUser is called, return false simulating failed
// creation and save
when(mockUserDAO.addUser(user)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.CONFLICT, response.getStatusCode());
}
@Test
public void testCreateUserHandleException() throws IOException { // createUser may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// When createUser is called on the Mock User DAO, throw an IOException
doThrow(new IOException()).when(mockUserDAO).addUser(user);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testUpdateUser() throws IOException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = new User("Bob");
// when updateUser is called, return true simulating successful
// update and save
when(mockUserDAO.updateUser(user, username)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username);
// 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 = new User("Bob");
// when updateUser is called, return true simulating successful
// update and save
when(mockUserDAO.updateUser(user, username)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testUpdateUserHandleException() throws IOException { // updateUser may throw IOException
// Setup
String username = "Test";
User user = new User("Bob");
// When updateUser is called on the Mock User DAO, throw an IOException
doThrow(new IOException()).when(mockUserDAO).updateUser(user, username);
// Invoke
ResponseEntity<User> response = userController.updateUser(user, username);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testDeleteUser() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
// when deleteUser is called return true, simulating successful deletion
when(mockUserDAO.deleteUser(username)).thenReturn(true);
// Invoke
ResponseEntity<User> response = userController.deleteUser(username);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
}
@Test
public void testDeleteUserNotFound() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
// when deleteUser is called return false, simulating failed deletion
when(mockUserDAO.deleteUser(username)).thenReturn(false);
// Invoke
ResponseEntity<User> response = userController.deleteUser(username);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testDeleteUserHandleException() throws IOException { // deleteUser may throw IOException
// Setup
String username = "Test";
// When deleteUser is called on the Mock User DAO, throw an IOException
doThrow(new IOException()).when(mockUserDAO).deleteUser(username);
// Invoke
ResponseEntity<User> response = userController.deleteUser(username);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
}
|