Search in sources :

Example 1 with PropertiesConfigFile

use of com.ctrip.framework.apollo.internals.PropertiesConfigFile in project apollo by ctripcorp.

the class DefaultConfigFactoryTest method testCreateConfigFile.

@Test
public void testCreateConfigFile() throws Exception {
    String someNamespace = "someName";
    String anotherNamespace = "anotherName";
    String yetAnotherNamespace = "yetAnotherNamespace";
    Properties someProperties = new Properties();
    LocalFileConfigRepository someLocalConfigRepo = mock(LocalFileConfigRepository.class);
    when(someLocalConfigRepo.getConfig()).thenReturn(someProperties);
    doReturn(someLocalConfigRepo).when(defaultConfigFactory).createLocalConfigRepository(someNamespace);
    doReturn(someLocalConfigRepo).when(defaultConfigFactory).createLocalConfigRepository(anotherNamespace);
    doReturn(someLocalConfigRepo).when(defaultConfigFactory).createLocalConfigRepository(yetAnotherNamespace);
    ConfigFile propertyConfigFile = defaultConfigFactory.createConfigFile(someNamespace, ConfigFileFormat.Properties);
    ConfigFile xmlConfigFile = defaultConfigFactory.createConfigFile(anotherNamespace, ConfigFileFormat.XML);
    ConfigFile jsonConfigFile = defaultConfigFactory.createConfigFile(yetAnotherNamespace, ConfigFileFormat.JSON);
    ConfigFile ymlConfigFile = defaultConfigFactory.createConfigFile(someNamespace, ConfigFileFormat.YML);
    ConfigFile yamlConfigFile = defaultConfigFactory.createConfigFile(someNamespace, ConfigFileFormat.YAML);
    assertThat("Should create PropertiesConfigFile for properties format", propertyConfigFile, is(instanceOf(PropertiesConfigFile.class)));
    assertEquals(someNamespace, propertyConfigFile.getNamespace());
    assertThat("Should create XmlConfigFile for xml format", xmlConfigFile, is(instanceOf(XmlConfigFile.class)));
    assertEquals(anotherNamespace, xmlConfigFile.getNamespace());
    assertThat("Should create JsonConfigFile for json format", jsonConfigFile, is(instanceOf(JsonConfigFile.class)));
    assertEquals(yetAnotherNamespace, jsonConfigFile.getNamespace());
    assertThat("Should create YmlConfigFile for yml format", ymlConfigFile, is(instanceOf(YmlConfigFile.class)));
    assertEquals(someNamespace, ymlConfigFile.getNamespace());
    assertThat("Should create YamlConfigFile for yaml format", yamlConfigFile, is(instanceOf(YamlConfigFile.class)));
    assertEquals(someNamespace, yamlConfigFile.getNamespace());
}
Also used : LocalFileConfigRepository(com.ctrip.framework.apollo.internals.LocalFileConfigRepository) XmlConfigFile(com.ctrip.framework.apollo.internals.XmlConfigFile) YmlConfigFile(com.ctrip.framework.apollo.internals.YmlConfigFile) YamlConfigFile(com.ctrip.framework.apollo.internals.YamlConfigFile) JsonConfigFile(com.ctrip.framework.apollo.internals.JsonConfigFile) PropertiesConfigFile(com.ctrip.framework.apollo.internals.PropertiesConfigFile) ConfigFile(com.ctrip.framework.apollo.ConfigFile) Properties(java.util.Properties) Test(org.junit.Test)

Aggregations

ConfigFile (com.ctrip.framework.apollo.ConfigFile)1 JsonConfigFile (com.ctrip.framework.apollo.internals.JsonConfigFile)1 LocalFileConfigRepository (com.ctrip.framework.apollo.internals.LocalFileConfigRepository)1 PropertiesConfigFile (com.ctrip.framework.apollo.internals.PropertiesConfigFile)1 XmlConfigFile (com.ctrip.framework.apollo.internals.XmlConfigFile)1 YamlConfigFile (com.ctrip.framework.apollo.internals.YamlConfigFile)1 YmlConfigFile (com.ctrip.framework.apollo.internals.YmlConfigFile)1 Properties (java.util.Properties)1 Test (org.junit.Test)1