grav = $grav();
        $this->assets = $this->grav['assets'];
    }
    protected function _after()
    {
    }
    public function testAddingAssets()
    {
        //test add()
        $this->assets->add('test.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        $array = $this->assets->getCss();
        $this->assertSame([
            'asset'    => '/test.css',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading' => '',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        $this->assets->add('test.js');
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $array = $this->assets->getCss();
        $this->assertSame([
            'asset'    => '/test.css',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading' => '',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //test addCss(). Test adding asset to a separate group
        $this->assets->reset();
        $this->assets->addCSS('test.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        $array = $this->assets->getCss();
        $this->assertSame([
            'asset'    => '/test.css',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading' => '',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //test addCss(). Testing with remote URL
        $this->assets->reset();
        $this->assets->addCSS('http://www.somesite.com/test.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        $array = $this->assets->getCss();
        $this->assertSame([
            'asset'    => 'http://www.somesite.com/test.css',
            'remote'   => true,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading' => '',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //test addCss() adding asset to a separate group, and with an alternate rel attribute
        $this->assets->reset();
        $this->assets->addCSS('test.css', ['group' => 'alternate']);
        $css = $this->assets->css('alternate', ['rel' => 'alternate']);
        $this->assertSame('' . PHP_EOL, $css);
        //test addJs()
        $this->assets->reset();
        $this->assets->addJs('test.js');
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $array = $this->assets->getJs();
        $this->assertSame([
            'asset'    => '/test.js',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading'  => '',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //Test CSS Groups
        $this->assets->reset();
        $this->assets->addCSS('test.css', null, true, 'footer');
        $css = $this->assets->css();
        $this->assertEmpty($css);
        $css = $this->assets->css('footer');
        $this->assertSame('' . PHP_EOL, $css);
        $array = $this->assets->getCss();
        $this->assertSame([
            'asset'    => '/test.css',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading' => '',
            'group'    => 'footer',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //Test JS Groups
        $this->assets->reset();
        $this->assets->addJs('test.js', null, true, null, 'footer');
        $js = $this->assets->js();
        $this->assertEmpty($js);
        $js = $this->assets->js('footer');
        $this->assertSame('' . PHP_EOL, $js);
        $array = $this->assets->getJs();
        $this->assertSame([
            'asset'    => '/test.js',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading'  => '',
            'group'    => 'footer',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //Test async / defer
        $this->assets->reset();
        $this->assets->addJs('test.js', null, true, 'async', null);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $array = $this->assets->getJs();
        $this->assertSame([
            'asset'    => '/test.js',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading'  => 'async',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        $this->assets->reset();
        $this->assets->addJs('test.js', null, true, 'defer', null);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $array = $this->assets->getJs();
        $this->assertSame([
            'asset'    => '/test.js',
            'remote'   => false,
            'priority' => 10,
            'order'    => 0,
            'pipeline' => true,
            'loading'  => 'defer',
            'group'    => 'head',
            'modified' => false,
            'query' => ''
        ], reset($array));
        //Test inline
        $this->assets->reset();
        $this->assets->addJs('/system/assets/jquery/jquery-2.x.min.js', null, true, 'inline', null);
        $js = $this->assets->js();
        $this->assertContains('jQuery Foundation', $js);
        $this->assets->reset();
        $this->assets->addCss('/system/assets/debugger.css', null, true, null, 'inline');
        $css = $this->assets->css();
        $this->assertContains('div.phpdebugbar', $css);
        $this->assets->reset();
        $this->assets->addCss('https://fonts.googleapis.com/css?family=Roboto', null, true, null, 'inline');
        $css = $this->assets->css();
        $this->assertContains('font-family: \'Roboto\';', $css);
        //Test adding media queries
        $this->assets->reset();
        $this->assets->add('test.css', ['media' => 'only screen and (min-width: 640px)']);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
    }
    public function testAddingAssetPropertiesWithArray()
    {
        //Test adding assets with object to define properties
        $this->assets->reset();
        $this->assets->addJs('test.js', ['loading' => 'async']);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $this->assets->reset();
    }
    public function testAddingJSAssetPropertiesWithArrayFromCollection()
    {
        //Test adding properties with array
        $this->assets->reset();
        $this->assets->addJs('jquery', ['loading' => 'async']);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        //Test priority too
        $this->assets->reset();
        $this->assets->addJs('jquery', ['loading' => 'async', 'priority' => 1]);
        $this->assets->addJs('test.js', ['loading' => 'async', 'priority' => 2]);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $js);
        //Test multiple groups
        $this->assets->reset();
        $this->assets->addJs('jquery', ['loading' => 'async', 'priority' => 1, 'group' => 'footer']);
        $this->assets->addJs('test.js', ['loading' => 'async', 'priority' => 2]);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
        $js = $this->assets->js('footer');
        $this->assertSame('' . PHP_EOL, $js);
        //Test adding array of assets
        //Test priority too
        $this->assets->reset();
        $this->assets->addJs(['jquery', 'test.js'], ['loading' => 'async']);
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $js);
    }
    public function testAddingCSSAssetPropertiesWithArrayFromCollection()
    {
        $this->assets->registerCollection('test', ['/system/assets/whoops.css']);
        //Test priority too
        $this->assets->reset();
        $this->assets->addCss('test', ['priority' => 1]);
        $this->assets->addCss('test.css', ['priority' => 2]);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $css);
        //Test multiple groups
        $this->assets->reset();
        $this->assets->addCss('test', ['priority' => 1, 'group' => 'footer']);
        $this->assets->addCss('test.css', ['priority' => 2]);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        $css = $this->assets->css('footer');
        $this->assertSame('' . PHP_EOL, $css);
        //Test adding array of assets
        //Test priority too
        $this->assets->reset();
        $this->assets->addCss(['test', 'test.css'], ['loading' => 'async']);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $css);
    }
    public function testPriorityOfAssets()
    {
        $this->assets->reset();
        $this->assets->add('test.css');
        $this->assets->add('test-after.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $css);
        //----------------
        $this->assets->reset();
        $this->assets->add('test-after.css', 1);
        $this->assets->add('test.css', 2);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL, $css);
        //----------------
        $this->assets->reset();
        $this->assets->add('test-after.css', 1);
        $this->assets->add('test.css', 2);
        $this->assets->add('test-before.css', 3);
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL .
            '' . PHP_EOL .
            '' . PHP_EOL, $css);
    }
    public function testPipeline()
    {
        $this->assets->reset();
        //File not existing. Pipeline searches for that file without reaching it. Output is empty.
        $this->assets->add('test.css', null, true);
        $this->assets->setCssPipeline(true);
        $css = $this->assets->css();
        $this->assertSame('', $css);
        //Add a core Grav CSS file, which is found. Pipeline will now return a file
        $this->assets->add('/system/assets/debugger.css', null, true);
        $css = $this->assets->css();
        $this->assertContains('', $css);
    }
    public function testPipelineWithTimestamp()
    {
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        //Add a core Grav CSS file, which is found. Pipeline will now return a file
        $this->assets->add('/system/assets/debugger.css', null, true);
        $css = $this->assets->css();
        $this->assertContains('', $css);
        $this->assertContains($this->assets->getTimestamp(), $css);
    }
    public function testInlinePipeline()
    {
        $this->assets->reset();
        //File not existing. Pipeline searches for that file without reaching it. Output is empty.
        $this->assets->add('test.css', null, true);
        $this->assets->setCssPipeline(true);
        $css = $this->assets->css('head', ['loading' => 'inline']);
        $this->assertSame('', $css);
        //Add a core Grav CSS file, which is found. Pipeline will now return its content.
        $this->assets->addCss('https://fonts.googleapis.com/css?family=Roboto', null, true);
        $this->assets->add('/system/assets/debugger.css', null, true);
        $css = $this->assets->css('head', ['loading' => 'inline']);
        $this->assertContains('font-family:\'Roboto\';', $css);
        $this->assertContains('div.phpdebugbar', $css);
    }
    public function testAddAsyncJs()
    {
        $this->assets->reset();
        $this->assets->addAsyncJs('jquery');
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
    }
    public function testAddDeferJs()
    {
        $this->assets->reset();
        $this->assets->addDeferJs('jquery');
        $js = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $js);
    }
    public function testTimestamps()
    {
        // local CSS nothing extra
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addCSS('test.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        // local CSS already with param
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addCSS('test.css?bar');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        // external CSS already
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addCSS('http://somesite.com/test.css');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        // external CSS already with param
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addCSS('http://somesite.com/test.css?bar');
        $css = $this->assets->css();
        $this->assertSame('' . PHP_EOL, $css);
        // local JS nothing extra
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addJs('test.js');
        $css = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $css);
        // local JS already with param
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addJs('test.js?bar');
        $css = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $css);
        // external JS already
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addJs('http://somesite.com/test.js');
        $css = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $css);
        // external JS already with param
        $this->assets->reset();
        $this->assets->setTimestamp('foo');
        $this->assets->addJs('http://somesite.com/test.js?bar');
        $css = $this->assets->js();
        $this->assertSame('' . PHP_EOL, $css);
    }
    public function testAddInlineCss()
    {
        $this->assets->reset();
        $this->assets->addInlineCss('body { color: black }');
        $css = $this->assets->css();
        $this->assertSame(PHP_EOL . '' . PHP_EOL, $css);
    }
    public function testAddInlineJs()
    {
        $this->assets->reset();
        $this->assets->addInlineJs('alert("test")');
        $js = $this->assets->js();
        $this->assertSame(PHP_EOL . '' . PHP_EOL, $js);
    }
    public function testGetCollections()
    {
        $this->assertInternalType('array', $this->assets->getCollections());
        $this->assertContains('jquery', array_keys($this->assets->getCollections()));
        $this->assertContains('system://assets/jquery/jquery-2.x.min.js', $this->assets->getCollections());
    }
    public function testExists()
    {
        $this->assertTrue($this->assets->exists('jquery'));
        $this->assertFalse($this->assets->exists('another-unexisting-library'));
    }
    public function testRegisterCollection()
    {
        $this->assets->registerCollection('debugger', ['/system/assets/debugger.css']);
        $this->assertTrue($this->assets->exists('debugger'));
        $this->assertContains('debugger', array_keys($this->assets->getCollections()));
    }
    public function testReset()
    {
        $this->assets->addInlineJs('alert("test")');
        $this->assets->reset();
        $this->assertCount(0, (array) $this->assets->js());
        $this->assets->addAsyncJs('jquery');
        $this->assets->reset();
        $this->assertCount(0, (array) $this->assets->js());
        $this->assets->addInlineCss('body { color: black }');
        $this->assets->reset();
        $this->assertCount(0, (array) $this->assets->css());
        $this->assets->add('/system/assets/debugger.css', null, true);
        $this->assets->reset();
        $this->assertCount(0, (array) $this->assets->css());
    }
    public function testResetJs()
    {
        $this->assets->addInlineJs('alert("test")');
        $this->assets->resetJs();
        $this->assertCount(0, (array) $this->assets->js());
        $this->assets->addAsyncJs('jquery');
        $this->assets->resetJs();
        $this->assertCount(0, (array) $this->assets->js());
    }
    public function testResetCss()
    {
        $this->assertCount(0, (array) $this->assets->js());
        $this->assets->addInlineCss('body { color: black }');
        $this->assets->resetCss();
        $this->assertCount(0, (array) $this->assets->css());
        $this->assets->add('/system/assets/debugger.css', null, true);
        $this->assets->resetCss();
        $this->assertCount(0, (array) $this->assets->css());
    }
    public function testAddDirCss()
    {
        $this->assets->addDirCss('/system');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertGreaterThan(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertCount(0, (array) $this->assets->getJs());
        $this->assets->reset();
        $this->assets->addDirCss('/system/assets');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertGreaterThan(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertCount(0, (array) $this->assets->getJs());
        $this->assets->reset();
        $this->assets->addDirJs('/system');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertCount(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertGreaterThan(0, (array) $this->assets->getJs());
        $this->assets->reset();
        $this->assets->addDirJs('/system/assets');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertCount(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertGreaterThan(0, (array) $this->assets->getJs());
        $this->assets->reset();
        $this->assets->addDir('/system/assets');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertGreaterThan(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertGreaterThan(0, (array) $this->assets->getJs());
        //Use streams
        $this->assets->reset();
        $this->assets->addDir('system://assets');
        $this->assertInternalType('array', $this->assets->getCss());
        $this->assertGreaterThan(0, (array) $this->assets->getCss());
        $this->assertInternalType('array', $this->assets->getJs());
        $this->assertGreaterThan(0, (array) $this->assets->getJs());
    }
}