-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgramControllerTests.java
More file actions
222 lines (190 loc) · 9.86 KB
/
Copy pathProgramControllerTests.java
File metadata and controls
222 lines (190 loc) · 9.86 KB
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
package com.ontario.program.controller;
import java.math.BigDecimal;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.ontario.program.dto.ProgramReviewRequest;
import com.ontario.program.dto.ProgramSubmitRequest;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.header;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
/**
* Integration tests for program and program-type REST endpoints.
*/
@SpringBootTest
@AutoConfigureMockMvc
class ProgramControllerTests {
@Autowired
private MockMvc mockMvc;
@Autowired
private ObjectMapper objectMapper;
@Test
void shouldReturnProgramTypes() throws Exception {
mockMvc.perform(get("/api/program-types"))
.andExpect(status().isOk())
.andExpect(jsonPath("$", hasSize(5)))
.andExpect(jsonPath("$[0].typeName", notNullValue()))
.andExpect(jsonPath("$[0].typeNameFr", notNullValue()));
}
@Test
void shouldSubmitProgram() throws Exception {
ProgramSubmitRequest request = new ProgramSubmitRequest(
"Youth Arts Program", "A program for youth arts", 1, "citizen1", null);
mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)))
.andExpect(status().isCreated())
.andExpect(header().exists("Location"))
.andExpect(jsonPath("$.programName", is("Youth Arts Program")))
.andExpect(jsonPath("$.status", is("SUBMITTED")))
.andExpect(jsonPath("$.submittedAt", notNullValue()))
.andExpect(jsonPath("$.programTypeName", notNullValue()));
}
@Test
void shouldReturnValidationErrorForBlankName() throws Exception {
ProgramSubmitRequest request = new ProgramSubmitRequest(
"", "A description", 1, "citizen1", null);
mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)))
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.title", is("Validation Failed")));
}
@Test
void shouldGetAllPrograms() throws Exception {
// Submit a program first
ProgramSubmitRequest request = new ProgramSubmitRequest(
"List Test Program", "Description", 1, "citizen1", null);
mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)));
mockMvc.perform(get("/api/programs"))
.andExpect(status().isOk())
.andExpect(jsonPath("$").isArray());
}
@Test
void shouldGetProgramById() throws Exception {
// Submit a program first
ProgramSubmitRequest request = new ProgramSubmitRequest(
"Get By ID Test", "Description", 1, "citizen1", null);
MvcResult result = mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)))
.andExpect(status().isCreated())
.andReturn();
Integer id = objectMapper.readTree(result.getResponse().getContentAsString())
.get("id").asInt();
mockMvc.perform(get("/api/programs/" + id))
.andExpect(status().isOk())
.andExpect(jsonPath("$.programName", is("Get By ID Test")));
}
@Test
void shouldReturn404ForNonExistentProgram() throws Exception {
mockMvc.perform(get("/api/programs/99999"))
.andExpect(status().isNotFound())
.andExpect(jsonPath("$.title", is("Resource Not Found")));
}
@Test
void shouldApproveProgram() throws Exception {
// Submit a program first
ProgramSubmitRequest submitRequest = new ProgramSubmitRequest(
"Approve Test Program", "Description", 1, "citizen1", null);
MvcResult result = mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(submitRequest)))
.andExpect(status().isCreated())
.andReturn();
Integer id = objectMapper.readTree(result.getResponse().getContentAsString())
.get("id").asInt();
// Approve the program
ProgramReviewRequest reviewRequest = new ProgramReviewRequest(
"APPROVED", "Looks good, approved.");
mockMvc.perform(put("/api/programs/" + id + "/review")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(reviewRequest)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.status", is("APPROVED")))
.andExpect(jsonPath("$.reviewerComments", is("Looks good, approved.")))
.andExpect(jsonPath("$.reviewedAt", notNullValue()));
}
@Test
void shouldRejectProgram() throws Exception {
// Submit a program first
ProgramSubmitRequest submitRequest = new ProgramSubmitRequest(
"Reject Test Program", "Description", 1, "citizen1", null);
MvcResult result = mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(submitRequest)))
.andExpect(status().isCreated())
.andReturn();
Integer id = objectMapper.readTree(result.getResponse().getContentAsString())
.get("id").asInt();
// Reject the program
ProgramReviewRequest reviewRequest = new ProgramReviewRequest(
"REJECTED", "Does not meet criteria.");
mockMvc.perform(put("/api/programs/" + id + "/review")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(reviewRequest)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.status", is("REJECTED")))
.andExpect(jsonPath("$.reviewerComments", is("Does not meet criteria.")));
}
@Test
void shouldReturn404WhenReviewingNonExistentProgram() throws Exception {
ProgramReviewRequest reviewRequest = new ProgramReviewRequest("APPROVED", "Comment");
mockMvc.perform(put("/api/programs/99999/review")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(reviewRequest)))
.andExpect(status().isNotFound())
.andExpect(jsonPath("$.title", is("Resource Not Found")));
}
@Test
void shouldReturnValidationErrorForInvalidReviewStatus() throws Exception {
ProgramReviewRequest reviewRequest = new ProgramReviewRequest("INVALID", "Comment");
mockMvc.perform(put("/api/programs/1/review")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(reviewRequest)))
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.title", is("Validation Failed")));
}
@Test
void shouldSubmitProgramWithBudget() throws Exception {
ProgramSubmitRequest request = new ProgramSubmitRequest(
"Budget Program", "A program with budget", 1, "citizen1",
new BigDecimal("50000.00"));
mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)))
.andExpect(status().isCreated())
.andExpect(jsonPath("$.programName", is("Budget Program")))
.andExpect(jsonPath("$.programBudget", is(50000.00)));
}
@Test
void shouldReturnValidationErrorForNegativeBudget() throws Exception {
ProgramSubmitRequest request = new ProgramSubmitRequest(
"Negative Budget", "Description", 1, "citizen1",
new BigDecimal("-100.00"));
mockMvc.perform(post("/api/programs")
.contentType(MediaType.APPLICATION_JSON)
.content(objectMapper.writeValueAsString(request)))
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.title", is("Validation Failed")));
}
@Test
void shouldReturnHealthStatus() throws Exception {
mockMvc.perform(get("/api/health"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.status", is("UP")));
}
}