aboutsummaryrefslogtreecommitdiff
path: root/ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java
blob: f3cbc2365583f345ec07946aca5b5e2f1463f361 (plain) (blame)
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
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);
        AuthService mockAuthService = mock(AuthService.class);
        cupboardService = new CupboardService(mockAuthService, mockCupboardDAO);

    }

    @Test
    public void testCreateNeed() throws IOException, DuplicateKeyException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);

        // 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, location, maxGoal, type, urgent);

        // Analyze
        assertNotNull(response);
        assertEquals(need, response);
    }

    @Test
    public void testCreateNeedBadGoal() throws IOException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = -100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);

        // 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, location, maxGoal, type, urgent));
    }

    @Test
    public void testCreateNeedDuplicate() throws IOException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);
        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, location, maxGoal, type, urgent));
    }

    @Test
    public void testSearchNeeds() throws IOException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);
        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 {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);
        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 {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        var need = new Need(name, location, maxGoal, type, urgent);

        // When the same id is passed in, our mock User DAO will return the User object
        when(mockCupboardDAO.getNeed(0)).thenReturn(need);

        // Invoke
        Need response = cupboardService.getNeed(need.getId());

        // Analyze
        assertEquals(need, response);
    }

    @Test
    public void testUpdateNeed() throws IOException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        Need need = new Need(name, location, maxGoal, type, urgent);
        Need newNeed = new Need("Octopus", location, maxGoal, type, urgent);

        // 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, need.getId());

        // Analyze
        assertEquals(newNeed, response);
    }

    @Test
    public void testDeleteNeed() throws IOException {
        // Setup
        String name = "Jellyfish";
        String location = "Atlantis";
        double maxGoal = 100.0;
        GoalType type = Need.GoalType.MONETARY;
        boolean urgent = false;
        Need need = new Need(name, location, maxGoal, type, urgent);

        // When the same id is passed in, our mock User DAO will return the User object
        when(mockCupboardDAO.deleteNeed(0)).thenReturn(true);
        when(mockCupboardDAO.getNeeds()).thenReturn(new Need[0]);

        // Invoke
        boolean response = cupboardService.deleteNeed(need.getId());
        Need[] responseNeeds = cupboardService.getNeeds();

        // Analyze
        assertTrue(response);
        assertArrayEquals(new Need[0], responseNeeds);
    }

}