| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | <?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\Asset;
use Assetic\Asset\StringAsset;
class StringAssetTest extends \PHPUnit_Framework_TestCase
{
    public function testInterface()
    {
        $asset = new StringAsset('');
        $this->assertInstanceOf('Assetic\\Asset\\AssetInterface', $asset, 'Asset implements AssetInterface');
    }
    public function testLoadAppliesFilters()
    {
        $filter = $this->getMock('Assetic\\Filter\\FilterInterface');
        $filter->expects($this->once())->method('filterLoad');
        $asset = new StringAsset('foo', array($filter));
        $asset->load();
    }
    public function testAutomaticLoad()
    {
        $filter = $this->getMock('Assetic\\Filter\\FilterInterface');
        $filter->expects($this->once())->method('filterLoad');
        $asset = new StringAsset('foo', array($filter));
        $asset->dump();
    }
    public function testGetFilters()
    {
        $asset = new StringAsset('');
        $this->assertInternalType('array', $asset->getFilters(), '->getFilters() returns an array');
    }
    public function testLoadAppliesAdditionalFilter()
    {
        $asset = new StringAsset('');
        $asset->load();
        $filter = $this->getMock('Assetic\\Filter\\FilterInterface');
        $filter->expects($this->once())
            ->method('filterLoad')
            ->with($asset);
        $asset->load($filter);
    }
    public function testDumpAppliesAdditionalFilter()
    {
        $asset = new StringAsset('');
        $filter = $this->getMock('Assetic\\Filter\\FilterInterface');
        $filter->expects($this->once())
            ->method('filterDump')
            ->with($asset);
        $asset->dump($filter);
    }
    public function testLastModified()
    {
        $asset = new StringAsset('');
        $asset->setLastModified(123);
        $this->assertEquals(123, $asset->getLastModified(), '->getLastModified() return the set last modified value');
    }
}
 |