blob: e7a6eedb790c3bbf8c19e374c5ed6f1a558903b5 [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.api.request;
import junit.framework.TestCase;
public class RequestDispatcherOptionsTest extends TestCase {
public void testNullString() {
final RequestDispatcherOptions result = new RequestDispatcherOptions(
null);
assertTrue(result.isEmpty());
}
public void testEmptyString() {
final RequestDispatcherOptions result = new RequestDispatcherOptions("");
assertTrue(result.isEmpty());
}
public void testSingleOption() {
final RequestDispatcherOptions result = new RequestDispatcherOptions(
"forceResourceType= widget");
assertNotNull(result);
assertEquals("Expected option found (" + result + ")", "widget",
result.get(RequestDispatcherOptions.OPT_FORCE_RESOURCE_TYPE));
assertEquals("Expected option found (" + result + ")", "widget",
result.getForceResourceType());
}
public void testResourceTypeSlashShortcut() {
// a single option with no comma or colon means "forceResourceType"
final RequestDispatcherOptions result = new RequestDispatcherOptions(
"\t components/widget ");
assertNotNull(result);
assertEquals("Expected option found (" + result + ")",
"components/widget",
result.get(RequestDispatcherOptions.OPT_FORCE_RESOURCE_TYPE));
assertEquals("Expected option found (" + result + ")",
"components/widget", result.getForceResourceType());
}
public void testResourceTypeColonShortcut() {
// a single option with no comma or colon means "forceResourceType"
final RequestDispatcherOptions result = new RequestDispatcherOptions(
"\t components:widget ");
assertNotNull(result);
assertEquals("Expected option found (" + result + ")",
"components:widget",
result.get(RequestDispatcherOptions.OPT_FORCE_RESOURCE_TYPE));
assertEquals("Expected option found (" + result + ")",
"components:widget", result.getForceResourceType());
}
public void testTwoOptions() {
final RequestDispatcherOptions result = new RequestDispatcherOptions(
"forceResourceType= components:widget, replaceSelectors = xyz ,");
assertNotNull(result);
assertEquals("Expected option found (" + result + ")",
"components:widget",
result.get(RequestDispatcherOptions.OPT_FORCE_RESOURCE_TYPE));
assertEquals("Expected option found (" + result + ")",
"components:widget", result.getForceResourceType());
assertEquals("Expected option found (" + result + ")", "xyz",
result.get(RequestDispatcherOptions.OPT_REPLACE_SELECTORS));
assertEquals("Expected option found (" + result + ")", "xyz",
result.getReplaceSelectors());
}
}