blob: d05bdace2d6720f3a0e73320f958c787c6603d63 [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.spi.discovery.tcp;
import java.util.concurrent.ScheduledExecutorService;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteSystemProperties;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.internal.util.typedef.internal.U;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Test;
/**
* Test for missed client metrics update messages.
*/
public class TcpDiscoveryClientSuspensionSelfTest extends GridCommonAbstractTest {
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String gridName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(gridName);
cfg.setMetricsUpdateFrequency(100);
cfg.setClientFailureDetectionTimeout(1000);
return cfg;
}
/** {@inheritDoc} */
@Override protected void beforeTestsStarted() throws Exception {
super.beforeTestsStarted();
System.setProperty(IgniteSystemProperties.IGNITE_DISCO_FAILED_CLIENT_RECONNECT_DELAY, "10000");
}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();
System.clearProperty(IgniteSystemProperties.IGNITE_DISCO_FAILED_CLIENT_RECONNECT_DELAY);
}
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
stopAllGrids();
}
/**
* @throws Exception If failed.
*/
@Test
public void testOneServer() throws Exception {
doTestClientSuspension(1);
}
/**
* @throws Exception If failed.
*/
@Test
public void testTwoServers() throws Exception {
doTestClientSuspension(2);
}
/**
* @throws Exception If failed.
*/
@Test
public void testThreeServers() throws Exception {
doTestClientSuspension(3);
}
/**
* @param serverCnt Servers count.
* @throws Exception If failed.
*/
private void doTestClientSuspension(int serverCnt) throws Exception {
startGrids(serverCnt);
Ignite client = startClientGrid("client");
for (int i = 0; i < serverCnt; i++)
assertEquals(1, grid(i).cluster().forClients().nodes().size());
Thread.sleep(2000);
for (int i = 0; i < serverCnt; i++)
assertEquals(1, grid(i).cluster().forClients().nodes().size());
suspendClientMetricsUpdate(client);
Thread.sleep(2000);
for (int i = 0; i < serverCnt; i++)
assertEquals(0, grid(i).cluster().forClients().nodes().size());
}
/**
* @param client Client.
*/
private void suspendClientMetricsUpdate(Ignite client) {
assert client.cluster().localNode().isClient();
ClientImpl impl = U.field(client.configuration().getDiscoverySpi(), "impl");
ScheduledExecutorService executorService = U.field(impl, "executorService");
executorService.shutdownNow();
System.out.println("Metrics update message suspended");
}
}