blob: 2c244e4e87b885ea5e58443cae86f3e10ea35f00 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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.security;
import org.eclipse.persistence.testing.framework.TestModel;
import org.eclipse.persistence.testing.framework.TestSuite;
import org.eclipse.persistence.testing.tests.security.SecurityOnInitializingAttributeMethodTest.AttributeMethodAbstractSession;
import org.eclipse.persistence.testing.tests.security.SecurityOnInitializingAttributeMethodTest.AttributeMethodOneArg;
import org.eclipse.persistence.testing.tests.security.SecurityOnInitializingAttributeMethodTest.AttributeMethodSession;
import org.eclipse.persistence.testing.tests.security.SecurityWhileInitializingClassExtractionMethodTest.ExtractionAbstractRecord;
import org.eclipse.persistence.testing.tests.security.SecurityWhileInitializingClassExtractionMethodTest.ExtractionRecord;
import org.eclipse.persistence.testing.tests.security.SecurityWhileInitializingCopyPolicyTest.Policy;
import org.eclipse.persistence.testing.tests.security.SecurityWhileInitializingCopyPolicyTest.WorkingPolicy;
/**
* Test model for Toplink's security classes JCEEncryptor and OldEncryptor.
*
* @author Guy Pelletier
*/
public class SecurityTestModel extends TestModel {
public SecurityTestModel() {
setDescription("This model tests the security features of TopLink.");
}
@Override
public void addRequiredSystems() {
// none at this time
}
@Override
public void addTests() {
addTest(getValidationSecurityTestSuite());
addTest(new DatabaseLoginWithNoEncryptorTest());
}
public static TestSuite getValidationSecurityTestSuite() {
TestSuite suite = new TestSuite();
suite.setName("Validation Security Tests");
suite.setDescription("This suite includes Validation tests on security (Tests originally in validation model)");
suite.addTest(new SecurityWhileInitializingInstantiationPolicyTest());//shannon added
suite.addTest(new SecurityOnFindMethodTest());//ian added
suite.addTest(new SecurityOnInitializingAttributeMethodTest(AttributeMethodOneArg.class));//ian added
suite.addTest(new SecurityOnInitializingAttributeMethodTest(AttributeMethodAbstractSession.class));//ian added
suite.addTest(new SecurityOnInitializingAttributeMethodTest(AttributeMethodSession.class));//ian added
suite.addTest(new SecurityWhileInitializingAttributesInInstanceVariableAccessorTest());//ian added
suite.addTest(new SecurityWhileInitializingAttributesInMethodAccessorTest());//ian added
suite.addTest(new SecurityWhileInitializingClassExtractionMethodTest(ExtractionAbstractRecord.class));//ian added
suite.addTest(new SecurityWhileInitializingClassExtractionMethodTest(ExtractionRecord.class));//ian added
suite.addTest(new SecurityWhileInitializingCopyPolicyTest(Policy.class));//ian added
suite.addTest(new SecurityWhileInitializingCopyPolicyTest(WorkingPolicy.class));
return suite;
}
/**
* Return the JUnit suite to allow JUnit runner to find it.
* Unfortunately JUnit only allows suite methods to be static,
* so it is not possible to generically do this.
*/
public static junit.framework.TestSuite suite() {
return new SecurityTestModel();
}
}