forked from DSpace/DSpace
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DSpace#9320 from 4Science/DURACOM-232
Community/Collection admins can't edit logo for communities/collections
- Loading branch information
Showing
5 changed files
with
139 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,10 @@ | |
import org.dspace.app.rest.test.AbstractControllerIntegrationTest; | ||
import org.dspace.builder.CollectionBuilder; | ||
import org.dspace.builder.CommunityBuilder; | ||
import org.dspace.builder.EPersonBuilder; | ||
import org.dspace.content.Collection; | ||
import org.dspace.content.Community; | ||
import org.dspace.eperson.EPerson; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.springframework.http.MediaType; | ||
|
@@ -93,6 +96,34 @@ public void createLogoNoRights() throws Exception { | |
.andExpect(status().isForbidden()); | ||
} | ||
|
||
@Test | ||
public void createLogoByCollectionAdmin() throws Exception { | ||
context.turnOffAuthorisationSystem(); | ||
|
||
EPerson collectionAdmin = EPersonBuilder.createEPerson(context) | ||
.withEmail("[email protected]") | ||
.withPassword(password) | ||
.withCanLogin(true) | ||
.build(); | ||
|
||
Community community = CommunityBuilder.createCommunity(context) | ||
.withName("New Community") | ||
.build(); | ||
|
||
childCollection = CollectionBuilder.createCollection(context, community) | ||
.withName("name of collection") | ||
.withAdminGroup(collectionAdmin) | ||
.build(); | ||
|
||
context.restoreAuthSystemState(); | ||
|
||
String userToken = getAuthToken(collectionAdmin.getEmail(), password); | ||
getClient(userToken).perform( | ||
MockMvcRequestBuilders.multipart(getLogoUrlTemplate(childCollection.getID().toString())) | ||
.file(bitstreamFile)) | ||
.andExpect(status().isCreated()); | ||
} | ||
|
||
@Test | ||
public void createDuplicateLogo() throws Exception { | ||
getClient(adminAuthToken).perform( | ||
|
@@ -142,6 +173,42 @@ public void deleteLogoNoRights() throws Exception { | |
.andExpect(status().isForbidden()); | ||
} | ||
|
||
@Test | ||
public void deleteLogoByCollectionAdmin() throws Exception { | ||
context.turnOffAuthorisationSystem(); | ||
|
||
EPerson collectionAdmin = EPersonBuilder.createEPerson(context) | ||
.withEmail("[email protected]") | ||
.withPassword(password) | ||
.withCanLogin(true) | ||
.build(); | ||
|
||
Community community = CommunityBuilder.createCommunity(context) | ||
.withName("New Community") | ||
.build(); | ||
|
||
childCollection = CollectionBuilder.createCollection(context, community) | ||
.withName("name of collection") | ||
.withAdminGroup(collectionAdmin) | ||
.build(); | ||
|
||
context.restoreAuthSystemState(); | ||
|
||
String userToken = getAuthToken(collectionAdmin.getEmail(), password); | ||
MvcResult mvcPostResult = getClient(userToken).perform( | ||
MockMvcRequestBuilders.multipart(getLogoUrlTemplate(childCollection.getID().toString())) | ||
.file(bitstreamFile)) | ||
.andExpect(status().isCreated()) | ||
.andReturn(); | ||
|
||
String postContent = mvcPostResult.getResponse().getContentAsString(); | ||
Map<String, Object> mapPostResult = mapper.readValue(postContent, Map.class); | ||
|
||
getClient(userToken) | ||
.perform(delete(getBitstreamUrlTemplate(String.valueOf(mapPostResult.get("uuid"))))) | ||
.andExpect(status().isNoContent()); | ||
} | ||
|
||
private String getLogoUrlTemplate(String uuid) { | ||
return "/api/core/collections/" + uuid + "/logo"; | ||
} | ||
|
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 |
---|---|---|
|
@@ -16,6 +16,9 @@ | |
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import org.dspace.app.rest.test.AbstractControllerIntegrationTest; | ||
import org.dspace.builder.CommunityBuilder; | ||
import org.dspace.builder.EPersonBuilder; | ||
import org.dspace.content.Community; | ||
import org.dspace.eperson.EPerson; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.springframework.http.MediaType; | ||
|
@@ -88,6 +91,29 @@ public void createLogoNoRights() throws Exception { | |
.andExpect(status().isForbidden()); | ||
} | ||
|
||
@Test | ||
public void createLogoBYCommunityAdmin() throws Exception { | ||
context.turnOffAuthorisationSystem(); | ||
|
||
EPerson communityAdmin = EPersonBuilder.createEPerson(context) | ||
.withEmail("[email protected]") | ||
.withPassword(password) | ||
.withCanLogin(true) | ||
.build(); | ||
|
||
Community community = CommunityBuilder.createCommunity(context) | ||
.withName("New Community") | ||
.withAdminGroup(communityAdmin) | ||
.build(); | ||
|
||
context.restoreAuthSystemState(); | ||
String userToken = getAuthToken(communityAdmin.getEmail(), password); | ||
getClient(userToken).perform( | ||
MockMvcRequestBuilders.multipart(getLogoUrlTemplate(community.getID().toString())) | ||
.file(bitstreamFile)) | ||
.andExpect(status().isCreated()); | ||
} | ||
|
||
@Test | ||
public void createDuplicateLogo() throws Exception { | ||
getClient(adminAuthToken).perform( | ||
|
@@ -137,6 +163,38 @@ public void deleteLogoNoRights() throws Exception { | |
.andExpect(status().isForbidden()); | ||
} | ||
|
||
@Test | ||
public void deleteLogoByCommunityAdmin() throws Exception { | ||
context.turnOffAuthorisationSystem(); | ||
|
||
EPerson communityAdmin = EPersonBuilder.createEPerson(context) | ||
.withEmail("[email protected]") | ||
.withPassword(password) | ||
.withCanLogin(true) | ||
.build(); | ||
|
||
Community community = CommunityBuilder.createCommunity(context) | ||
.withName("New Community") | ||
.withAdminGroup(communityAdmin) | ||
.build(); | ||
|
||
context.restoreAuthSystemState(); | ||
|
||
String userToken = getAuthToken(communityAdmin.getEmail(), password); | ||
MvcResult mvcPostResult = getClient(userToken).perform( | ||
MockMvcRequestBuilders.multipart(getLogoUrlTemplate(community.getID().toString())) | ||
.file(bitstreamFile)) | ||
.andExpect(status().isCreated()) | ||
.andReturn(); | ||
|
||
String postContent = mvcPostResult.getResponse().getContentAsString(); | ||
Map<String, Object> mapPostResult = mapper.readValue(postContent, Map.class); | ||
|
||
getClient(userToken) | ||
.perform(delete(getBitstreamUrlTemplate(String.valueOf(mapPostResult.get("uuid"))))) | ||
.andExpect(status().isNoContent()); | ||
} | ||
|
||
private String getLogoUrlTemplate(String uuid) { | ||
return "/api/core/communities/" + uuid + "/logo"; | ||
} | ||
|