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
|
package com.ufund.api.ufundapi.service;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import com.ufund.api.ufundapi.DuplicateKeyException;
import com.ufund.api.ufundapi.model.Need;
import com.ufund.api.ufundapi.model.Need.GoalType;
import com.ufund.api.ufundapi.persistence.CupboardDAO;
@Tag("Service-tier")
public class CupboardServiceTest {
private CupboardDAO mockCupboardDAO;
private CupboardService cupboardService;
@BeforeEach
public void setupCupboardService() {
mockCupboardDAO = mock(CupboardDAO.class);
cupboardService = new CupboardService(mockCupboardDAO);
}
@Test
public void testCreateNeed() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.addNeed(any())).thenReturn(need);
when(mockCupboardDAO.getNeeds()).thenReturn(new Need[0]);
// Invoke
Need response = cupboardService.createNeed(name, maxGoal, type);
// Analyze
assertNotNull(response);
assertEquals(need, response);
}
@Test
public void testCreateNeedBadGoal() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = -100.00;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.addNeed(any())).thenReturn(need);
when(mockCupboardDAO.getNeeds()).thenReturn(new Need[0]);
// Invoke
// Need response = cupboardService.createNeed(name, maxGoal, type);
// Analyze
assertThrows(IllegalArgumentException.class, () -> {
cupboardService.createNeed(name, maxGoal, type);
});
}
@Test
public void testCreateNeedDuplicate() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
Need[] needs = { need };
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.addNeed(any())).thenReturn(need);
when(mockCupboardDAO.getNeeds()).thenReturn(needs);
// Invoke
// Need response = cupboardService.createNeed(name, maxGoal, type);
// Analyze
assertThrows(DuplicateKeyException.class, () -> {
cupboardService.createNeed(name, maxGoal, type);
});
}
@Test
public void testSearchNeeds() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
Need[] needs = { need };
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.getNeeds()).thenReturn(needs);
// Invoke
Need[] response = cupboardService.searchNeeds("Jelly");
// Analyze
assertEquals(need, response[0]);
assertEquals(need.getName(), response[0].getName());
}
@Test
public void testSearchNeedsFail() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
Need[] needs = { need };
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.getNeeds()).thenReturn(needs);
// Invoke
Need[] response = cupboardService.searchNeeds("Octopus");
// Analyze
assertArrayEquals(new Need[0], response);
}
@Test
public void testGetNeed() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
int id = 0;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.getNeed(id)).thenReturn(need);
// Invoke
Need response = cupboardService.getNeed(id);
// Analyze
assertEquals(need, response);
}
@Test
public void testUpdateNeed() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
int id = 0;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
Need newNeed = new Need("Octopus", type, maxGoal);
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.updateNeed(any())).thenReturn(newNeed);
// Invoke
Need response = cupboardService.updateNeed(newNeed, id);
// Analyze
assertEquals(newNeed, response);
}
@Test
public void testDeleteNeed() throws IOException, DuplicateKeyException {
// Setup
String name = "Jellyfish";
double maxGoal = 100.00;
int id = 0;
GoalType type = GoalType.MONETARY;
Need need = new Need(name, type, maxGoal);
// When the same id is passed in, our mock User DAO will return the User object
when(mockCupboardDAO.deleteNeed(id)).thenReturn(true);
when(mockCupboardDAO.getNeeds()).thenReturn(new Need[0]);
// Invoke
boolean response = cupboardService.deleteNeed(id);
Need[] responseNeeds = cupboardService.getNeeds();
// Analyze
assertTrue(response);
assertArrayEquals(new Need[0], responseNeeds);
}
}
|