blob: 564b8e52148d2fb4c080f0f4ca368999fadd940c [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.internal.processors.cluster;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.internal.IgniteEx;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Test;
import static org.apache.ignite.cluster.ClusterState.ACTIVE_READ_ONLY;
import static org.apache.ignite.internal.processors.cache.ClusterReadOnlyModeTestUtils.assertCachesReadOnlyMode;
import static org.apache.ignite.internal.processors.cache.ClusterReadOnlyModeTestUtils.assertDataStreamerReadOnlyMode;
import static org.apache.ignite.internal.processors.cache.ClusterReadOnlyModeTestUtils.cacheConfigurations;
import static org.apache.ignite.internal.processors.cache.ClusterReadOnlyModeTestUtils.cacheNames;
/**
* Checks that new joining node accept enabled read-only mode.
*/
public class ClusterReadOnlyModeNodeJoinTest extends GridCommonAbstractTest {
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
return super.getConfiguration(igniteInstanceName).setCacheConfiguration(cacheConfigurations());
}
/** {@inheritDoc} */
@Override protected void beforeTest() throws Exception {
super.beforeTest();
stopAllGrids();
}
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
super.afterTest();
stopAllGrids();
}
/** */
@Test
public void testJoinNodeToReadOnlyCluster() throws Exception {
IgniteEx grid = startGrid(0);
grid.cluster().state(ACTIVE_READ_ONLY);
assertEquals(ACTIVE_READ_ONLY, grid.cluster().state());
assertCachesReadOnlyMode(true, cacheNames());
assertDataStreamerReadOnlyMode(true, cacheNames());
startGrid(1);
awaitPartitionMapExchange();
for (int i = 0; i < 2; i++)
assertEquals(grid(i).configuration().getIgniteInstanceName(), ACTIVE_READ_ONLY, grid(i).cluster().state());
assertCachesReadOnlyMode(true, cacheNames());
assertDataStreamerReadOnlyMode(true, cacheNames());
}
}