blob: 2e89ae7c6515a29b309db90f6506583cdfa10ab7 [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:
// 09/10/2008-1.1 Chris Delahunt
// - 244206: discoverUnregisteredNewObjects doesn't populate knownNewObjects but unregisteredExstingObjects
package org.eclipse.persistence.testing.tests.collections;
import java.math.BigDecimal;
import junit.framework.TestCase;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.testing.framework.AutoVerifyTestCase;
import org.eclipse.persistence.testing.models.collections.Location;
import org.eclipse.persistence.testing.models.collections.Restaurant;
/**
* BUG - 244206. Tests unregistered new objects are found in a ManyToMany relation
* when dontPerformValidation is specified.
*
*/
public class CollectionInsertDetectionTest extends AutoVerifyTestCase {
public CollectionInsertDetectionTest() {
super();
}
@Override
public void reset() {
rollbackTransaction();
}
@Override
protected void setup() {
beginTransaction();
}
@Override
protected void test() {
UnitOfWork uow = getSession().acquireUnitOfWork();
uow.dontPerformValidation();
Restaurant resClone = (Restaurant)uow.readObject(Restaurant.class);
Location location = Location.example1();
resClone.addLocation(location);
uow.assignSequenceNumbers();
BigDecimal id = location.getId();
assertNotNull("Location ID should be assigned", id );
uow.commit();
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
assertNotNull("Location object was not inserted", getSession().readObject(location) );
}
}