mx.edu.um.mateo.general.web.EmpresaControllerTest.java Source code

Java tutorial

Introduction

Here is the source code for mx.edu.um.mateo.general.web.EmpresaControllerTest.java

Source

/*
 * The MIT License
 *
 * Copyright 2012 J. David Mendoza <jdmendoza@um.edu.mx>.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package mx.edu.um.mateo.general.web;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Set;
import mx.edu.um.mateo.contabilidad.model.Ejercicio;
import mx.edu.um.mateo.contabilidad.model.EjercicioPK;
import mx.edu.um.mateo.general.dao.EmpresaDao;
import mx.edu.um.mateo.general.model.*;
import mx.edu.um.mateo.general.test.BaseControllerTest;
import mx.edu.um.mateo.general.test.GenericWebXmlContextLoader;
import mx.edu.um.mateo.inventario.model.Almacen;
import org.apache.commons.lang.StringUtils;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import static org.springframework.test.web.server.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.server.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.server.result.MockMvcResultMatchers.*;
import org.springframework.transaction.annotation.Transactional;

/**
 *
 * @author J. David Mendoza <jdmendoza@um.edu.mx>
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(loader = GenericWebXmlContextLoader.class, locations = { "classpath:mateo.xml",
        "classpath:security.xml", "classpath:dispatcher-servlet.xml" })
@Transactional
public class EmpresaControllerTest extends BaseControllerTest {

    @Autowired
    private EmpresaDao empresaDao;

    @Test
    public void debieraMostrarListaDeEmpresas() throws Exception {
        log.debug("Debiera mostrar lista de empresas");
        this.mockMvc.perform(get("/admin/empresa")).andExpect(status().isOk())
                .andExpect(forwardedUrl("/WEB-INF/jsp/admin/empresa/lista.jsp"))
                .andExpect(model().attributeExists("empresas")).andExpect(model().attributeExists("paginacion"))
                .andExpect(model().attributeExists("paginas")).andExpect(model().attributeExists("pagina"));
    }

    @Test
    public void debieraMostrarEmpresa() throws Exception {
        log.debug("Debiera mostrar empresa");
        Organizacion organizacion = new Organizacion("tst-01", "test-01", "test-01");
        currentSession().save(organizacion);
        Empresa empresa = new Empresa("tst-01", "test-01", "test-01", "000000000001", organizacion);
        currentSession().save(empresa);
        Proveedor proveedor = new Proveedor(empresa.getNombre(), empresa.getNombreCompleto(), empresa.getRfc(),
                true, empresa);
        currentSession().save(proveedor);
        TipoCliente tipoCliente = new TipoCliente("TIPO1", "TIPO1", empresa);
        currentSession().save(tipoCliente);
        Cliente cliente = new Cliente(empresa.getNombre(), empresa.getNombreCompleto(), empresa.getRfc(),
                tipoCliente, true, empresa);
        currentSession().save(cliente);
        Long id = empresa.getId();

        this.mockMvc.perform(get("/admin/empresa/ver/" + id)).andExpect(status().isOk())
                .andExpect(forwardedUrl("/WEB-INF/jsp/admin/empresa/ver.jsp"))
                .andExpect(model().attributeExists("empresa"));
    }

    @Test
    public void debieraCrearEmpresa() throws Exception {
        Organizacion organizacion = new Organizacion("TEST01", "TEST01", "TEST01");
        currentSession().save(organizacion);
        EjercicioPK ejercicioPK = new EjercicioPK("TEST", organizacion);
        Byte x = new Byte("0");
        Ejercicio ejercicio = new Ejercicio(ejercicioPK, "TEST", "A", StringUtils.EMPTY, StringUtils.EMPTY,
                StringUtils.EMPTY, StringUtils.EMPTY, x, x);
        currentSession().save(ejercicio);
        Empresa otraEmpresa = new Empresa("tst-01", "test-01", "test-01", "000000000001", organizacion);
        currentSession().save(otraEmpresa);
        Almacen almacen = new Almacen("TST", "TEST01", otraEmpresa);
        currentSession().save(almacen);
        Rol rol = new Rol("ROLE_TEST");
        currentSession().save(rol);
        Set<Rol> roles = new HashSet<>();
        roles.add(rol);
        Usuario usuario = new Usuario("bugs@um.edu.mx", "apPaterno", "apMaterno", "TEST-01", "TEST-01");
        usuario.setEmpresa(otraEmpresa);
        usuario.setAlmacen(almacen);
        usuario.setRoles(roles);
        usuario.setEjercicio(ejercicio);
        currentSession().save(usuario);

        this.authenticate(usuario, usuario.getPassword(), new ArrayList<>(usuario.getAuthorities()));

        this.mockMvc
                .perform(post("/admin/empresa/crea").param("codigo", "tst-02").param("nombre", "TEST--02")
                        .param("nombreCompleto", "TEST--02").param("rfc", "000000000001"))
                .andExpect(status().isOk()).andExpect(flash().attributeExists("message"))
                .andExpect(flash().attribute("message", "empresa.creada.message"));
    }

    @Test
    public void debieraActualizarEmpresa() throws Exception {
        Organizacion organizacion = new Organizacion("TEST01", "TEST01", "TEST01");
        currentSession().save(organizacion);
        EjercicioPK ejercicioPK = new EjercicioPK("TEST", organizacion);
        Byte x = new Byte("0");
        Ejercicio ejercicio = new Ejercicio(ejercicioPK, "TEST", "A", StringUtils.EMPTY, StringUtils.EMPTY,
                StringUtils.EMPTY, StringUtils.EMPTY, x, x);
        currentSession().save(ejercicio);
        Empresa otraEmpresa = new Empresa("tst-01", "test-01", "test-01", "000000000001", organizacion);
        currentSession().save(otraEmpresa);
        Almacen almacen = new Almacen("TST", "TEST01", otraEmpresa);
        currentSession().save(almacen);
        Rol rol = new Rol("ROLE_TEST");
        currentSession().save(rol);
        Set<Rol> roles = new HashSet<>();
        roles.add(rol);
        Usuario usuario = new Usuario("bugs@um.edu.mx", "apPaterno", "apMaterno", "TEST-01", "TEST-01");
        usuario.setEmpresa(otraEmpresa);
        usuario.setAlmacen(almacen);
        usuario.setRoles(roles);
        usuario.setEjercicio(ejercicio);
        currentSession().save(usuario);

        this.authenticate(usuario, usuario.getPassword(),
                new ArrayList<GrantedAuthority>(usuario.getAuthorities()));

        Empresa empresa = otraEmpresa;

        this.mockMvc
                .perform(post("/admin/empresa/actualiza").param("id", empresa.getId().toString())
                        .param("version", empresa.getVersion().toString()).param("codigo", "PRUEBA")
                        .param("nombre", empresa.getNombre()).param("nombreCompleto", empresa.getNombreCompleto())
                        .param("rfc", "000000000001"))
                .andExpect(status().isOk()).andExpect(flash().attributeExists("message"))
                .andExpect(flash().attribute("message", "empresa.actualizada.message"));

        currentSession().refresh(empresa);
        assertEquals("PRUEBA", empresa.getCodigo());
    }
}