blob: 82b10611f425b7e017bba10e11edf9a192ab691b [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.transactions;
import org.eclipse.persistence.testing.models.employee.domain.*;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.expressions.*;
/**
* This class tests if the commit transaction feature
* works for database inserts.
*/
public class InsertCommitTransactionTest extends AutoVerifyTestCase {
Employee employee;
Expression searchExpression;
public InsertCommitTransactionTest() {
super();
createEmployeeAndSearchExpression();
}
private void createEmployeeAndSearchExpression() {
// Create the example employee
employee = (org.eclipse.persistence.testing.models.employee.domain.Employee)new org.eclipse.persistence.testing.models.employee.domain.EmployeePopulator().basicEmployeeExample1();
employee.setFirstName("Timugen");
employee.setLastName("Singaera");
employee.addResponsibility("Answer the phones.");
// Create an expression to retreive the employee from the database
ExpressionBuilder expressionBuilder = new ExpressionBuilder();
Expression exp1;
Expression exp2;
Expression expression;
exp1 = expressionBuilder.get("firstName").equal(employee.getFirstName());
exp2 = expressionBuilder.get("lastName").equal(employee.getLastName());
searchExpression = exp1.or(exp2);
}
@Override
public String getDescription() {
return "This test verifies that the commit transaction feature works for database inserts.";
}
private Employee getEmployee() {
return employee;
}
private Expression getSearchExpression() {
return searchExpression;
}
@Override
public void reset() {
// Delete the employee object from the database
getDatabaseSession().deleteObject(getEmployee());
}
@Override
protected void resetVerify() {
Session session = getSession();
// Read the object from the database
Employee databaseEmployee = (Employee)session.readObject(Employee.class, getSearchExpression());
// If the employee object IS in the database then there is a problem.
if (databaseEmployee != null) {
throw new TestErrorException("The example employee object should have been deleted from the database.");
}
}
@Override
protected void test() {
getDatabaseSession().beginTransaction();
getDatabaseSession().insertObject(getEmployee());
getDatabaseSession().commitTransaction();
}
@Override
protected void verify() {
Session session = getSession();
// Read the object from the database
Employee databaseEmployee = (Employee)session.readObject(Employee.class, getSearchExpression());
// If the employee object is NOT in the database then there is a problem.
if (databaseEmployee == null) {
throw new TestErrorException("Employee object should have been inserted into database after commit transaction");
}
// Check that the employee read from the database is the same as the one in memory.
if (!compareObjects(getEmployee(), databaseEmployee)) {
throw new TestErrorException("The object read from the database, '" + databaseEmployee + "' does not match the originial, '" + getEmployee() + ".");
}
}
}