-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[INJICERT-495] Added template exception for handling invalid id excep…
…tions for template (#114) * [INJICERT-495] Added template exception for handling invalid id exceptions for template Signed-off-by: Piyush7034 <[email protected]> * Added tests for svg template controller Signed-off-by: Piyush7034 <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]>
- Loading branch information
1 parent
ca67f72
commit 1a4a8eb
Showing
7 changed files
with
105 additions
and
7 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
21 changes: 21 additions & 0 deletions
21
certify-core/src/main/java/io/mosip/certify/core/exception/TemplateException.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,21 @@ | ||
package io.mosip.certify.core.exception; | ||
|
||
import io.mosip.certify.core.constants.ErrorConstants; | ||
|
||
public class TemplateException extends RuntimeException { | ||
private String errorCode; | ||
|
||
public TemplateException() { | ||
super(ErrorConstants.UNKNOWN_ERROR); | ||
this.errorCode = ErrorConstants.UNKNOWN_ERROR; | ||
} | ||
|
||
public TemplateException(String errorCode) { | ||
super(errorCode); | ||
this.errorCode = errorCode; | ||
} | ||
|
||
public String getErrorCode() { | ||
return errorCode; | ||
} | ||
} |
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
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
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