Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Genesys Backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Genesys PGR
Genesys Backend
Commits
51044735
Commit
51044735
authored
Jun 08, 2016
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Crop otherNames is lazy-loaded
parent
4462b801
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
68 deletions
+60
-68
src/main/java/org/genesys2/server/model/impl/Crop.java
src/main/java/org/genesys2/server/model/impl/Crop.java
+4
-4
src/main/java/org/genesys2/server/service/impl/CropServiceImpl.java
...ava/org/genesys2/server/service/impl/CropServiceImpl.java
+14
-6
src/test/java/org/genesys2/tests/resttests/ApiDocumentation.java
...t/java/org/genesys2/tests/resttests/ApiDocumentation.java
+20
-27
src/test/java/org/genesys2/tests/resttests/CropsControllerTest.java
...ava/org/genesys2/tests/resttests/CropsControllerTest.java
+22
-31
No files found.
src/main/java/org/genesys2/server/model/impl/Crop.java
View file @
51044735
...
@@ -25,6 +25,7 @@ import java.util.Locale;
...
@@ -25,6 +25,7 @@ import java.util.Locale;
import
java.util.Map
;
import
java.util.Map
;
import
javax.persistence.Cacheable
;
import
javax.persistence.Cacheable
;
import
javax.persistence.CascadeType
;
import
javax.persistence.CollectionTable
;
import
javax.persistence.CollectionTable
;
import
javax.persistence.Column
;
import
javax.persistence.Column
;
import
javax.persistence.ElementCollection
;
import
javax.persistence.ElementCollection
;
...
@@ -65,8 +66,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
...
@@ -65,8 +66,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
private
String
shortName
;
private
String
shortName
;
@Column
(
name
=
"otherName"
,
nullable
=
false
)
@Column
(
name
=
"otherName"
,
nullable
=
false
)
//FetchType.LAZY doesn't work in unit tests, it causes org.hibernate.LazyInitializationException
@ElementCollection
(
fetch
=
FetchType
.
LAZY
)
@ElementCollection
(
fetch
=
FetchType
.
EAGER
)
@CollectionTable
(
name
=
"cropname"
,
joinColumns
=
@JoinColumn
(
name
=
"cropId"
,
referencedColumnName
=
"id"
),
uniqueConstraints
=
{
@UniqueConstraint
(
columnNames
=
"otherName"
)
})
@CollectionTable
(
name
=
"cropname"
,
joinColumns
=
@JoinColumn
(
name
=
"cropId"
,
referencedColumnName
=
"id"
),
uniqueConstraints
=
{
@UniqueConstraint
(
columnNames
=
"otherName"
)
})
@OrderBy
(
"otherName"
)
@OrderBy
(
"otherName"
)
private
List
<
String
>
otherNames
;
private
List
<
String
>
otherNames
;
...
@@ -86,7 +86,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
...
@@ -86,7 +86,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
* Rules
* Rules
*/
*/
@JsonIgnore
@JsonIgnore
@OneToMany
(
mappedBy
=
"crop"
,
cascade
=
{},
orphanRemoval
=
true
)
@OneToMany
(
mappedBy
=
"crop"
,
cascade
=
{
CascadeType
.
REMOVE
},
orphanRemoval
=
true
)
private
List
<
CropRule
>
cropRules
;
private
List
<
CropRule
>
cropRules
;
@Transient
@Transient
...
@@ -100,7 +100,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
...
@@ -100,7 +100,7 @@ public class Crop extends GlobalVersionedAuditedModel implements AclAwareModel {
@Transient
@Transient
@JsonIgnore
@JsonIgnore
private
transient
JsonNode
i18nJU
;
private
transient
JsonNode
i18nJU
;
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
...
...
src/main/java/org/genesys2/server/service/impl/CropServiceImpl.java
View file @
51044735
...
@@ -74,17 +74,23 @@ public class CropServiceImpl implements CropService {
...
@@ -74,17 +74,23 @@ public class CropServiceImpl implements CropService {
@Override
@Override
public
Crop
getCrop
(
String
shortName
)
{
public
Crop
getCrop
(
String
shortName
)
{
Crop
crop
=
cropRepository
.
findByShortName
(
shortName
);
Crop
crop
=
cropRepository
.
findByShortName
(
shortName
);
// Find crop by alias when null
if
(
crop
==
null
)
{
if
(
crop
==
null
)
{
// Find crop by alias
crop
=
cropRepository
.
findByOtherNames
(
shortName
);
crop
=
cropRepository
.
findByOtherNames
(
shortName
);
}
}
// Lazy load otherNames
if
(
crop
!=
null
&&
crop
.
getOtherNames
()
!=
null
)
crop
.
getOtherNames
().
size
();
return
crop
;
return
crop
;
}
}
@PreAuthorize
(
"hasRole('ADMINISTRATOR')"
)
@PreAuthorize
(
"hasRole('ADMINISTRATOR')"
)
@Override
@Override
@Transactional
@Transactional
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
public
Crop
delete
(
Crop
crop
)
{
public
Crop
delete
(
Crop
crop
)
{
cropRepository
.
delete
(
crop
);
cropRepository
.
delete
(
crop
);
crop
.
setId
(
null
);
crop
.
setId
(
null
);
...
@@ -104,7 +110,8 @@ public class CropServiceImpl implements CropService {
...
@@ -104,7 +110,8 @@ public class CropServiceImpl implements CropService {
List
<
Crop
>
crops
=
cropRepository
.
findAll
();
List
<
Crop
>
crops
=
cropRepository
.
findAll
();
// Fetch otherNames list
// Fetch otherNames list
crops
.
stream
().
forEach
(
c
->
{
crops
.
stream
().
forEach
(
c
->
{
c
.
getOtherNames
().
size
();
if
(
c
.
getOtherNames
()
!=
null
)
c
.
getOtherNames
().
size
();
});
});
return
crops
;
return
crops
;
}
}
...
@@ -115,7 +122,8 @@ public class CropServiceImpl implements CropService {
...
@@ -115,7 +122,8 @@ public class CropServiceImpl implements CropService {
final
List
<
Crop
>
crops
=
cropRepository
.
findAll
();
final
List
<
Crop
>
crops
=
cropRepository
.
findAll
();
// Fetch otherNames list
// Fetch otherNames list
crops
.
stream
().
forEach
(
c
->
{
crops
.
stream
().
forEach
(
c
->
{
c
.
getOtherNames
().
size
();
if
(
c
.
getOtherNames
()
!=
null
)
c
.
getOtherNames
().
size
();
});
});
Collections
.
sort
(
crops
,
new
Comparator
<
Crop
>()
{
Collections
.
sort
(
crops
,
new
Comparator
<
Crop
>()
{
@Override
@Override
...
@@ -260,7 +268,7 @@ public class CropServiceImpl implements CropService {
...
@@ -260,7 +268,7 @@ public class CropServiceImpl implements CropService {
@Override
@Override
@PreAuthorize
(
"hasRole('ADMINISTRATOR')"
)
@PreAuthorize
(
"hasRole('ADMINISTRATOR')"
)
@Transactional
(
readOnly
=
false
)
@Transactional
(
readOnly
=
false
)
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
public
Crop
addCrop
(
String
shortName
,
String
name
,
String
description
,
String
i18n
)
{
public
Crop
addCrop
(
String
shortName
,
String
name
,
String
description
,
String
i18n
)
{
LOG
.
info
(
"Adding crop "
+
shortName
);
LOG
.
info
(
"Adding crop "
+
shortName
);
final
Crop
crop
=
new
Crop
();
final
Crop
crop
=
new
Crop
();
...
@@ -281,7 +289,7 @@ public class CropServiceImpl implements CropService {
...
@@ -281,7 +289,7 @@ public class CropServiceImpl implements CropService {
@Override
@Override
@PreAuthorize
(
"hasRole('ADMINISTRATOR') or hasPermission(#crop, 'ADMINISTRATION')"
)
@PreAuthorize
(
"hasRole('ADMINISTRATOR') or hasPermission(#crop, 'ADMINISTRATION')"
)
@Transactional
(
readOnly
=
false
)
@Transactional
(
readOnly
=
false
)
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
@CacheEvict
(
allEntries
=
true
,
value
=
CACHE_CROPS
)
public
Crop
updateCrop
(
Crop
crop
,
String
name
,
String
description
,
String
i18n
)
{
public
Crop
updateCrop
(
Crop
crop
,
String
name
,
String
description
,
String
i18n
)
{
LOG
.
info
(
"Updating crop "
+
crop
);
LOG
.
info
(
"Updating crop "
+
crop
);
...
...
src/test/java/org/genesys2/tests/resttests/ApiDocumentation.java
View file @
51044735
package
org.genesys2.tests.resttests
;
package
org.genesys2.tests.resttests
;
import
static
org
.
hamcrest
.
Matchers
.
hasSize
;
import
static
org
.
hamcrest
.
Matchers
.*;
import
static
org
.
hamcrest
.
Matchers
.
is
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.*;
import
static
org
.
hamcrest
.
Matchers
.
notNullValue
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.*;
import
static
org
.
hamcrest
.
Matchers
.
nullValue
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.
document
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.
documentationConfiguration
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
delete
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
get
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
post
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
put
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
fieldWithPath
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
requestFields
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
responseFields
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.
parameterWithName
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.
pathParameters
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
content
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
jsonPath
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
status
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
...
@@ -46,6 +34,7 @@ import com.fasterxml.jackson.databind.JsonNode;
...
@@ -46,6 +34,7 @@ import com.fasterxml.jackson.databind.JsonNode;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.SerializationFeature
;
import
com.fasterxml.jackson.databind.SerializationFeature
;
@Transactional
(
transactionManager
=
"transactionManager"
)
public
class
ApiDocumentation
extends
AbstractRestTest
{
public
class
ApiDocumentation
extends
AbstractRestTest
{
private
static
final
Log
LOG
=
LogFactory
.
getLog
(
ApiDocumentation
.
class
);
private
static
final
Log
LOG
=
LogFactory
.
getLog
(
ApiDocumentation
.
class
);
...
@@ -115,27 +104,27 @@ public class ApiDocumentation extends AbstractRestTest {
...
@@ -115,27 +104,27 @@ public class ApiDocumentation extends AbstractRestTest {
public
void
createCropTest
()
throws
Exception
{
public
void
createCropTest
()
throws
Exception
{
LOG
.
info
(
"Start test-method createCropTest"
);
LOG
.
info
(
"Start test-method createCropTest"
);
cropRepository
.
deleteAll
();
mockMvc
.
perform
(
post
(
"/api/v0/crops"
)
mockMvc
.
perform
(
post
(
"/api/v0/crops"
)
.
contentType
(
MediaType
.
APPLICATION_JSON
)
.
contentType
(
MediaType
.
APPLICATION_JSON
)
.
content
(
objectMapper
.
writeValueAsString
(
new
Object
()
{
.
content
(
objectMapper
.
writeValueAsString
(
new
Object
()
{
public
String
shortName
=
"
maiz
e"
;
public
String
shortName
=
"
ric
e"
;
public
String
name
=
"
Maiz
e"
;
public
String
name
=
"
Ric
e"
;
public
String
description
=
"Crop description in EN"
;
public
String
description
=
"Crop description in EN"
;
public
String
[]
otherNames
=
{
"ris"
,
"riž"
};
})))
})))
.
andExpect
(
status
().
isOk
())
.
andExpect
(
status
().
isOk
())
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
notNullValue
())))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
notNullValue
())))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
ric
e"
)))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Ric
e"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andDo
(
document
(
"crop-create"
,
.
andDo
(
document
(
"crop-create"
,
requestFields
(
requestFields
(
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"name"
).
description
(
"Crop name in English"
),
fieldWithPath
(
"name"
).
description
(
"Crop name in English"
),
fieldWithPath
(
"otherNames"
).
type
(
JsonFieldType
.
ARRAY
).
optional
().
description
(
"Alternative spellings of the crop name"
),
fieldWithPath
(
"description"
).
optional
().
description
(
"Crop description in English"
)
fieldWithPath
(
"description"
).
optional
().
description
(
"Crop description in English"
)
),
),
responseFields
(
responseFields
(
...
@@ -145,6 +134,7 @@ public class ApiDocumentation extends AbstractRestTest {
...
@@ -145,6 +134,7 @@ public class ApiDocumentation extends AbstractRestTest {
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"otherNames"
).
type
(
JsonFieldType
.
ARRAY
).
optional
().
description
(
"Alternative spellings of the crop name"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
...
@@ -177,6 +167,7 @@ public class ApiDocumentation extends AbstractRestTest {
...
@@ -177,6 +167,7 @@ public class ApiDocumentation extends AbstractRestTest {
fieldWithPath
(
"name"
).
description
(
"Crop name in English"
),
fieldWithPath
(
"name"
).
description
(
"Crop name in English"
),
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"otherNames"
).
type
(
JsonFieldType
.
ARRAY
).
optional
().
description
(
"Alternative spellings of the crop name"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdBy"
).
ignored
(),
...
@@ -191,16 +182,18 @@ public class ApiDocumentation extends AbstractRestTest {
...
@@ -191,16 +182,18 @@ public class ApiDocumentation extends AbstractRestTest {
@Test
@Test
public
void
deleteCropTest
()
throws
Exception
{
public
void
deleteCropTest
()
throws
Exception
{
LOG
.
info
(
"Start test-method deleteCropTest"
);
LOG
.
info
(
"Start test-method deleteCropTest"
);
createCropTest
();
mockMvc
.
perform
(
delete
(
"/api/v0/crops/{shortName}"
,
crop
.
getShortName
()
)
mockMvc
.
perform
(
delete
(
"/api/v0/crops/{shortName}"
,
"rice"
)
.
contentType
(
MediaType
.
APPLICATION_JSON
))
.
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
status
().
isOk
())
.
andExpect
(
status
().
isOk
())
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
ric
e"
)))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Ric
e"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andDo
(
document
(
"crop-delete"
,
pathParameters
(
.
andDo
(
document
(
"crop-delete"
,
pathParameters
(
parameterWithName
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
)
parameterWithName
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
)
...
...
src/test/java/org/genesys2/tests/resttests/CropsControllerTest.java
View file @
51044735
package
org.genesys2.tests.resttests
;
package
org.genesys2.tests.resttests
;
import
static
org
.
hamcrest
.
Matchers
.
hasSize
;
import
static
org
.
hamcrest
.
Matchers
.*;
import
static
org
.
hamcrest
.
Matchers
.
is
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.*;
import
static
org
.
hamcrest
.
Matchers
.
notNullValue
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.*;
import
static
org
.
hamcrest
.
Matchers
.
nullValue
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.
document
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
MockMvcRestDocumentation
.
documentationConfiguration
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.*;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
delete
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
get
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
post
;
import
static
org
.
springframework
.
restdocs
.
mockmvc
.
RestDocumentationRequestBuilders
.
put
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
fieldWithPath
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
requestFields
;
import
static
org
.
springframework
.
restdocs
.
payload
.
PayloadDocumentation
.
responseFields
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.
parameterWithName
;
import
static
org
.
springframework
.
restdocs
.
request
.
RequestDocumentation
.
pathParameters
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
content
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
jsonPath
;
import
static
org
.
springframework
.
test
.
web
.
servlet
.
result
.
MockMvcResultMatchers
.
status
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
...
@@ -35,6 +23,8 @@ import org.springframework.beans.factory.annotation.Autowired;
...
@@ -35,6 +23,8 @@ import org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.http.MediaType
;
import
org.springframework.http.MediaType
;
import
org.springframework.restdocs.RestDocumentation
;
import
org.springframework.restdocs.RestDocumentation
;
import
org.springframework.restdocs.payload.JsonFieldType
;
import
org.springframework.restdocs.payload.JsonFieldType
;
import
org.springframework.test.annotation.Commit
;
import
org.springframework.test.annotation.Rollback
;
import
org.springframework.test.web.servlet.MockMvc
;
import
org.springframework.test.web.servlet.MockMvc
;
import
org.springframework.test.web.servlet.setup.MockMvcBuilders
;
import
org.springframework.test.web.servlet.setup.MockMvcBuilders
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
...
@@ -46,6 +36,7 @@ import com.fasterxml.jackson.databind.JsonNode;
...
@@ -46,6 +36,7 @@ import com.fasterxml.jackson.databind.JsonNode;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.SerializationFeature
;
import
com.fasterxml.jackson.databind.SerializationFeature
;
@Transactional
(
transactionManager
=
"transactionManager"
)
public
class
CropsControllerTest
extends
AbstractRestTest
{
public
class
CropsControllerTest
extends
AbstractRestTest
{
private
static
final
Log
LOG
=
LogFactory
.
getLog
(
CropsControllerTest
.
class
);
private
static
final
Log
LOG
=
LogFactory
.
getLog
(
CropsControllerTest
.
class
);
...
@@ -78,7 +69,6 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -78,7 +69,6 @@ public class CropsControllerTest extends AbstractRestTest {
.
withPort
(
443
)).
build
();
.
withPort
(
443
)).
build
();
crop
=
cropService
.
addCrop
(
"maize"
,
"Maize"
,
"Crop description in EN"
,
null
);
crop
=
cropService
.
addCrop
(
"maize"
,
"Maize"
,
"Crop description in EN"
,
null
);
cropRule
=
cropService
.
addCropRule
(
crop
,
"Zea"
,
"mays"
,
true
);
cropRule
=
cropService
.
addCropRule
(
crop
,
"Zea"
,
"mays"
,
true
);
List
<
CropRule
>
cropRules
=
new
ArrayList
<>();
List
<
CropRule
>
cropRules
=
new
ArrayList
<>();
...
@@ -88,7 +78,8 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -88,7 +78,8 @@ public class CropsControllerTest extends AbstractRestTest {
@After
@After
public
void
tearDown
()
{
public
void
tearDown
()
{
cropRepository
.
deleteAll
();
cropRuleRepository
.
delete
(
cropRule
);
cropRepository
.
delete
(
crop
);
}
}
@Test
@Test
...
@@ -115,22 +106,20 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -115,22 +106,20 @@ public class CropsControllerTest extends AbstractRestTest {
public
void
createCropTest
()
throws
Exception
{
public
void
createCropTest
()
throws
Exception
{
LOG
.
info
(
"Start test-method createCropTest"
);
LOG
.
info
(
"Start test-method createCropTest"
);
cropRepository
.
deleteAll
();
mockMvc
.
perform
(
post
(
"/api/v0/crops"
)
mockMvc
.
perform
(
post
(
"/api/v0/crops"
)
.
contentType
(
MediaType
.
APPLICATION_JSON
)
.
contentType
(
MediaType
.
APPLICATION_JSON
)
.
content
(
objectMapper
.
writeValueAsString
(
new
Object
()
{
.
content
(
objectMapper
.
writeValueAsString
(
new
Object
()
{
public
String
shortName
=
"
maiz
e"
;
public
String
shortName
=
"
ric
e"
;
public
String
name
=
"
Maiz
e"
;
public
String
name
=
"
Ric
e"
;
public
String
description
=
"Crop description in EN"
;
public
String
description
=
"Crop description in EN"
;
})))
})))
.
andExpect
(
status
().
isOk
())
.
andExpect
(
status
().
isOk
())
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
notNullValue
())))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
notNullValue
())))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
ric
e"
)))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Ric
e"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andDo
(
document
(
"crop-create"
,
.
andDo
(
document
(
"crop-create"
,
requestFields
(
requestFields
(
...
@@ -146,7 +135,7 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -146,7 +135,7 @@ public class CropsControllerTest extends AbstractRestTest {
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"otherNames"
).
ignored
(
),
fieldWithPath
(
"otherNames"
).
type
(
JsonFieldType
.
ARRAY
).
optional
().
description
(
"Alternative spellings of the crop name"
),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
fieldWithPath
(
"lastModifiedBy"
).
ignored
(),
fieldWithPath
(
"lastModifiedBy"
).
ignored
(),
...
@@ -180,7 +169,7 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -180,7 +169,7 @@ public class CropsControllerTest extends AbstractRestTest {
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"description"
).
description
(
"Crop description in English"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"rdfUri"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"URI of RDF term describing the crop"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"i18n"
).
type
(
JsonFieldType
.
STRING
).
optional
().
description
(
"i18n map"
),
fieldWithPath
(
"otherNames"
).
ignored
(
),
fieldWithPath
(
"otherNames"
).
type
(
JsonFieldType
.
ARRAY
).
optional
().
description
(
"Alternative spellings of the crop name"
),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdBy"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
fieldWithPath
(
"createdDate"
).
ignored
(),
fieldWithPath
(
"lastModifiedBy"
).
ignored
(),
fieldWithPath
(
"lastModifiedBy"
).
ignored
(),
...
@@ -194,15 +183,17 @@ public class CropsControllerTest extends AbstractRestTest {
...
@@ -194,15 +183,17 @@ public class CropsControllerTest extends AbstractRestTest {
public
void
deleteCropTest
()
throws
Exception
{
public
void
deleteCropTest
()
throws
Exception
{
LOG
.
info
(
"Start test-method deleteCropTest"
);
LOG
.
info
(
"Start test-method deleteCropTest"
);
mockMvc
.
perform
(
delete
(
"/api/v0/crops/{shortName}"
,
crop
.
getShortName
())
createCropTest
();
mockMvc
.
perform
(
delete
(
"/api/v0/crops/{shortName}"
,
"rice"
)
.
contentType
(
MediaType
.
APPLICATION_JSON
))
.
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
status
().
isOk
())
.
andExpect
(
status
().
isOk
())
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
content
().
contentType
(
MediaType
.
APPLICATION_JSON
))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.id"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.version"
,
is
(
0
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.shortName"
,
is
(
"
ric
e"
)))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.i18n"
,
is
(
nullValue
())))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Maiz
e"
)))
.
andExpect
(
jsonPath
(
"$.name"
,
is
(
"
Ric
e"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andExpect
(
jsonPath
(
"$.description"
,
is
(
"Crop description in EN"
)))
.
andDo
(
document
(
"crop-delete"
,
pathParameters
(
.
andDo
(
document
(
"crop-delete"
,
pathParameters
(
parameterWithName
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
)
parameterWithName
(
"shortName"
).
description
(
"Crop short name or code (e.g. maize)"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment