blob: 39f09babc6015aa3b6ada85554b776578b534adc [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.caconfig.it;
import static org.apache.sling.caconfig.it.TestUtils.CONFIG_ROOT_PATH;
import static org.apache.sling.caconfig.it.TestUtils.CONTENT_ROOT_PATH;
import static org.apache.sling.caconfig.it.TestUtils.cleanUp;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.apache.sling.api.resource.ValueMap;
import org.apache.sling.caconfig.ConfigurationResolver;
import org.apache.sling.junit.rules.TeleporterRule;
import org.apache.sling.resourcebuilder.api.ResourceBuilder;
import org.apache.sling.resourcebuilder.api.ResourceBuilderFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
public class ConfigurationResolverValueMapIT {
@Rule
public TeleporterRule teleporter = TeleporterRule.forClass(getClass(), "IT");
private ResourceResolver resourceResolver;
private ResourceBuilder resourceBuilder;
private static final String PAGE_PATH = CONTENT_ROOT_PATH + "/page1";
private static final String CONFIG_PATH = CONFIG_ROOT_PATH + "/page1";
@Before
public void setUp() throws Exception {
resourceResolver = teleporter.getService(ResourceResolverFactory.class).getAdministrativeResourceResolver(null);
resourceBuilder = teleporter.getService(ResourceBuilderFactory.class).forResolver(resourceResolver);
}
@After
public void tearDown() {
cleanUp(resourceResolver);
resourceResolver.close();
}
@Test
public void testNonExistingConfig() throws Exception {
Resource resourcePage1 = resourceBuilder.resource(PAGE_PATH).getCurrentParent();
ConfigurationResolver configResolver = teleporter.getService(ConfigurationResolver.class);
ValueMap props = configResolver.get(resourcePage1).name("test").asValueMap();
assertNotNull(props);
assertNull(props.get("stringParam", String.class));
assertEquals(0, (int)props.get("intParam", 0));
assertEquals(false, props.get("boolParam", false));
}
@Test
public void testExistingConfig() throws Exception {
resourceBuilder.resource(CONFIG_PATH + "/sling:configs/test",
"stringParam", "value1",
"intParam", 123,
"boolParam", true)
.resource(PAGE_PATH, "sling:configRef", CONFIG_PATH);
Resource resourcePage1 = resourceResolver.getResource(PAGE_PATH);
ConfigurationResolver configResolver = teleporter.getService(ConfigurationResolver.class);
ValueMap props = configResolver.get(resourcePage1).name("test").asValueMap();
assertNotNull(props);
assertEquals("value1", props.get("stringParam", String.class));
assertEquals(123, (int)props.get("intParam", 0));
assertEquals(true, props.get("boolParam", false));
}
}