blob: 289323f501e24d042cc484da2fd0d7393dde1744 [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.sling.testing.clients.osgi;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import java.util.Map;
import org.apache.sling.testing.clients.ClientException;
import org.apache.sling.testing.clients.util.JsonUtils;
import org.codehaus.jackson.JsonNode;
import org.junit.Test;
public class OsgiConsoleClientTest {
@Test public void testExtractOSGiConfigurationNoConfig() throws ClientException {
final String jsonResult = "{\"pid\":\"org.apache.sling.Factory\","
+ "\"title\":\"Factory\","
+ "\"description\":\"A factory\","
+ "\"properties\":{"
+ "\"prop\":{\"name\":\"Prop\",\"optional\":false,\"is_set\":false,\"type\":1,\"values\":[\"a\",\"b\"],"
+ "\"description\":\"A property\"}}}";
final JsonNode rootNode = JsonUtils.getJsonNodeFromString(jsonResult);
// configuration does not exist, expect null
assertNull(OsgiConsoleClient.extractOSGiConfiguration(rootNode));
}
@Test public void testExtractOSGiConfiguration() throws ClientException {
final String jsonResult = "{\"pid\":\"org.apache.sling.Factory\","
+ "\"title\":\"Factory\","
+ "\"description\":\"A factory\","
+ "\"properties\":{"
+ "\"propset\":{\"name\":\"Prop\",\"optional\":false,\"is_set\":true,\"type\":1,\"value\":\"a\","
+ "\"description\":\"A property\"},"
+ "\"prop\":{\"name\":\"Prop\",\"optional\":false,\"is_set\":false,\"type\":1,\"values\":[\"a\",\"b\"],"
+ "\"description\":\"A property\"}"
+ "},\"bundleLocation\":\"\",\"bundle_location\":null,\"service_location\":\"\"}";
final JsonNode rootNode = JsonUtils.getJsonNodeFromString(jsonResult);
// one property is set
final Map<String, Object> result = OsgiConsoleClient.extractOSGiConfiguration(rootNode);
assertEquals(1, result.size());
assertEquals("a", result.get("propset"));
}
}