blob: 739ade60bda30d41c794f52a0e84cb5d2fe443ca [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.validation;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.descriptors.RelationalDescriptor;
import org.eclipse.persistence.descriptors.copying.CloneCopyPolicy;
import org.eclipse.persistence.exceptions.DescriptorException;
import org.eclipse.persistence.exceptions.IntegrityChecker;
import org.eclipse.persistence.exceptions.EclipseLinkException;
/**
* Code coverage test for clone copy policy exceptions.
*/
public class TargetInvocationWhileCloningTest extends ExceptionTest {
public TargetInvocationWhileCloningTest() {
setDescription("This tests Target Invocation While Cloning (TL-ERROR 97)");
}
org.eclipse.persistence.testing.tests.validation.EmployeeWithProblems person;
IntegrityChecker orgIntegrityChecker;
CloneCopyPolicy policy;
ClassDescriptor descriptor;
@Override
protected void setup() {
expectedException = DescriptorException.targetInvocationWhileCloning(null, null, null, null);
person = new org.eclipse.persistence.testing.tests.validation.EmployeeWithProblems();
descriptor = new RelationalDescriptor();
descriptor.setJavaClass(org.eclipse.persistence.testing.tests.validation.EmployeeWithProblems.class);
policy = new CloneCopyPolicy();
policy.setMethodName("getIllegalAccess");
policy.setDescriptor(descriptor);
orgIntegrityChecker = getSession().getIntegrityChecker();
getSession().setIntegrityChecker(new IntegrityChecker()); //moved into setup
getSession().getIntegrityChecker().dontCatchExceptions(); //moved into setup
}
@Override
public void reset() {
getSession().setIntegrityChecker(orgIntegrityChecker);
}
@Override
public void test() {
try {
policy.initialize(getSession());
policy.buildClone(person, getSession());
} catch (EclipseLinkException exception) {
caughtException = exception;
}
}
}