blob: cc9ce081bfd943fbe98c7d5cdb07fffe8ab7e14e [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.cache;
import org.junit.Test;
/**
*
*/
public abstract class CacheStoreUsageMultinodeStaticStartAbstractTest extends CacheStoreUsageMultinodeAbstractTest {
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
super.afterTest();
stopAllGrids();
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfiguration() throws Exception {
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationNearEnabled() throws Exception {
nearCache = true;
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationLocalStore() throws Exception {
locStore = true;
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationLocalStoreNearEnabled() throws Exception {
locStore = true;
nearCache = true;
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxLocalStoreNoClientStore() throws Exception {
locStore = true;
checkStoreUpdateStaticConfig(false);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxLocalStoreNoClientStoreNearEnabled() throws Exception {
locStore = true;
nearCache = true;
checkStoreUpdateStaticConfig(false);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxWriteBehindStore() throws Exception {
writeBehind = true;
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxWriteBehindStoreNearEnabled() throws Exception {
writeBehind = true;
nearCache = true;
checkStoreUpdateStaticConfig(true);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxWriteBehindStoreNoClientStore() throws Exception {
writeBehind = true;
checkStoreUpdateStaticConfig(false);
}
/**
* @throws Exception If failed.
*/
@Test
public void testStaticConfigurationTxWriteBehindStoreNoClientStoreNearEnabled() throws Exception {
writeBehind = true;
nearCache = true;
checkStoreUpdateStaticConfig(false);
}
/**
* @param clientStore {@code True} if store should be configured on client node.
* @throws Exception If failed.
*/
private void checkStoreUpdateStaticConfig(boolean clientStore) throws Exception {
try {
cache = true;
cacheStore = true;
startGridsMultiThreaded(3);
cacheStore = clientStore;
startClientGrid(3);
checkStoreUpdate(clientStore);
}
finally {
stopAllGrids();
}
}
}