blob: 2a3332a1ee22198b3ded63ad110d1c3044990132 [file] [log] [blame]
/*
* Licensed 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.karaf.examples.itests;
import org.apache.karaf.itests.KarafTestSupport;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.Configuration;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.PaxExam;
import org.ops4j.pax.exam.karaf.options.KarafDistributionOption;
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
import org.ops4j.pax.exam.spi.reactors.PerClass;
import java.util.stream.Stream;
@RunWith(PaxExam.class)
@ExamReactorStrategy(PerClass.class)
public class ExampleWithConfigITest extends KarafTestSupport {
@Configuration
public Option[] config() {
Option[] options = new Option[]{
KarafDistributionOption.editConfigurationFilePut("etc/system.properties", "my.system.property", System.getProperty("my.system.property"))
};
return Stream.of(super.config(), options).flatMap(Stream::of).toArray(Option[]::new);
}
@Test
public void simpleTest() throws Exception {
System.out.println("==== System Property in probe bundle: " + System.getProperty("my.system.property"));
assertContains("foo", System.getProperty("my.system.property"));
}
}