Package com.vst.webapp.action

Source Code of com.vst.webapp.action.ReasonFormControllerTest

package com.vst.webapp.action;

import com.vst.model.Reason;
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 ReasonFormControllerTest extends BaseControllerTestCase {
    private ReasonFormController c;
    private MockHttpServletRequest request;
    private ModelAndView mv;

    protected void setUp() throws Exception {
        // needed to initialize a user
        super.setUp();
        c = (ReasonFormController) ctx.getBean("reasonFormController");
    }

    protected void tearDown() {
        c = null;
    }

    public void testEdit() throws Exception {
        log.debug("testing edit...");
        request = newGet("/editReason.html");
        request.addParameter("reasonId", "1");

        mv = c.handleRequest(request, new MockHttpServletResponse());

        assertEquals("reasonForm", mv.getViewName());
    }

    public void testSave() throws Exception {
        request = newGet("/editReason.html");
        request.addParameter("reasonId", "1");

        mv = c.handleRequest(request, new MockHttpServletResponse());

        Reason reason = (Reason) mv.getModel().get(c.getCommandName());
        assertNotNull(reason);
        request = newPost("/editReason.html");
        super.objectToRequestParameters(reason, 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 + "reason");

        if (errors != null) {
            log.debug(errors);
        }
        assertNull(errors);
        assertNotNull(request.getSession().getAttribute("successMessages"));       
    }

    public void testRemove() throws Exception {
        request = newPost("/editReason.html");
        request.addParameter("delete", "");
        request.addParameter("reasonId", "2");
        mv = c.handleRequest(request, new MockHttpServletResponse());
        assertNotNull(request.getSession().getAttribute("successMessages"));
    }
}
TOP

Related Classes of com.vst.webapp.action.ReasonFormControllerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.