blob: d1fef8582e7f6c4e568766c3dab29ccd2f68ca61 [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.distributedservers.rcm;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
/**
* Test to ensure deletes are not propogated when a delete occurs to an object who's
* descriptor is set to DO_NOT_SEND_CHANGES
*/
public class InvalidCacheSyncTypeTest extends ConfigurableCacheSyncDistributedTest {
protected Exception exception;
protected int cacheSyncType;
public InvalidCacheSyncTypeTest(int type) {
super();
setName("InvalidCacheSyncTypeTest(" + type + ")");
cacheSyncType = type;
cacheSyncConfigValues.put(Employee.class, type);
}
@Override
public void setup() {
try {
super.setup();
} catch (Exception e) {
exception = e;
}
}
@Override
public void verify() {
if ((exception == null) && ((cacheSyncType < 0) || (cacheSyncType > 4))) {
throw new TestErrorException("An exception is expected when an invalid cache sync type is set.");
}
}
}