blob: f4db3e5c59a9d7768bd667d5b1e53a42bfe3e781 [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.sessionbroker;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.framework.WriteObjectTest;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
public class SequnceSettingOnRemoteTest extends WriteObjectTest {
public SequnceSettingOnRemoteTest() {
setDescription("The test for sequence setup within the remote session");
}
@Override
protected void setup() {
getAbstractSession().beginTransaction();
}
@Override
protected void test() {
UnitOfWork uow = getSession().acquireUnitOfWork();
Employee newEmployee = new Employee();
newEmployee.setFirstName("Al");
newEmployee.setLastName("Gore");
uow.assignSequenceNumber(newEmployee);
if (newEmployee.getId() == null) {
throw new TestErrorException("Sequencing setup at the remote session fails.");
}
uow.registerObject(newEmployee);
uow.commit();
}
@Override
protected void verify() {
}
}