blob: 208752ddd675b9ff07c48c56660d7314531cc18d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
<<<<<<< Updated upstream
*
* 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
=======
*
* https://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
>>>>>>> Stashed changes
* limitations under the License.
*/
package org.apache.jdo.tck.api.persistencemanager.extent;
import java.util.Date;
import javax.jdo.Extent;
import javax.jdo.PersistenceManager;
import javax.jdo.Transaction;
import org.apache.jdo.tck.api.persistencemanager.PersistenceManagerTest;
import org.apache.jdo.tck.pc.company.Address;
import org.apache.jdo.tck.pc.company.Company;
import org.apache.jdo.tck.pc.company.Department;
import org.apache.jdo.tck.util.BatchTestRunner;
/**
* <B>Title:</B> GetExtentWithInstancesMadePersistentViaReachability <br>
* <B>Keywords:</B> inheritance extent <br>
* <B>Assertion ID:</B> A12.5.4-1. <br>
* <B>Assertion Description: </B> If an instance of a class or interface that has a managed extent
* is made persistent via reachability, the instance is put into the extent implicitly.
*/
public class GetExtentWithInstancesMadePersistentViaReachability extends PersistenceManagerTest {
/** */
private static final String ASSERTION_FAILED =
"Assertion A12.5.4-3 (GetExtentWithInstancesMadePersistentViaReachability) failed: ";
/**
* The <code>main</code> is called when the class is directly executed from the command line.
*
* @param args The arguments passed to the program.
*/
public static void main(String[] args) {
BatchTestRunner.run(GetExtentWithInstancesMadePersistentViaReachability.class);
}
/** */
public void test() {
pm = getPM();
createObjects(pm);
runTest(pm);
}
/** */
private void createObjects(PersistenceManager pm) {
Transaction tx = pm.currentTransaction();
tx.begin();
Company comp =
new Company(1L, "Sun Microsystems", new Date(), new Address(0, "", "", "", "", ""));
pm.makePersistent(comp);
// Add transient departments
comp.addDepartment(new Department(1L, "Department 1"));
comp.addDepartment(new Department(2L, "Department 2"));
comp.addDepartment(new Department(3L, "Department 3"));
tx.commit(); // Now the transient departments should be made persistent via reachability
}
/** */
private void runTest(PersistenceManager pm) {
Transaction tx = pm.currentTransaction();
tx.begin();
Extent<Department> e = pm.getExtent(Department.class, false);
boolean foundDep1 = false;
boolean foundDep2 = false;
boolean foundDep3 = false;
for (Department dep : e) {
switch (dep.getName()) {
case "Department 1":
foundDep1 = true;
break;
case "Department 2":
foundDep2 = true;
break;
case "Department 3":
foundDep3 = true;
break;
}
}
if (!foundDep1) {
fail(
ASSERTION_FAILED,
"Extent of class "
+ Department.class.getName()
+ " does not include instance with deptid 1L");
}
if (!foundDep2) {
fail(
ASSERTION_FAILED,
"Extent of class "
+ Department.class.getName()
+ " does not include instance with deptid 2L");
}
if (!foundDep3) {
fail(
ASSERTION_FAILED,
"Extent of class "
+ Department.class.getName()
+ " does not include instance with deptid 3L");
}
tx.commit();
}
}