--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/assetic/tests/Assetic/Test/Factory/AssetFactoryTest.php Sat Sep 24 15:40:41 2011 +0200
@@ -0,0 +1,187 @@
+<?php
+
+/*
+ * This file is part of the Assetic package, an OpenSky project.
+ *
+ * (c) 2010-2011 OpenSky Project Inc
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Assetic\Test\Factory;
+
+use Assetic\Factory\AssetFactory;
+
+class AssetFactoryTest extends \PHPUnit_Framework_TestCase
+{
+ private $am;
+ private $fm;
+ private $factory;
+
+ protected function setUp()
+ {
+ $this->am = $this->getMock('Assetic\\AssetManager');
+ $this->fm = $this->getMock('Assetic\\FilterManager');
+
+ $this->factory = new AssetFactory(__DIR__);
+ $this->factory->setAssetManager($this->am);
+ $this->factory->setFilterManager($this->fm);
+ }
+
+ public function testNoAssetManagerReference()
+ {
+ $this->setExpectedException('LogicException', 'There is no asset manager.');
+
+ $factory = new AssetFactory('.');
+ $factory->createAsset(array('@foo'));
+ }
+
+ public function testNoAssetManagerNotReference()
+ {
+ $factory = new AssetFactory('.');
+ $this->assertInstanceOf('Assetic\\Asset\\AssetInterface', $factory->createAsset(array('foo')));
+ }
+
+ public function testNoFilterManager()
+ {
+ $this->setExpectedException('LogicException', 'There is no filter manager.');
+
+ $factory = new AssetFactory('.');
+ $factory->createAsset(array('foo'), array('foo'));
+ }
+
+ public function testCreateAssetReference()
+ {
+ $referenced = $this->getMock('Assetic\\Asset\\AssetInterface');
+
+ $this->am->expects($this->any())
+ ->method('get')
+ ->with('jquery')
+ ->will($this->returnValue($referenced));
+
+ $assets = $this->factory->createAsset(array('@jquery'));
+ $arr = iterator_to_array($assets);
+ $this->assertInstanceOf('Assetic\\Asset\\AssetReference', $arr[0], '->createAsset() creates a reference');
+ }
+
+ /**
+ * @dataProvider getHttpUrls
+ */
+ public function testCreateHttpAsset($sourceUrl)
+ {
+ $assets = $this->factory->createAsset(array($sourceUrl));
+ $arr = iterator_to_array($assets);
+ $this->assertInstanceOf('Assetic\\Asset\\HttpAsset', $arr[0], '->createAsset() creates an HTTP asset');
+ }
+
+ public function getHttpUrls()
+ {
+ return array(
+ array('http://example.com/foo.css'),
+ array('https://example.com/foo.css'),
+ array('//example.com/foo.css'),
+ );
+ }
+
+ public function testCreateFileAsset()
+ {
+ $assets = $this->factory->createAsset(array(basename(__FILE__)));
+ $arr = iterator_to_array($assets);
+ $this->assertInstanceOf('Assetic\\Asset\\FileAsset', $arr[0], '->createAsset() creates a file asset');
+ }
+
+ public function testCreateGlobAsset()
+ {
+ $assets = $this->factory->createAsset(array('*'));
+ $arr = iterator_to_array($assets);
+ $this->assertInstanceOf('Assetic\\Asset\\FileAsset', $arr[0], '->createAsset() uses a glob to create a file assets');
+ }
+
+ public function testCreateAssetCollection()
+ {
+ $asset = $this->factory->createAsset(array('*', basename(__FILE__)));
+ $this->assertInstanceOf('Assetic\\Asset\\AssetCollection', $asset, '->createAsset() creates an asset collection');
+ }
+
+ public function testFilter()
+ {
+ $this->fm->expects($this->once())
+ ->method('get')
+ ->with('foo')
+ ->will($this->returnValue($this->getMock('Assetic\\Filter\\FilterInterface')));
+
+ $asset = $this->factory->createAsset(array(), array('foo'));
+ $this->assertEquals(1, count($asset->getFilters()), '->createAsset() adds filters');
+ }
+
+ public function testInvalidFilter()
+ {
+ $this->setExpectedException('InvalidArgumentException');
+
+ $this->fm->expects($this->once())
+ ->method('get')
+ ->with('foo')
+ ->will($this->throwException(new \InvalidArgumentException()));
+
+ $asset = $this->factory->createAsset(array(), array('foo'));
+ }
+
+ public function testOptionalInvalidFilter()
+ {
+ $this->factory->setDebug(true);
+
+ $asset = $this->factory->createAsset(array(), array('?foo'));
+
+ $this->assertEquals(0, count($asset->getFilters()), '->createAsset() does not add an optional invalid filter');
+ }
+
+ public function testIncludingOptionalFilter()
+ {
+ $this->fm->expects($this->once())
+ ->method('get')
+ ->with('foo')
+ ->will($this->returnValue($this->getMock('Assetic\\Filter\\FilterInterface')));
+
+ $this->factory->createAsset(array('foo.css'), array('?foo'));
+ }
+
+ public function testWorkers()
+ {
+ $worker = $this->getMock('Assetic\\Factory\\Worker\\WorkerInterface');
+
+ // called once on the collection and once on each leaf
+ $worker->expects($this->exactly(3))
+ ->method('process')
+ ->with($this->isInstanceOf('Assetic\\Asset\\AssetInterface'));
+
+ $this->factory->addWorker($worker);
+ $this->factory->createAsset(array('foo.js', 'bar.js'));
+ }
+
+ public function testNestedFormula()
+ {
+ $this->fm->expects($this->once())
+ ->method('get')
+ ->with('foo')
+ ->will($this->returnValue($this->getMock('Assetic\\Filter\\FilterInterface')));
+
+ $inputs = array(
+ 'css/main.css',
+ array(
+ // nested formula
+ array('css/more.sass'),
+ array('foo'),
+ ),
+ );
+
+ $asset = $this->factory->createAsset($inputs, array(), array('output' => 'css/*.css'));
+
+ $i = 0;
+ foreach ($asset as $leaf) {
+ $i++;
+ }
+
+ $this->assertEquals(2, $i);
+ }
+}