/* * 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.internal; import org.apache.ignite.Ignite; import org.apache.ignite.IgniteSystemProperties; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.processors.cluster.ClusterProcessor; import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi; import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder; import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder; import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; /** */ public class IgniteUpdateNotifierPerClusterSettingSelfTest extends GridCommonAbstractTest { /** */ private static TcpDiscoveryIpFinder ipFinder = new TcpDiscoveryVmIpFinder(true); /** */ private String backup; /** */ private boolean client; /** {@inheritDoc} */ @Override protected void beforeTest() throws Exception { backup = System.getProperty(IgniteSystemProperties.IGNITE_UPDATE_NOTIFIER); } /** {@inheritDoc} */ @Override protected void afterTest() throws Exception { System.setProperty(IgniteSystemProperties.IGNITE_UPDATE_NOTIFIER, backup); stopAllGrids(); } /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); ((TcpDiscoverySpi)cfg.getDiscoverySpi()).setIpFinder(ipFinder); cfg.setClientMode(client); return cfg; } /** * @throws Exception If failed. */ public void testNotifierEnabledForCluster() throws Exception { checkNotifierStatusForCluster(true); } /** * @throws Exception If failed. */ public void testNotifierDisabledForCluster() throws Exception { checkNotifierStatusForCluster(false); } /** * @param enabled Notifier status. * @throws Exception If failed. */ private void checkNotifierStatusForCluster(boolean enabled) throws Exception { System.setProperty(IgniteSystemProperties.IGNITE_UPDATE_NOTIFIER, String.valueOf(enabled)); IgniteEx grid1 = startGrid(0); checkNotifier(grid1, enabled); System.setProperty(IgniteSystemProperties.IGNITE_UPDATE_NOTIFIER, String.valueOf(!enabled)); IgniteEx grid2 = startGrid(1); checkNotifier(grid2, enabled); client = true; IgniteEx grid3 = startGrid(2); checkNotifier(grid3, enabled); // Failover. stopGrid(0); // Kill oldest. client = false; IgniteEx grid4 = startGrid(3); checkNotifier(grid4, enabled); client = true; IgniteEx grid5 = startGrid(4); checkNotifier(grid5, enabled); } /** * @param ignite Node. * @param expEnabled Expected notifier status. */ private void checkNotifier(Ignite ignite, boolean expEnabled) { ClusterProcessor proc = ((IgniteKernal)ignite).context().cluster(); if (expEnabled) assertNotNull(GridTestUtils.getFieldValue(proc, "updateNtfTimer")); else assertNull(GridTestUtils.getFieldValue(proc, "updateNtfTimer")); } }