io.wcm.testing.mock.wcmio.handler.MockHandler Maven / Gradle / Ivy
/*
* #%L
* wcm.io
* %%
* Copyright (C) 2014 wcm.io
* %%
* 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.
* #L%
*/
package io.wcm.testing.mock.wcmio.handler;
import io.wcm.handler.media.format.impl.MediaFormatProviderManagerImpl;
import io.wcm.handler.url.impl.UrlHandlerParameterProviderImpl;
import io.wcm.testing.mock.aem.junit.AemContext;
import io.wcm.testing.mock.wcmio.config.MockConfig;
import io.wcm.testing.mock.wcmio.sling.MockSlingExtensions;
import org.osgi.annotation.versioning.ProviderType;
/**
* Helps setting up a mock environment for wcm.io Handler.
*/
@ProviderType
public final class MockHandler {
private MockHandler() {
// static methods only
}
/**
* Set up all mandatory OSGi services for wcm.io Handler support.
* @param context Aem context
*/
public static void setUp(AemContext context) {
// wcm.io Sling extensions
MockSlingExtensions.setUp(context);
// register url handler config parameter
context.registerInjectActivateService(new UrlHandlerParameterProviderImpl());
// setup configuration support
MockConfig.setUp(context);
// media format provider manager
context.registerInjectActivateService(new MediaFormatProviderManagerImpl());
// sling models registration
context.addModelsForPackage("io.wcm.handler.url");
context.addModelsForPackage("io.wcm.handler.media");
context.addModelsForPackage("io.wcm.handler.mediasource.dam");
context.addModelsForPackage("io.wcm.handler.mediasource.inline");
context.addModelsForPackage("io.wcm.handler.link");
context.addModelsForPackage("io.wcm.handler.richtext");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy