package com.vst.webapp.action;
import com.vst.model.Material;
import com.vst.webapp.action.BaseControllerTestCase;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.validation.BindException;
import org.springframework.validation.Errors;
import org.springframework.web.servlet.ModelAndView;
public class MaterialFormControllerTest extends BaseControllerTestCase {
private MaterialFormController c;
private MockHttpServletRequest request;
private ModelAndView mv;
protected void setUp() throws Exception {
// needed to initialize a user
super.setUp();
c = (MaterialFormController) ctx.getBean("materialFormController");
}
protected void tearDown() {
c = null;
}
public void testEdit() throws Exception {
log.debug("testing edit...");
request = newGet("/editMaterial.html");
request.addParameter("materialId", "1");
mv = c.handleRequest(request, new MockHttpServletResponse());
assertEquals("materialForm", mv.getViewName());
}
public void testSave() throws Exception {
request = newGet("/editMaterial.html");
request.addParameter("materialId", "1");
mv = c.handleRequest(request, new MockHttpServletResponse());
Material material = (Material) mv.getModel().get(c.getCommandName());
assertNotNull(material);
request = newPost("/editMaterial.html");
super.objectToRequestParameters(material, request);
// update the form's fields and add it back to the request
mv = c.handleRequest(request, new MockHttpServletResponse());
Errors errors = (Errors) mv.getModel().get(BindException.MODEL_KEY_PREFIX + "material");
if (errors != null) {
log.debug(errors);
}
assertNull(errors);
assertNotNull(request.getSession().getAttribute("successMessages"));
}
public void testRemove() throws Exception {
request = newPost("/editMaterial.html");
request.addParameter("delete", "");
request.addParameter("materialId", "2");
mv = c.handleRequest(request, new MockHttpServletResponse());
assertNotNull(request.getSession().getAttribute("successMessages"));
}
}