Package com.google.appengine.datanucleus.jdo

Source Code of com.google.appengine.datanucleus.jdo.JDODatastoreIdentityTest

/**********************************************************************
Copyright (c) 2011 Google Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
**********************************************************************/
package com.google.appengine.datanucleus.jdo;

import java.util.Set;

import javax.jdo.JDOObjectNotFoundException;

import com.google.appengine.datanucleus.test.jdo.HasDatastoreIdentityChildJDO;
import com.google.appengine.datanucleus.test.jdo.HasDatastoreIdentityParentJDO;

/**
* Tests for datastore-identity with JDO.
*/
public class JDODatastoreIdentityTest extends JDOTestCase {

  public void testInsertUpdate_IdGen() {
    HasDatastoreIdentityParentJDO pojo = new HasDatastoreIdentityParentJDO();
    pojo.setName("First Name");

    beginTxn();
    pm.makePersistent(pojo);
    commitTxn();
    Object id = pm.getObjectId(pojo);
    pm.evictAll();

    beginTxn();
    HasDatastoreIdentityParentJDO pojo2 = (HasDatastoreIdentityParentJDO)pm.getObjectById(id);
    assertNotNull(pojo2);
    assertEquals("First Name", pojo2.getName());
    pojo2.setName("Second Name");
    commitTxn();
    pm.evictAll();

    beginTxn();
    pojo2 = (HasDatastoreIdentityParentJDO)pm.getObjectById(id);
    assertNotNull(pojo2);
    assertEquals("Second Name", pojo2.getName());

    pm.deletePersistent(pojo2);
    commitTxn();
    pm.evictAll();

    beginTxn();
    try {
      pojo2 = (HasDatastoreIdentityParentJDO)pm.getObjectById(id);
      fail("Returned object even though it was deleted");
    } catch (JDOObjectNotFoundException onfe) {
      // expected
    }
    commitTxn();
  }

  public void testOneToMany() {
    HasDatastoreIdentityParentJDO pojo = new HasDatastoreIdentityParentJDO();
    pojo.setName("First Name");
    HasDatastoreIdentityChildJDO child1 = new HasDatastoreIdentityChildJDO();
    child1.setName("Child 1");
    pojo.getChildren().add(child1);
    HasDatastoreIdentityChildJDO child2 = new HasDatastoreIdentityChildJDO();
    child2.setName("Child 2");
    pojo.getChildren().add(child2);

    pm.makePersistent(pojo);
    Object id = pm.getObjectId(pojo);
    pm.evictAll();

    HasDatastoreIdentityParentJDO pojo2 = (HasDatastoreIdentityParentJDO)pm.getObjectById(id);
    assertNotNull(pojo2);
    assertEquals("First Name", pojo2.getName());
    Set<HasDatastoreIdentityChildJDO> children = pojo2.getChildren();
    assertNotNull(children);
    assertEquals(2, children.size());
    pm.evictAll();

    pojo2 = (HasDatastoreIdentityParentJDO)pm.getObjectById(id);
    assertNotNull(pojo2);
    assertEquals("First Name", pojo2.getName());
  }
}
TOP

Related Classes of com.google.appengine.datanucleus.jdo.JDODatastoreIdentityTest

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.