blob: 16f992adee501c892e44de5b457736bb8b43a2c0 [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.axis2.dispatchers;
import junit.framework.TestCase;
import org.apache.axis2.addressing.AddressingConstants;
import org.apache.axis2.context.MessageContext;
public class AddressingBasedDispatcherTest extends TestCase {
public void testValidateActionFlag() throws Exception {
MessageContext mc = new MessageContext();
//Indicate that the AddressingInHandler has run.
mc.setProperty(AddressingConstants.IS_ADDR_INFO_ALREADY_PROCESSED, Boolean.TRUE);
// Tell validation handler NOT to check action dispatch
mc.setProperty(AddressingConstants.ADDR_VALIDATE_ACTION, Boolean.FALSE);
// Even though this message has an action that will not dispatch to an
// AxisOperation, this shouldn't throw a fault.
AddressingBasedDispatcher dispatcher = new AddressingBasedDispatcher();
dispatcher.invoke(mc);
}
}