Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sprachschulsystem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Pokorný
Sprachschulsystem
Commits
c549fe4f
There was an error fetching the commit references. Please try again later.
Commit
c549fe4f
authored
1 year ago
by
Jan Pokorný
Browse files
Options
Downloads
Patches
Plain Diff
fixed mocking facade in CertificateControllerTests
parent
4b8839ae
No related branches found
No related tags found
2 merge requests
!31
M2
,
!24
M2 certificate response entity
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
application/module-certificate/src/test/java/org/fuseri/modulecertificate/CertificateControllerTests.java
+15
-16
15 additions, 16 deletions
.../fuseri/modulecertificate/CertificateControllerTests.java
with
15 additions
and
16 deletions
application/module-certificate/src/test/java/org/fuseri/modulecertificate/CertificateControllerTests.java
+
15
−
16
View file @
c549fe4f
...
...
@@ -8,7 +8,7 @@ import org.fuseri.model.dto.course.LanguageTypeDto;
import
org.fuseri.model.dto.course.ProficiencyLevelDto
;
import
org.fuseri.model.dto.user.AddressDto
;
import
org.fuseri.model.dto.user.UserDto
;
import
org.fuseri.modulecertificate.service.Certificate
Controller
;
import
org.fuseri.modulecertificate.service.Certificate
Facade
;
import
org.junit.jupiter.api.Test
;
import
org.mockito.ArgumentMatchers
;
import
org.mockito.Mockito
;
...
...
@@ -19,10 +19,8 @@ import org.springframework.boot.test.mock.mockito.MockBean;
import
org.springframework.data.domain.Page
;
import
org.springframework.data.domain.PageRequest
;
import
org.springframework.data.domain.Pageable
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.MediaType
;
import
org.springframework.test.web.servlet.MockMvc
;
import
org.springframework.http.ResponseEntity
;
import
java.time.Instant
;
import
java.util.List
;
...
...
@@ -42,10 +40,12 @@ class CertificateControllerTests {
private
final
CertificateCreateDto
certificateCreateDto
=
new
CertificateCreateDto
(
USER
,
COURSE
);
private
final
CertificateSimpleDto
certificateDto
=
new
CertificateSimpleDto
(
0L
,
USER
.
getId
(),
Instant
.
now
(),
COURSE
.
getId
(),
""
,
""
);
@Autowired
private
MockMvc
mockMvc
;
@MockBean
private
Certificate
Controller
certificate
Controller
;
private
Certificate
Facade
certificate
Facade
;
private
static
String
asJsonString
(
final
Object
obj
)
{
try
{
...
...
@@ -57,8 +57,8 @@ class CertificateControllerTests {
@Test
void
generateCertificate
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
generate
(
ArgumentMatchers
.
any
(
CertificateCreateDto
.
class
)))
.
thenReturn
(
ResponseEntity
.
status
(
HttpStatus
.
CREATED
).
body
(
certificateDto
)
)
;
Mockito
.
when
(
certificate
Facade
.
generate
(
ArgumentMatchers
.
any
(
CertificateCreateDto
.
class
)))
.
thenReturn
(
certificateDto
);
mockMvc
.
perform
(
post
(
"/certificates"
)
.
content
(
asJsonString
(
certificateCreateDto
))
...
...
@@ -98,7 +98,7 @@ class CertificateControllerTests {
@Test
void
findCertificate
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
fin
d
(
ArgumentMatchers
.
anyLong
())).
thenReturn
(
ResponseEntity
.
ok
(
certificateDto
)
)
;
Mockito
.
when
(
certificate
Facade
.
findByI
d
(
ArgumentMatchers
.
anyLong
())).
thenReturn
(
certificateDto
);
mockMvc
.
perform
(
get
(
"/certificates/"
+
certificateDto
.
getId
()))
.
andExpect
(
status
().
isOk
())
...
...
@@ -113,7 +113,7 @@ class CertificateControllerTests {
@Test
void
findCertificatesForUser
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
find
For
User
(
ArgumentMatchers
.
anyLong
())).
thenReturn
(
ResponseEntity
.
ok
(
List
.
of
(
certificateDto
))
)
;
Mockito
.
when
(
certificate
Facade
.
find
By
User
Id
(
ArgumentMatchers
.
anyLong
())).
thenReturn
(
List
.
of
(
certificateDto
));
mockMvc
.
perform
(
get
(
"/certificates/findForUser"
).
param
(
"userId"
,
"0"
))
.
andExpect
(
status
().
isOk
())
...
...
@@ -129,9 +129,9 @@ class CertificateControllerTests {
@Test
void
findCertificateIdForUserAndCourse
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
find
For
UserAndCourse
(
ArgumentMatchers
.
anyLong
(),
Mockito
.
when
(
certificate
Facade
.
find
By
User
Id
AndCourse
Id
(
ArgumentMatchers
.
anyLong
(),
ArgumentMatchers
.
anyLong
()))
.
thenReturn
(
ResponseEntity
.
ok
(
List
.
of
(
certificateDto
))
)
;
.
thenReturn
(
List
.
of
(
certificateDto
));
mockMvc
.
perform
(
get
(
"/certificates/findForUserAndCourse"
)
.
param
(
"userId"
,
"0"
)
...
...
@@ -163,8 +163,7 @@ class CertificateControllerTests {
@Test
void
deleteCertificate
()
throws
Exception
{
Mockito
.
when
(
certificateController
.
delete
(
ArgumentMatchers
.
anyLong
())).
thenReturn
(
ResponseEntity
.
noContent
().
build
());
Mockito
.
doNothing
().
when
(
certificateFacade
).
deleteCertificate
(
ArgumentMatchers
.
anyLong
());
mockMvc
.
perform
(
delete
(
"/certificates/"
+
0L
))
.
andExpect
(
status
().
is2xxSuccessful
());
...
...
@@ -178,8 +177,8 @@ class CertificateControllerTests {
@Test
void
findAllCertificates
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
findAllCertificates
(
ArgumentMatchers
.
any
(
Pageable
.
class
)))
.
thenReturn
(
ResponseEntity
.
ok
(
Page
.
empty
(
PageRequest
.
of
(
0
,
1
)))
)
;
Mockito
.
when
(
certificate
Facade
.
findAll
(
ArgumentMatchers
.
any
(
Pageable
.
class
)))
.
thenReturn
(
Page
.
empty
(
PageRequest
.
of
(
0
,
1
)));
mockMvc
.
perform
(
get
(
"/certificates"
)
.
param
(
"page"
,
"0"
)
...
...
@@ -191,8 +190,8 @@ class CertificateControllerTests {
@Test
void
findAllCertificatesWithoutParam
()
throws
Exception
{
Mockito
.
when
(
certificate
Controller
.
findAllCertificates
(
ArgumentMatchers
.
any
(
Pageable
.
class
)))
.
thenReturn
(
ResponseEntity
.
ok
(
Page
.
empty
(
PageRequest
.
of
(
0
,
1
)))
)
;
Mockito
.
when
(
certificate
Facade
.
findAll
(
ArgumentMatchers
.
any
(
Pageable
.
class
)))
.
thenReturn
(
Page
.
empty
(
PageRequest
.
of
(
0
,
1
)));
mockMvc
.
perform
(
get
(
"/certificates"
))
.
andExpect
(
status
().
isOk
())
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment