/* * 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.mock.sling.builder; import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.apache.jackrabbit.JcrConstants; import org.apache.sling.api.resource.PersistenceException; import org.apache.sling.api.resource.Resource; import org.apache.sling.api.resource.ResourceResolver; import org.apache.sling.api.resource.ResourceUtil; import org.apache.sling.api.resource.ValueMap; import org.apache.sling.testing.mock.osgi.MapUtil; import com.google.common.collect.ImmutableMap; /** * Helper class for building test content in the resource hierarchy with as less * boilerplate code as possible. */ public class ContentBuilder { static final String DUMMY_TEMPLATE = "/apps/sample/templates/template1"; protected final ResourceResolver resourceResolver; /** * @param resourceResolver Resource resolver */ public ContentBuilder(ResourceResolver resourceResolver) { this.resourceResolver = resourceResolver; } /** * Create resource. If parent resource(s) do not exist they are created * automatically using <code>nt:unstructured</code> nodes. * @param path Page path * @return Resource object */ public final Resource resource(String path) { return resource(path, ValueMap.EMPTY); } /** * Create resource. If parent resource(s) do not exist they are created * automatically using <code>nt:unstructured</code> nodes. * @param path Page path * @param properties Properties for resource. * @return Resource object */ public final Resource resource(String path, Map<String, Object> properties) { String parentPath = ResourceUtil.getParent(path); Resource parentResource = ensureResourceExists(parentPath); String name = ResourceUtil.getName(path); try { return resourceResolver.create(parentResource, name, properties); } catch (PersistenceException ex) { throw new RuntimeException("Unable to create resource at " + path, ex); } } /** * Create resource. If parent resource(s) do not exist they are created * automatically using <code>nt:unstructured</code> nodes. * @param path Page path * @param properties Properties for resource. * @return Resource object */ public final Resource resource(String path, Object... properties) { return resource(path, MapUtil.toMap(properties)); } /** * Ensure that a resource exists at the given path. If not, it is created * using <code>nt:unstructured</code> node type. * @param path Resource path * @return Resource at path (existing or newly created) */ protected final Resource ensureResourceExists(String path) { if (StringUtils.isEmpty(path) || StringUtils.equals(path, "/")) { return resourceResolver.getResource("/"); } Resource resource = resourceResolver.getResource(path); if (resource != null) { return resource; } String parentPath = ResourceUtil.getParent(path); String name = ResourceUtil.getName(path); Resource parentResource = ensureResourceExists(parentPath); try { resource = resourceResolver.create(parentResource, name, ImmutableMap.<String, Object> builder() .put(JcrConstants.JCR_PRIMARYTYPE, JcrConstants.NT_UNSTRUCTURED) .build()); resourceResolver.commit(); return resource; } catch (PersistenceException ex) { throw new RuntimeException("Unable to create resource at " + path, ex); } } }