blob: 3e0d7aeefee3ecc48a5e2f66c11438ad3249d591 [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.tamaya.jsr382;
import org.junit.Test;
import javax.config.Config;
import javax.config.ConfigProvider;
import javax.config.spi.ConfigSource;
import java.util.NoSuchElementException;
import java.util.Optional;
import static org.assertj.core.api.Assertions.*;
/**
* Created by atsticks on 24.03.17.
*/
public class JavaConfigConfigTest {
@Test
public void testDefaultConfigAccess() {
Config config = ConfigProvider.getConfig();
Iterable<ConfigSource> sources = config.getConfigSources();
int count = 0;
for (ConfigSource cs : sources) {
count++;
}
assertThat(4).isEqualTo(count);
}
@Test
public void testOptionalAccess(){
Config config = ConfigProvider.getConfig();
int count = 0;
for(String key:config.getPropertyNames()){
Optional<String> val = config.getOptionalValue(key, String.class);
assertThat(val).isNotNull();
val = config.getOptionalValue(key + System.currentTimeMillis(), String.class);
assertThat(val).isNotNull();
assertThat(val.isPresent()).isFalse();
}
}
@Test
public void testGetValue(){
Config config = ConfigProvider.getConfig();
int count = 0;
for(String key:config.getPropertyNames()){
String val = config.getValue(key, String.class);
assertThat(val).isNotNull();
}
}
@Test(expected = NoSuchElementException.class)
public void testGetValue_NoValue(){
Config config = ConfigProvider.getConfig();
config.getValue("fooBar", String.class);
}
@Test(expected = IllegalArgumentException.class)
public void testGetValue_InvalidType(){
Config config = ConfigProvider.getConfig();
config.getValue("java.version", Integer.class);
}
@Test
public void testEmptySystemProperty(){
System.setProperty("my.empty.property", "");
Config config = ConfigProvider.getConfig();
assertThat("").isEqualTo(config.getValue("my.empty.property", String.class));
}
@Test
public void testEmptyConfigProperty(){
Config config = ConfigProvider.getConfig();
assertThat("").isEqualTo(config.getValue("my.empty.property.in.config.file", String.class));
}
}