org.openmrs.web.controller.person.PersonAttributeTypeFormControllerTest.java Source code

Java tutorial

Introduction

Here is the source code for org.openmrs.web.controller.person.PersonAttributeTypeFormControllerTest.java

Source

/**
 * This Source Code Form is subject to the terms of the Mozilla Public License,
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
 * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
 * the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
 *
 * Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
 * graphic logo is a trademark of OpenMRS Inc.
 */
package org.openmrs.web.controller.person;

import javax.servlet.http.HttpServletResponse;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.openmrs.api.context.Context;
import org.openmrs.web.test.BaseModuleWebContextSensitiveTest;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.mock.web.MockHttpSession;
import org.springframework.web.servlet.ModelAndView;

/**
 * Tests the {@link PersonAttributeTypeFormController}
 */
public class PersonAttributeTypeFormControllerTest extends BaseModuleWebContextSensitiveTest {

    private MockHttpServletRequest request;

    private HttpServletResponse response;

    private PersonAttributeTypeFormController controller;

    @Before
    public void setup() throws Exception {
        executeDataSet("org/openmrs/web/controller/include/PersonAttributeTypeFormControllerTest.xml");
        controller = (PersonAttributeTypeFormController) applicationContext.getBean("personAttributeTypeForm");
        controller.setFormView("index.htm");
        controller.setSuccessView("PersonAttributeType.form");

        request = new MockHttpServletRequest("POST",
                "/admin/person/personAttributeType.form?personAttributeTypeId=1");
        request.setSession(new MockHttpSession(null));
        request.setContentType("application/x-www-form-urlencoded");
        request.addParameter("name", "TRUNK");
        request.addParameter("format", "java.lang.String");
        response = new MockHttpServletResponse();
    }

    @Test
    public void shouldNotSavePersonAttributeTypeWhenPersonAttributeTypesAreLocked() throws Exception {
        request.addParameter("save", "Save Person Attribute Type");

        ModelAndView mav = controller.handleRequest(request, response);
        Assert.assertEquals("The save attempt should have failed!", "index.htm", mav.getViewName());
        Assert.assertNotEquals("PersonAttributeType.form", mav.getViewName());
        Assert.assertNotNull(Context.getPersonService().getPersonAttributeType(1));
    }

    @Test
    public void shouldNotDeletePersonAttributeTypeWhenPersonAttributeTypesAreLocked() throws Exception {
        request.addParameter("purge", "Delete Person Attribute Type");

        ModelAndView mav = controller.handleRequest(request, response);
        Assert.assertEquals("The delete attempt should have failed!", "index.htm", mav.getViewName());
        Assert.assertNotEquals("PersonAttributeType.form", mav.getViewName());
        Assert.assertNotNull(Context.getPersonService().getPersonAttributeType(1));
    }

    @Test
    public void shouldNotRetirePersonAttributeTypeWhenPersonAttributeTypesAreLocked() throws Exception {
        request.addParameter("retire", "Retire Person Attribute Type");
        request.addParameter("retireReason", "Same reason");

        ModelAndView mav = controller.handleRequest(request, response);
        Assert.assertEquals("The retire attempt should have failed!", "index.htm", mav.getViewName());
        Assert.assertNotEquals("PersonAttributeType.form", mav.getViewName());
        Assert.assertNotNull(Context.getPersonService().getPersonAttributeType(1));
    }

    @Test
    public void shouldNotUnretirePersonAttributeTypeWhenPersonAttributeTypesAreLocked() throws Exception {
        request.addParameter("unretire", "Unretire Person Attribute Type");

        ModelAndView mav = controller.handleRequest(request, response);
        Assert.assertEquals("The unretire attempt should have failed!", "index.htm", mav.getViewName());
        Assert.assertNotEquals("PersonAttributeType.form", mav.getViewName());
        Assert.assertNotNull(Context.getPersonService().getPersonAttributeType(1));
    }
}