blob: 76fd6f1ff5259f4b398db2d14c3403021c5abb99 [file] [log] [blame]
/*
* Copyright (c) 2013, 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
package org.eclipse.persistence.testing.tests.distributedservers.rcm.jgroups;
import org.eclipse.persistence.sessions.DatabaseSession;
import org.eclipse.persistence.sessions.Session;
import org.eclipse.persistence.testing.tests.distributedservers.DistributedServer;
import org.eclipse.persistence.testing.tests.distributedservers.rcm.broadcast.BroadcastDistributedServersModel;
import org.eclipse.persistence.testing.tests.distributedservers.rcm.broadcast.BroadcastSetupHelper;
public class JGroupsDistributedServersModel extends BroadcastDistributedServersModel {
public JGroupsDistributedServersModel() {
setDescription("Tests cache synchronization with JGroups.");
// maximum wait time to give a chance to remote command recipient to process it before verification.
timeToWaitBeforeVerify = 10000;
}
@Override
public void addTests() {
addSuperTests();
addTest(new JGroupsConfigurationTest());
// substitute each test with wrapped test - an instance of
// BroadcastSetupHelper.TestWrapperWithEventLock, which contains
// the original test as an internal test.
// The wrapper methods call the respective methods on the internal test,
// adding a wait after internalTest.test() method is called
// (in case there was merge with changes on the source side)
// until either the target side merges the sent changes or exception occurs.
BroadcastSetupHelper.wrapAllTestCases(this, timeToWaitBeforeVerify);
}
/**
* Factory method for a DistributedServer.
*/
@Override
public DistributedServer createDistributedServer(Session session) {
return new JGroupsDistributedServer((DatabaseSession)session);
}
@Override
protected JGroupsSetupHelper getHelper() {
return JGroupsSetupHelper.getHelper();
}
@Override
public boolean requiresRegistry() {
return false;
}
}