blob: 76f00e964e1470c58cda72bc8a9d4eb12a82db0b [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.configuration.distributed;
import org.apache.ignite.configuration.DataStorageConfiguration;
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.internal.processors.configuration.distributed.DistributedLongProperty.detachedLongProperty;
/**
*
*/
public abstract class DistributedConfigurationAbstractTest extends GridCommonAbstractTest {
/** */
static final String TEST_PROP = "someLong";
/** {@inheritDoc} */
@Override protected void beforeTest() throws Exception {
super.beforeTest();
stopAllGrids();
cleanPersistenceDir();
TestDistibutedConfigurationPlugin.clear();
}
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
stopAllGrids();
cleanPersistenceDir();
super.afterTest();
TestDistibutedConfigurationPlugin.clear();
}
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
cfg.setConsistentId(igniteInstanceName);
DataStorageConfiguration storageCfg = new DataStorageConfiguration();
storageCfg.getDefaultDataRegionConfiguration()
.setPersistenceEnabled(isPersistent())
.setMaxSize(500L * 1024 * 1024);
cfg.setDataStorageConfiguration(storageCfg);
return cfg;
}
/** */
protected abstract boolean isPersistent();
/**
* @throws Exception If failed.
*/
@Test
public void testRegisterExistedProperty() throws Exception {
IgniteEx ignite0 = startGrid(0);
IgniteEx ignite1 = startGrid(1);
ignite0.cluster().active(true);
DistributedProperty<Long> long0 = distr(ignite0).registerProperty(detachedLongProperty(TEST_PROP));
long0.propagate(0L);
assertEquals(0, long0.get().longValue());
assertTrue(long0.propagate(2L));
DistributedProperty<Long> long1 = distr(ignite1).registerProperty(detachedLongProperty(TEST_PROP));
//Already changed to 2.
assertEquals(2, long1.get().longValue());
}
/**
* @throws Exception If failed.
*/
@Test(expected = DetachedPropertyException.class)
public void testNotAttachedProperty() throws Exception {
DistributedLongProperty long0 = detachedLongProperty(TEST_PROP);
long0.propagate(1L);
}
/** */
DistributedConfigurationProcessor distr(IgniteEx ignite0) {
return ignite0.context().distributedConfiguration();
}
}