/* * 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.math.BigDecimal; import java.util.ArrayList; import java.util.HashSet; import java.util.Set; 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 static org.junit.Assert.assertNotNull; import org.junit.Test; import org.junit.runner.RunWith; 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 TipoClienteControllerTest extends BaseControllerTest { @Test public void debieraMostrarListaDeTiposDeCliente() throws Exception { log.debug("Debiera mostrar lista de tiposDeCliente"); this.mockMvc.perform( get("/admin/tipoCliente")) .andExpect(status().isOk()) .andExpect(forwardedUrl("/WEB-INF/jsp/admin/tipoCliente/lista.jsp")) .andExpect(model().attributeExists("tiposDeCliente")) .andExpect(model().attributeExists("paginacion")) .andExpect(model().attributeExists("paginas")) .andExpect(model().attributeExists("pagina")); } @Test public void debieraMostrarTipoCliente() throws Exception { log.debug("Debiera mostrar tipoCliente"); 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); TipoCliente tipoCliente = new TipoCliente("tst-01", "test-01", new BigDecimal("0"), empresa); currentSession().save(tipoCliente); Long id = tipoCliente.getId(); this.mockMvc.perform(get("/admin/tipoCliente/ver/" + id)) .andExpect(status().isOk()) .andExpect(forwardedUrl("/WEB-INF/jsp/admin/tipoCliente/ver.jsp")) .andExpect(model().attributeExists("tipoCliente")); } @Test public void debieraCrearTipoCliente() throws Exception { 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); Rol rol = new Rol("ROLE_TEST"); currentSession().save(rol); Set<Rol> roles = new HashSet<>(); roles.add(rol); Almacen almacen = new Almacen("TST", "TEST", empresa); currentSession().save(almacen); Usuario usuario = new Usuario("bugs@um.edu.mx", "apPaterno","apMaterno", "TEST-01", "TEST-01"); usuario.setEmpresa(empresa); usuario.setAlmacen(almacen); usuario.setRoles(roles); currentSession().save(usuario); Long id = usuario.getId(); assertNotNull(id); this.authenticate(usuario, usuario.getPassword(), new ArrayList<GrantedAuthority>(usuario.getRoles())); this.mockMvc.perform(post("/admin/tipoCliente/crea") .param("nombre", "TEST--01") .param("descripcion", "TEST--01")) .andExpect(status().isOk()) .andExpect(flash().attributeExists("message")) .andExpect(flash().attribute("message", "tipoCliente.creado.message")); } }