blob: 9f6baf96efda3f6782f7e56f2eb1c3a39be78dee [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.identitymaps.cache;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.internal.identitymaps.*;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
public class InsertOverflowTest extends AutoVerifyTestCase {
CacheIdentityMap cache;
int originalMaxSize;
public InsertOverflowTest(CacheIdentityMap cache) {
this.cache = cache;
this.originalMaxSize = cache.getMaxSize();
}
@Override
public void test() {
for (int index = 0; index < (originalMaxSize * 10); index++) {
Employee employee = new Employee();
java.math.BigDecimal id = new java.math.BigDecimal((double)index * 101);
java.util.Vector primaryKeys = new java.util.Vector();
employee.setId(id);
employee.setFirstName("Mr. " + id);
primaryKeys.addElement(id);
cache.put(primaryKeys, employee, null, 0);
}
}
@Override
public void verify() {
// Check to see if maximum size was maintained.
if (cache.getSize() != originalMaxSize) {
throw new TestErrorException("Cache identity map " + cache + " contains " + cache.getSize() + " objects. " + "The specified maximum size for this cache was " + originalMaxSize + ".");
}
// See if cache actually contains last proper elements
for (int index = ((originalMaxSize * 10) - originalMaxSize);
index < (originalMaxSize * 10); index++) {
java.math.BigDecimal id = new java.math.BigDecimal((double)index * 101);
java.util.Vector primaryKeys = new java.util.Vector();
primaryKeys.addElement(id);
if (!cache.containsKey(primaryKeys)) {
throw new TestErrorException("Cache should contain value with keys " + primaryKeys + " but does not.");
}
}
}
}