Package org.apache.wicket.ajax

Source Code of org.apache.wicket.ajax.AjaxPreprocessingCallDecoratorTest

/*
* 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.wicket.ajax;

import junit.framework.Assert;
import junit.framework.TestCase;

import org.apache.wicket.ajax.calldecorator.AjaxPreprocessingCallDecorator;

/**
* @author tetsuo WICKET-2057
*/
public class AjaxPreprocessingCallDecoratorTest extends TestCase
{
  IAjaxCallDecorator delegate;
  AjaxPreprocessingCallDecorator decorator;

  @Override
  protected void setUp() throws Exception
  {
    super.setUp();
    delegate = new IAjaxCallDecorator()
    {
      private static final long serialVersionUID = 1L;

      public CharSequence decorateScript(CharSequence script)
      {
        return "^" + script;
      }

      public CharSequence decorateOnSuccessScript(CharSequence script)
      {
        return "^s" + script;
      }

      public CharSequence decorateOnFailureScript(CharSequence script)
      {
        return "^f" + script;
      }
    };
    decorator = new AjaxPreprocessingCallDecorator(delegate)
    {
      private static final long serialVersionUID = 1L;

      @Override
      public CharSequence preDecorateScript(CharSequence script)
      {
        return "-" + super.preDecorateScript(script);
      }

      @Override
      public CharSequence preDecorateOnSuccessScript(CharSequence script)
      {
        return "-s" + super.preDecorateOnSuccessScript(script);
      }

      @Override
      public CharSequence preDecorateOnFailureScript(CharSequence script)
      {
        return "-f" + super.preDecorateOnFailureScript(script);
      }
    };
  }

  /** test decorator */
  public void testDecorateScript()
  {
    Assert.assertEquals("^-.", decorator.decorateScript("."));
  }

  /** test decorator */
  public void testDecorateOnSuccessScript()
  {
    Assert.assertEquals("^s-s.", decorator.decorateOnSuccessScript("."));
  }

  /** test decorator */
  public void testDecorateOnFailureScript()
  {
    Assert.assertEquals("^f-f.", decorator.decorateOnFailureScript("."));
  }
}
TOP

Related Classes of org.apache.wicket.ajax.AjaxPreprocessingCallDecoratorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.