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
|
package com.ufund.api.ufundapi.controller;
import java.io.IOException;
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.*;
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 { // getHero may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// When the same id is passed in, our mock Hero DAO will return the Hero 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 { // createHero may throw IOException
// Setup
String username = "Test";
// When the same id is passed in, our mock Hero DAO will return null, simulating
// no hero found
when(mockUserDAO.getUser(username)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.getUser(username);
// Analyze
assertEquals(HttpStatus.NOT_FOUND, response.getStatusCode());
}
@Test
public void testGetHeroHandleException() throws Exception { // createHero may throw IOException
// Setup
String username = "Test";
// When getHero is called on the Mock Hero 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 testCreateHero() throws IOException { // createHero may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// when createHero is called, return true simulating successful
// creation and save
when(mockUserDAO.createUser(user)).thenReturn(user);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.CREATED, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testCreateHeroFailed() throws IOException { // createHero may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// when createHero is called, return false simulating failed
// creation and save
when(mockUserDAO.createUser(user)).thenReturn(null);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.CONFLICT, response.getStatusCode());
}
@Test
public void testCreateHeroHandleException() throws IOException { // createHero may throw IOException
// Setup
String username = "Test";
User user = new User(username);
// When createHero is called on the Mock Hero DAO, throw an IOException
doThrow(new IOException()).when(mockUserDAO).createUser(user);
// Invoke
ResponseEntity<User> response = userController.createUser(user);
// Analyze
assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.getStatusCode());
}
@Test
public void testUpdateHero() throws IOException { // updateHero may throw IOException
// Setup
String username = "Test";
User user = new User("Bob");
// when updateHero is called, return true simulating successful
// update and save
when(mockUserDAO.updateUser(user, username)).thenReturn(user);
ResponseEntity<User> response = userController.updateUser(user, username);
// Invoke
response = userController.updateUser(user, username);
// Analyze
assertEquals(HttpStatus.OK, response.getStatusCode());
assertEquals(user, response.getBody());
}
@Test
public void testUpdateHeroFailed() throws IOException { // updateHero may throw IOException
// Setup
String username = "Test";
User user = new User("Bob");
// when updateHero 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 testUpdateHeroHandleException() throws IOException { // updateHero may throw IOException
// Setup
String username = "Test";
User user = new User("Bob");
// When updateHero is called on the Mock Hero 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 testDeleteHero() throws IOException { // deleteHero may throw IOException
// Setup
String username = "Test";
// when deleteHero 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 testDeleteHeroNotFound() throws IOException { // deleteHero may throw IOException
// Setup
String username = "Test";
// when deleteHero 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 testDeleteHeroHandleException() throws IOException { // deleteHero may throw IOException
// Setup
String username = "Test";
// When deleteHero is called on the Mock Hero 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());
}
}
|