Skip to content
Snippets Groups Projects
Commit 7d4266da authored by Piotr Gawron's avatar Piotr Gawron
Browse files

test checking if undefined project is properly handled

parent 8ef21088
No related branches found
No related tags found
1 merge request!895Resolve "Curator can not set the overlay public or change the owner"
......@@ -9,6 +9,7 @@ import org.junit.*;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.mock.web.MockHttpSession;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.web.servlet.RequestBuilder;
......@@ -65,4 +66,17 @@ public class PublicationsControllerIntegrationTest extends ControllerIntegration
.andExpect(status().is2xxSuccessful());
}
@Test
public void testGetPublicationsWithUndefinedProject() throws Exception {
MockHttpSession session = createSession(ControllerIntegrationTest.BUILT_IN_TEST_ADMIN_LOGIN,
ControllerIntegrationTest.BUILT_IN_TEST_ADMIN_PASSWORD);
RequestBuilder request = get("/projects/*/models/" + map.getId() + "/publications/")
.contentType(MediaType.APPLICATION_FORM_URLENCODED)
.session(session);
mockMvc.perform(request)
.andExpect(status().isNotFound());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment