Package org.apache.wicket.request.resource

Source Code of org.apache.wicket.request.resource.CssPackageResourceTest

/*
* 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.request.resource;

import org.apache.wicket.WicketTestCase;
import org.apache.wicket.css.ICssCompressor;
import org.apache.wicket.markup.html.PackageResourceTest;
import org.apache.wicket.mock.MockApplication;
import org.apache.wicket.protocol.http.WebApplication;
import org.junit.Test;

/**
*
*/
public class CssPackageResourceTest extends WicketTestCase
{
  private static final String APP_COMPRESSED = "APP_COMPRESSED";

  private static final String RESOURCE_COMPRESSED = "RESOURCE_COMPRESSED";

  @Override
  protected WebApplication newApplication()
  {
    return new MockApplication()
    {

      @Override
      protected void init()
      {
        super.init();

        getResourceSettings().setCssCompressor(new ICssCompressor()
        {
          @Override
          public String compress(String original)
          {
            return APP_COMPRESSED;
          }
        });
      }
    };
  }

  /**
   * Tests that a {@link CssPackageResource} can have its custom {@link ICssCompressor}
   */
  @Test
  public void customResourceCompressor()
  {
    CssPackageResource resource = new CssPackageResource(PackageResourceTest.class,
      "packaged1.txt", null, null, null)
    {
      private static final long serialVersionUID = 1L;

      @Override
      protected ICssCompressor getCompressor()
      {
        return new ICssCompressor()
        {

          @Override
          public String compress(String original)
          {
            return RESOURCE_COMPRESSED;
          }
        };
      }
    };

    tester.startResource(resource);
    assertEquals(RESOURCE_COMPRESSED, tester.getLastResponseAsString());
  }

  /**
   * Tests that a {@link CssPackageResource} can use the application level {@link ICssCompressor}
   * when there is no custom
   */
  @Test
  public void appLevelCompressor()
  {
    CssPackageResource resource = new CssPackageResource(PackageResourceTest.class,
      "packaged1.txt", null, null, null);

    tester.startResource(resource);
    assertEquals(APP_COMPRESSED, tester.getLastResponseAsString());
  }

  /**
   * Tests that a {@link CssPackageResource} wont be compressed when there is no configured
   * {@link ICssCompressor}
   */
  @Test
  public void noCompressor()
  {
    CssPackageResource resource = new CssPackageResource(PackageResourceTest.class,
      "packaged1.txt", null, null, null);

    tester.getApplication().getResourceSettings().setCssCompressor(null);
    tester.startResource(resource);
    assertEquals("TEST", tester.getLastResponseAsString());
  }
}
TOP

Related Classes of org.apache.wicket.request.resource.CssPackageResourceTest

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.