blob: b5411b1f39da6a5c539e5dbeb8de9a1dfc4cc078 [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.felix.dm.itest.api;
import java.io.IOException;
import java.util.Dictionary;
import java.util.Hashtable;
import org.apache.felix.dm.itest.util.Ensure;
import org.junit.Assert;
import org.osgi.service.cm.Configuration;
import org.osgi.service.cm.ConfigurationAdmin;
/**
* Helper component used to create configurations.
*/
public class ConfigurationCreator {
private volatile ConfigurationAdmin m_ca;
private final Ensure m_ensure;
Configuration m_conf;
final String m_pid;
final int m_initStep;
final Dictionary<String, Object> m_parameters = new Hashtable<>();
public ConfigurationCreator(Ensure e, String pid, int initStep) {
this(e, pid, initStep, new String[] {});
}
public ConfigurationCreator(Ensure e, String pid, int initStep, String ... keyvalues) {
m_ensure = e;
m_pid = pid;
m_initStep = initStep;
for (int i = 0; i < keyvalues.length; i ++) {
String[] tokens = keyvalues[i].split("=");
String k = tokens[0].trim();
Object v = tokens[1].trim();
m_parameters.put(k, v);
}
}
public void init() {
try {
Assert.assertNotNull(m_ca);
m_ensure.step(m_initStep);
m_conf = m_ca.getConfiguration(m_pid, null);
if (m_parameters.size() == 0) {
m_parameters.put("testkey", "testvalue");
}
m_conf.update(m_parameters);
}
catch (IOException e) {
Assert.fail("Could not create configuration: " + e.getMessage());
}
}
public void destroy() throws IOException {
m_conf.delete();
}
}