Package com.google.appengine.datanucleus.test.jdo.UnownedUpgradeJDO

Examples of com.google.appengine.datanucleus.test.jdo.UnownedUpgradeJDO.HasOneToManyWithKey


    sideB2.setName("bar");
    beginTxn();
    pm.makePersistent(sideB2);
    commitTxn();

    HasOneToManyWithKey withKey = new HasOneToManyWithKey();
    withKey.addOther(KeyFactory.createKey("UnownedUpgradeJDO$SideB", sideB1.getId()));
    withKey.addOther(KeyFactory.createKey("UnownedUpgradeJDO$SideB", sideB2.getId()));
    beginTxn();
    pm.makePersistent(withKey);
    commitTxn();

    beginTxn();
    assertEquals(2, pm.getObjectById(
        HasOneToManyWithKey.class, withKey.getId()).getOthers().size());
    commitTxn();

    // Read back in using latest storage version, as unowned
    Map<String, String> props = Utils.newHashMap();
    props.put("datanucleus.appengine.datastoreEnableXGTransactions", Boolean.TRUE.toString());
    switchDatasource(PersistenceManagerFactoryName.transactional, props);

    beginTxn();
    HasOneToManyWithUnowned withUnowned =
        pm.getObjectById(HasOneToManyWithUnowned.class, withKey.getId());
    assertEquals(2, withUnowned.getOthers().size());
    assertEquals(sideB1.getId(), withUnowned.getOthers().get(0).getId());
    assertEquals(sideB2.getId(), withUnowned.getOthers().get(1).getId());
    commitTxn();
  }
View Full Code Here

TOP

Related Classes of com.google.appengine.datanucleus.test.jdo.UnownedUpgradeJDO.HasOneToManyWithKey

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.