/* * Copyright (c) 2010. All rights reserved. */ package ro.isdc.wro.extensions.processor; import java.io.File; import java.io.IOException; import java.io.StringReader; import java.io.StringWriter; import java.net.URL; import java.util.concurrent.Callable; import org.junit.Before; import org.junit.Test; import ro.isdc.wro.WroRuntimeException; import ro.isdc.wro.extensions.processor.js.PackerJsProcessor; import ro.isdc.wro.model.resource.ResourceType; import ro.isdc.wro.model.resource.processor.ResourcePreProcessor; import ro.isdc.wro.util.WroTestUtils; /** * Test packer js processor. * * @author Alex Objelean * @created Created on Apr 21, 2010 */ public class TestPackerJsProcessor { private ResourcePreProcessor processor; private File testFolder; @Before public void setUp() { testFolder = new File(ClassLoader.getSystemResource("test").getFile()); processor = new PackerJsProcessor(); } @Test public void testFromFolder() throws IOException { final URL url = getClass().getResource("packer"); //final File testFolder = new File(url.getFile(), "test"); final File expectedFolder = new File(url.getFile(), "expected"); WroTestUtils.compareFromDifferentFoldersByExtension(testFolder, expectedFolder, "js", processor); } @Test public void shouldBeThreadSafe() throws Exception { final PackerJsProcessor processor = new PackerJsProcessor() { @Override protected void onException(final WroRuntimeException e) { throw e; } }; final Callable<Void> task = new Callable<Void>() { public Void call() { try { processor.process(new StringReader("alert(1);"), new StringWriter()); } catch (final Exception e) { throw new RuntimeException(e); } return null; } }; WroTestUtils.runConcurrently(task, 20); } @Test public void shouldSupportCorrectResourceTypes() { WroTestUtils.assertProcessorSupportResourceTypes(processor, ResourceType.JS); } }