forked from mosip/inji-certify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests for svg template controller
Signed-off-by: Piyush7034 <[email protected]>
- Loading branch information
1 parent
57fd5c6
commit e02a803
Showing
3 changed files
with
75 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
certify-service/src/test/java/io/mosip/certify/controller/SvgTemplateControllerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package io.mosip.certify.controller; | ||
|
||
import io.mosip.certify.core.constants.ErrorConstants; | ||
import io.mosip.certify.core.dto.ParsedAccessToken; | ||
import io.mosip.certify.core.entity.SvgTemplate; | ||
import io.mosip.certify.core.exception.TemplateException; | ||
import io.mosip.certify.core.spi.SvgTemplateService; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mockito; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; | ||
import org.springframework.boot.test.mock.mockito.MockBean; | ||
import org.springframework.test.context.junit4.SpringRunner; | ||
import org.springframework.test.web.servlet.MockMvc; | ||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; | ||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; | ||
|
||
import java.net.http.HttpHeaders; | ||
import java.time.LocalDateTime; | ||
import java.time.ZoneId; | ||
import java.time.format.DateTimeFormatter; | ||
import java.util.UUID; | ||
|
||
@RunWith(SpringRunner.class) | ||
@WebMvcTest(value=SvgTemplateController.class) | ||
public class SvgTemplateControllerTest { | ||
@Autowired | ||
MockMvc mockMvc; | ||
|
||
@MockBean | ||
SvgTemplateService svgTemplateService; | ||
|
||
@MockBean | ||
ParsedAccessToken parsedAccessToken; | ||
|
||
@Test | ||
public void getSvgTemplate_withValidId_thenPass() throws Exception { | ||
SvgTemplate svgTemplate = new SvgTemplate(); | ||
UUID id = UUID.randomUUID(); | ||
svgTemplate.setId(id); | ||
String template = """ | ||
<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"200\\" height=\\"200\\"> | ||
<rect width=\\"200\\" height=\\"200\\" fill=\\"#ff6347\\"/> | ||
<text x=\\"100\\" y=\\"100\\" font-size=\\"30\\" text-anchor=\\"middle\\" fill=\\"white\\"> | ||
Hello, SVG! | ||
</text></svg> | ||
"""; | ||
svgTemplate.setTemplate(template); | ||
LocalDateTime date = LocalDateTime.now(); | ||
svgTemplate.setCreatedtimes(date); | ||
svgTemplate.setUpdatedtimes(date); | ||
|
||
Mockito.when(svgTemplateService.getSvgTemplate(Mockito.any())).thenReturn(svgTemplate); | ||
|
||
mockMvc.perform(get("/public/svg-template/" + id)) | ||
.andExpect(status().isOk()) | ||
.andExpect(content().string(svgTemplate.getTemplate())) | ||
.andExpect(content().contentType("image/svg+xml")) | ||
.andExpect(header().string("Cache-Control", "max-age=86400, public")); | ||
} | ||
|
||
@Test | ||
public void getSvgTemplate_withInValidId_thenFail() throws Exception { | ||
TemplateException templateException = new TemplateException(ErrorConstants.INVALID_TEMPLATE_ID); | ||
UUID id = UUID.randomUUID(); | ||
Mockito.when(svgTemplateService.getSvgTemplate(id)).thenThrow(templateException); | ||
|
||
mockMvc.perform(get("/public/svg-template/" + id)) | ||
.andExpect(status().isNotFound()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters