Search in sources :

Example 16 with IResourceStreamLocator

use of org.apache.wicket.core.util.resource.locator.IResourceStreamLocator in project wicket by apache.

the class CachingResourceStreamLocatorTest method nonStrictMatchingDoesntResultInInvalidStrictMatch.

/**
 * Tests non-strict before strict matching with a specific locale.
 */
@Test
public void nonStrictMatchingDoesntResultInInvalidStrictMatch() {
    IResourceStreamLocator resourceStreamLocator = new ResourceStreamLocator(new ClassPathResourceFinder(""));
    CachingResourceStreamLocator cachingLocator = new CachingResourceStreamLocator(resourceStreamLocator);
    String style = null;
    String variation = null;
    Locale locale = new Locale("nl", "NL");
    String extension = null;
    String filename = "org/apache/wicket/ajax/res/js/wicket-ajax-jquery-debug.js";
    // a non-strict lookup with a specific locale should find the non-localized resource
    IResourceStream nonStrictLocate = cachingLocator.locate(AbstractDefaultAjaxBehavior.class, filename, style, variation, locale, extension, false);
    assertThat(nonStrictLocate, is(not(nullValue())));
    // but a strict lookup with a specific locale should not fall back to the non-localized
    // resource
    IResourceStream strictLocate = cachingLocator.locate(AbstractDefaultAjaxBehavior.class, filename, style, variation, locale, extension, true);
    assertThat(strictLocate, is(nullValue()));
}
Also used : Locale(java.util.Locale) CachingResourceStreamLocator(org.apache.wicket.core.util.resource.locator.caching.CachingResourceStreamLocator) IResourceStream(org.apache.wicket.util.resource.IResourceStream) IResourceStreamLocator(org.apache.wicket.core.util.resource.locator.IResourceStreamLocator) ResourceStreamLocator(org.apache.wicket.core.util.resource.locator.ResourceStreamLocator) IResourceStreamLocator(org.apache.wicket.core.util.resource.locator.IResourceStreamLocator) CachingResourceStreamLocator(org.apache.wicket.core.util.resource.locator.caching.CachingResourceStreamLocator) ClassPathResourceFinder(org.apache.wicket.core.util.resource.ClassPathResourceFinder) Test(org.junit.Test)

Example 17 with IResourceStreamLocator

use of org.apache.wicket.core.util.resource.locator.IResourceStreamLocator in project wicket by apache.

the class CachingResourceStreamLocatorTest method lightweightResource.

/**
 * Tests light weight resource streams (everything but FileResourceStream and
 * UrlResourceStream). These should <strong>not</strong> be cached.
 */
@Test
public void lightweightResource() {
    IResourceStreamLocator resourceStreamLocator = mock(IResourceStreamLocator.class);
    StringResourceStream srs = new StringResourceStream("anything");
    when(resourceStreamLocator.locate(String.class, "path", "style", "variation", null, "extension", true)).thenReturn(srs);
    CachingResourceStreamLocator cachingLocator = new CachingResourceStreamLocator(resourceStreamLocator);
    cachingLocator.locate(String.class, "path", "style", "variation", null, "extension", true);
    cachingLocator.locate(String.class, "path", "style", "variation", null, "extension", true);
    // lightweight resource streams should not be cached so expect just a call to the delegate
    // for each call to the caching locator
    verify(resourceStreamLocator, times(2)).locate(String.class, "path", "style", "variation", null, "extension", true);
}
Also used : CachingResourceStreamLocator(org.apache.wicket.core.util.resource.locator.caching.CachingResourceStreamLocator) IResourceStreamLocator(org.apache.wicket.core.util.resource.locator.IResourceStreamLocator) StringResourceStream(org.apache.wicket.util.resource.StringResourceStream) Test(org.junit.Test)

Aggregations

IResourceStreamLocator (org.apache.wicket.core.util.resource.locator.IResourceStreamLocator)17 Test (org.junit.Test)11 CachingResourceStreamLocator (org.apache.wicket.core.util.resource.locator.caching.CachingResourceStreamLocator)9 ResourceStreamLocator (org.apache.wicket.core.util.resource.locator.ResourceStreamLocator)7 IResourceStream (org.apache.wicket.util.resource.IResourceStream)7 Locale (java.util.Locale)6 ClassPathResourceFinder (org.apache.wicket.core.util.resource.ClassPathResourceFinder)4 File (java.io.File)2 FileResourceStream (org.apache.wicket.util.resource.FileResourceStream)2 IOException (java.io.IOException)1 URL (java.net.URL)1 WicketRuntimeException (org.apache.wicket.WicketRuntimeException)1 UrlResourceStream (org.apache.wicket.core.util.resource.UrlResourceStream)1 ContainerInfo (org.apache.wicket.markup.ContainerInfo)1 IMarkupFragment (org.apache.wicket.markup.IMarkupFragment)1 MarkupResourceStream (org.apache.wicket.markup.MarkupResourceStream)1 MarkupStream (org.apache.wicket.markup.MarkupStream)1 MarkupType (org.apache.wicket.markup.MarkupType)1 PageExpiredErrorPage (org.apache.wicket.markup.html.pages.PageExpiredErrorPage)1 IFixedLocationResourceStream (org.apache.wicket.util.resource.IFixedLocationResourceStream)1