blob: 139bf3a488d6927ad509ede6833a566b9933cdbf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.p2p;
import java.net.URL;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteException;
import org.apache.ignite.configuration.DeploymentMode;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.events.Event;
import org.apache.ignite.lang.IgnitePredicate;
import org.apache.ignite.testframework.GridTestExternalClassLoader;
import org.apache.ignite.testframework.config.GridTestProperties;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.apache.ignite.testframework.junits.common.GridCommonTest;
import org.junit.Test;
/**
*
*/
@SuppressWarnings({"ProhibitedExceptionDeclared"})
@GridCommonTest(group = "P2P")
public class GridP2PTimeoutSelfTest extends GridCommonAbstractTest {
/** Current deployment mode. Used in {@link #getConfiguration(String)}. */
private DeploymentMode depMode;
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
// Override P2P configuration to exclude Task and Job classes
cfg.setPeerClassLoadingLocalClassPathExclude(GridP2PTestTask.class.getName(), GridP2PTestJob.class.getName());
cfg.setDeploymentMode(depMode);
cfg.setNetworkTimeout(1000);
return cfg;
}
/**
* @param depMode deployment mode.
* @throws Exception If failed.
*/
@SuppressWarnings("unchecked")
private void processTest(DeploymentMode depMode) throws Exception {
this.depMode = depMode;
try {
Ignite g1 = startGrid(1);
Ignite g2 = startGrid(2);
String path = GridTestProperties.getProperty("p2p.uri.cls");
GridTestExternalClassLoader ldr = new GridTestExternalClassLoader(new URL[] {new URL(path)});
Class task1 = ldr.loadClass("org.apache.ignite.tests.p2p.P2PTestTaskExternalPath1");
Class task2 = ldr.loadClass("org.apache.ignite.tests.p2p.P2PTestTaskExternalPath2");
ldr.setTimeout(100);
g1.compute().execute(task1, g2.cluster().localNode().id());
ldr.setTimeout(2000);
try {
g1.compute().execute(task2, g2.cluster().localNode().id());
assert false; // Timeout exception must be thrown.
}
catch (IgniteException ignored) {
// Throwing exception is a correct behaviour.
}
}
finally {
stopAllGrids();
}
}
/**
* @param depMode deployment mode.
* @throws Exception If failed.
*/
private void processFilterTest(DeploymentMode depMode) throws Exception {
this.depMode = depMode;
try {
Ignite ignite = startGrid(1);
startGrid(2);
ignite.compute().execute(GridP2PTestTask.class, 777); // Create events.
String path = GridTestProperties.getProperty("p2p.uri.cls");
GridTestExternalClassLoader ldr = new GridTestExternalClassLoader(new URL[] {new URL(path)});
Class filter1 = ldr.loadClass("org.apache.ignite.tests.p2p.GridP2PEventFilterExternalPath1");
Class filter2 = ldr.loadClass("org.apache.ignite.tests.p2p.GridP2PEventFilterExternalPath2");
ldr.setTimeout(100);
ignite.events().remoteQuery((IgnitePredicate<Event>)filter1.newInstance(), 0);
ldr.setTimeout(2000);
try {
ignite.events().remoteQuery((IgnitePredicate<Event>)filter2.newInstance(), 0);
assert false; // Timeout exception must be thrown.
}
catch (IgniteException ignored) {
// Throwing exception is a correct behaviour.
}
}
finally {
stopAllGrids();
}
}
/**
* Test GridDeploymentMode.PRIVATE mode.
*
* @throws Exception if error occur.
*/
@Test
public void testPrivateMode() throws Exception {
processTest(DeploymentMode.PRIVATE);
}
/**
* Test GridDeploymentMode.ISOLATED mode.
*
* @throws Exception if error occur.
*/
@Test
public void testIsolatedMode() throws Exception {
processTest(DeploymentMode.ISOLATED);
}
/**
* Test GridDeploymentMode.CONTINUOUS mode.
*
* @throws Exception if error occur.
*/
@Test
public void testContinuousMode() throws Exception {
processTest(DeploymentMode.CONTINUOUS);
}
/**
* Test GridDeploymentMode.SHARED mode.
*
* @throws Exception if error occur.
*/
@Test
public void testSharedMode() throws Exception {
processTest(DeploymentMode.SHARED);
}
/**
* Test GridDeploymentMode.PRIVATE mode.
*
* @throws Exception if error occur.
*/
@Test
public void testFilterPrivateMode() throws Exception {
processFilterTest(DeploymentMode.PRIVATE);
}
/**
* Test GridDeploymentMode.ISOLATED mode.
*
* @throws Exception if error occur.
*/
@Test
public void testFilterIsolatedMode() throws Exception {
processFilterTest(DeploymentMode.ISOLATED);
}
/**
* Test GridDeploymentMode.CONTINUOUS mode.
*
* @throws Exception if error occur.
*/
@Test
public void testFilterContinuousMode() throws Exception {
processFilterTest(DeploymentMode.CONTINUOUS);
}
/**
* Test GridDeploymentMode.SHARED mode.
*
* @throws Exception if error occur.
*/
@Test
public void testFilterSharedMode() throws Exception {
processFilterTest(DeploymentMode.SHARED);
}
}