Package org.magicbox.domain

Examples of org.magicbox.domain.Utente


  public void setUp() throws Exception {}
 
  public void tearDown() throws Exception {}
 
  public void testCostruttoreVuoto() {
    Utente utente = new UtenteImpl();
    assertTrue(utente.getId() == -1);
    assertTrue(-1 == utente.getIdGruppo());
    assertTrue(-1 == utente.getCentro());
    assertNull(utente.getNominativo());
    assertNull(utente.getTessera());
    assertNull(utente.getCap());
    assertNull(utente.getCellulare());
    assertNull(utente.getCitta());
    assertNull(utente.getCorris());
    assertNull(utente.getEmail());
    assertNull(utente.getIndirizzo());
    assertNull(utente.getNominativo());
    assertNull(utente.getProvincia());
    assertNotNull(utente.getRecapiti());
    assertNull(utente.getTelefonoCasa());
    assertNull(utente.getTelefonoDomicilio());
    assertNull(utente.getTelefonoLavoro());
    assertNull(utente.getTessera());
  }
View Full Code Here


   
    RecapitoTelefonico recapitoTel = new RecapitoTelefonicoImpl( "3391234567", "070123456", "", "");
    Indirizzo indirizzo = new IndirizzoImpl( "09100", "Cagliari", "CA",
        "Via casasua 1");
    UtenteLight utenteLight = new UtenteLightImpl("101","paolino paperino",0,2);
    Utente utente = new UtenteImpl(utenteLight,46, "pippo@yahoo.it", true, indirizzo, recapitoTel);   
    assertTrue(utente.getId()== 0);
    assertTrue(2 == utente.getIdGruppo());
    assertTrue(46 == utente.getCentro());
    assertEquals("paolino paperino",utente.getNominativo());
    assertEquals("101",utente.getTessera());
    assertEquals("09100",utente.getCap());
    assertEquals("3391234567",utente.getCellulare());
    assertEquals("Cagliari",utente.getCitta());
    assertTrue(utente.getCorris());
    assertEquals("pippo@yahoo.it",utente.getEmail());
    assertEquals("Via casasua 1",utente.getIndirizzo());
    assertEquals("paolino paperino",utente.getNominativo());
    assertEquals("CA",utente.getProvincia());
    assertNotNull(utente.getRecapiti());
    assertEquals("070123456",utente.getTelefonoDomicilio());
    assertEquals("",utente.getTelefonoCasa());
    assertEquals("",utente.getTelefonoLavoro());
  }
View Full Code Here

    _reqMock.getSession().setAttribute(Constant.ID_CENTRO_SESSIONE, 46l);
    RecapitoTelefonico recapitoTel = new RecapitoTelefonicoImpl( "3391234567", "070123456", "", "");
    Indirizzo indirizzo = new IndirizzoImpl( "09100", "Cagliari", "CA",
        "Via casasua 1");
    UtenteLight utenteLight = new UtenteLightImpl("101","pippo",0,2);
    Utente utente = new UtenteImpl(utenteLight,46, "pippo@yahoo.it", true, indirizzo, recapitoTel);
    ModelAndView mav = _controller.onSubmit(_reqMock, _resMock, utente,
        new BindException(utente, Constant.DONOR));
    assertEquals(Constant.REDIRECT_ELENCO_DONORS, mav.getViewName());

    dbUtenti.pulisciDb();
View Full Code Here

    _reqMock.getSession().setAttribute(Constant.ID_CENTRO_SESSIONE, 46l);
    RecapitoTelefonico recapitoTel = new RecapitoTelefonicoImpl( "3391234567", "070123456", "", "");
    Indirizzo indirizzo = new IndirizzoImpl( "09100", "Cagliari", "CA",
        "Via casasua 1");
    UtenteLight utenteLight = new UtenteLightImpl("","pippo",0,6667);
    Utente utente = new UtenteImpl(utenteLight,46, "pippo@yahoo.it", true, indirizzo, recapitoTel);

    ModelAndView mav = _controller.onSubmit(_reqMock, _resMock, utente,
        new BindException(utente, Constant.DONOR));
    assertEquals(Constant.REDIRECT_ELENCO_DONORS, mav.getViewName());
View Full Code Here

    _reqMock.getSession().setAttribute(Constant.ID_CENTRO_SESSIONE, new Long(46));
    _reqMock.setParameter(Constant.ID, "1");
   
    ModelAndView mav = _controller.dettaglio(_reqMock, _resMock);
    assertEquals("donors/dettaglioDonatore", mav.getViewName());
    Utente donor = (Utente)mav.getModel().get(Constant.DONOR);
    assertNull(donor);
   
    dbUtenti.pulisciDb();
    dbCentro.pulisciDb();
    dbUtenti = null;
View Full Code Here

    _validator = (UtenteValidator) _ctx.getBean("magicbox.admin.utenteValidator");
  }
 
  public void testAllEmpty() {

    Utente  utente = new UtenteImpl();
    Errors errors = new BindException(utente, "command");

    _validator.validate(utente, errors);
    assertTrue(errors.hasErrors());
View Full Code Here

    public boolean supports(Class clazz) {
        return UtenteImpl.class.isAssignableFrom(clazz);
    }

    public void validate(Object command, Errors errors) {
        Utente utente = (UtenteImpl) command;
        checkNominativo(utente, errors);
        checkCellulare(utente, errors);
        checkCap(utente, errors);
        checkTelefonoCasa(utente, errors);
        checkTelefonoDomicilio(utente, errors);
View Full Code Here

                    executor.startBatch();
                    Iterator<Utente> iter = utenti.iterator();

                    while (iter.hasNext()) {
                        Utente utente = (Utente) iter.next();
                        executor.insert("insertUtente", utente);
                    }
                    ris = executor.executeBatch();
                } catch (SQLException e) {
                    Logger log = Logger.getLogger(this.getClass());
View Full Code Here

    db.preparaDb();

    List<UtenteLight> utenti = _service.getUtentiByCap("46010", 46, 0);
    assertEquals(utenti.size(), 1);
    UtenteLight utente = utenti.get(0);
    Utente utenteRecuperato = _service.getUtente(utente.getId(), 46);

    assertEquals(utente.getId(), utenteRecuperato.getId());
    assertEquals(utente.getNominativo(), utenteRecuperato.getNominativo());
    assertEquals(utente.getTessera(), utenteRecuperato.getTessera());

    db.pulisciDb();
    dbCentro.pulisciDb();
    db = null;
    dbCentro = null;
View Full Code Here

    RecapitoTelefonico recapitoTel = new RecapitoTelefonicoImpl(
        "3391234567", "070123457", "070123458", "070123456");
    Indirizzo indirizzo = new IndirizzoImpl("09129", "Cagliari", "CA",
        "Via Casamia 1");
    UtenteLight utenteLight = new UtenteLightImpl("101","Baldussu Aldo",0,2);
    Utente utente = new UtenteImpl(utenteLight,46, "desmax74@yahoo.it", true, indirizzo, recapitoTel);
    Long id = _service.saveUtente(utente);
    Utente utenteRecuperato = _service.getUtente(id, 46);
    assertNotNull(utenteRecuperato);

    dbUtenti.pulisciDb();
    dbCentro.pulisciDb();
    dbUtenti = null;
View Full Code Here

TOP

Related Classes of org.magicbox.domain.Utente

Copyright © 2018 www.massapicom. 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.