Package org.hibernate.test.timestamp

Source Code of org.hibernate.test.timestamp.TimestampTest

//$Id: TimestampTest.java 10977 2006-12-12 23:28:04Z steve.ebersole@jboss.com $
package org.hibernate.test.timestamp;

import java.util.Date;

import junit.framework.Test;

import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit.functional.FunctionalTestCase;
import org.hibernate.testing.junit.functional.FunctionalTestClassTestSuite;

/**
* @author Gavin King
*/
public class TimestampTest extends FunctionalTestCase {
 
  public TimestampTest(String str) {
    super(str);
  }

  public String[] getMappings() {
    return new String[] { "timestamp/User.hbm.xml" };
  }

  public void configure(Configuration cfg) {
    cfg.setProperty(Environment.GENERATE_STATISTICS, "true");
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( TimestampTest.class );
  }
 
  public void testUpdateFalse() {

    getSessions().getStatistics().clear();
   
    Session s = openSession();
    Transaction t = s.beginTransaction();
    User u = new User( "gavin", "secret", new Person("Gavin King", new Date(), "Karbarook Ave") );
    s.persist(u);
    s.flush();
    u.getPerson().setName("XXXXYYYYY");
    t.commit();
    s.close();
   
    assertEquals( 1, getSessions().getStatistics().getEntityInsertCount() );
    assertEquals( 0, getSessions().getStatistics().getEntityUpdateCount() );

    s = openSession();
    t = s.beginTransaction();
    u = (User) s.get(User.class, "gavin");
    assertEquals( u.getPerson().getName(), "Gavin King" );
    s.delete(u);
    t.commit();
    s.close();
   
    assertEquals( 1, getSessions().getStatistics().getEntityDeleteCount() );
  }
 
  public void testComponent() {
   
    Session s = openSession();
    Transaction t = s.beginTransaction();
    User u = new User( "gavin", "secret", new Person("Gavin King", new Date(), "Karbarook Ave") );
    s.persist(u);
    s.flush();
    u.getPerson().setCurrentAddress("Peachtree Rd");
    t.commit();
    s.close();
   
    s = openSession();
    t = s.beginTransaction();
    u = (User) s.get(User.class, "gavin");
    u.setPassword("$ecret");
    t.commit();
    s.close();

    s = openSession();
    t = s.beginTransaction();
    u = (User) s.get(User.class, "gavin");
    assertEquals( u.getPassword(), "$ecret" );
    s.delete(u);
    t.commit();
    s.close();
  }

}
TOP

Related Classes of org.hibernate.test.timestamp.TimestampTest

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.