Search in sources :

Example 11 with PropertyLogLevel

use of org.ff4j.property.PropertyLogLevel in project ff4j by ff4j.

the class PropertyStoreArchaiusPolledSourceTest method updateOK.

/**
 * TDD.
 */
@Override
@Test
public void updateOK() {
    // Given
    testedStore.createProperty(new PropertyLogLevel(UPDATE_OK, LogLevel.ERROR));
    // When
    testedStore.updateProperty(UPDATE_OK, "INFO");
    // Then
    Assert.assertEquals("INFO", testedStore.readProperty(UPDATE_OK).getValue());
}
Also used : PropertyLogLevel(org.ff4j.property.PropertyLogLevel) Test(org.junit.Test)

Example 12 with PropertyLogLevel

use of org.ff4j.property.PropertyLogLevel in project ff4j by ff4j.

the class PropertyStoreCommonsConfigTest method updateOK.

/**
 * TDD.
 */
@Override
@Test
public void updateOK() {
    // Given
    testedStore.createProperty(new PropertyLogLevel(UPDATE_OK, LogLevel.ERROR));
    // When
    testedStore.updateProperty(UPDATE_OK, "INFO");
    // Then
    Assert.assertEquals("INFO", testedStore.readProperty(UPDATE_OK).getValue());
}
Also used : PropertyLogLevel(org.ff4j.property.PropertyLogLevel) Test(org.junit.Test)

Example 13 with PropertyLogLevel

use of org.ff4j.property.PropertyLogLevel in project ff4j by ff4j.

the class PropertyStoreTestSupport method addPropertyOKLogLevel.

/**
 * TDD.
 */
@Test
public void addPropertyOKLogLevel() {
    // Given
    // Assert.assertFalse(testedStore.exist("log"));
    // When
    testedStore.createProperty(new PropertyLogLevel("logi", LogLevel.DEBUG));
    // Then
    Assert.assertTrue(testedStore.existProperty("logi"));
}
Also used : PropertyLogLevel(org.ff4j.property.PropertyLogLevel) Test(org.junit.Test)

Example 14 with PropertyLogLevel

use of org.ff4j.property.PropertyLogLevel in project ff4j by ff4j.

the class AbstractPropertyStoreJunitTest method updateOK.

/**
 * TDD.
 */
@Test
public void updateOK() {
    // Given
    testedStore.createProperty(new PropertyLogLevel("log", LogLevel.ERROR));
    // When
    testedStore.updateProperty("log", "INFO");
    // Then
    Assert.assertEquals(LogLevel.INFO, testedStore.readProperty("log").getValue());
}
Also used : PropertyLogLevel(org.ff4j.property.PropertyLogLevel) Test(org.junit.Test)

Example 15 with PropertyLogLevel

use of org.ff4j.property.PropertyLogLevel in project ff4j by ff4j.

the class AbstractPropertyStoreJunitTest method addPropertyKOAlreadyExist.

/**
 * TDD.
 */
@Test(expected = PropertyAlreadyExistException.class)
public void addPropertyKOAlreadyExist() {
    // Given
    testedStore.createProperty(new PropertyLogLevel("log", LogLevel.DEBUG));
    Assert.assertTrue(testedStore.existProperty("log"));
    // When
    testedStore.createProperty(new PropertyLogLevel("log", LogLevel.DEBUG));
// Then expect to fail
}
Also used : PropertyLogLevel(org.ff4j.property.PropertyLogLevel) Test(org.junit.Test)

Aggregations

PropertyLogLevel (org.ff4j.property.PropertyLogLevel)33 Test (org.junit.Test)33 Property (org.ff4j.property.Property)3 HashSet (java.util.HashSet)2 Feature (org.ff4j.core.Feature)2 ByteArrayInputStream (java.io.ByteArrayInputStream)1 InputStream (java.io.InputStream)1 FF4jCacheProxy (org.ff4j.cache.FF4jCacheProxy)1 InMemoryCacheManager (org.ff4j.cache.InMemoryCacheManager)1 XmlConfig (org.ff4j.conf.XmlConfig)1 XmlParser (org.ff4j.conf.XmlParser)1 PropertyString (org.ff4j.property.PropertyString)1 InMemoryPropertyStore (org.ff4j.property.store.InMemoryPropertyStore)1 InMemoryFeatureStore (org.ff4j.store.InMemoryFeatureStore)1