2008-07-18 01:32:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-07-18 01:32:31 +02:00
|
|
|
* @subpackage tests
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2008-07-18 01:32:31 +02:00
|
|
|
* @todo Test that order of combine_files() is correct
|
2008-07-18 05:47:17 +02:00
|
|
|
* @todo Figure out how to clear the modified state of Requirements class - might affect other tests.
|
2008-07-18 01:32:31 +02:00
|
|
|
*/
|
|
|
|
class RequirementsTest extends SapphireTest {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
static $html_template = '<html><head></head><body></body></html>';
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-13 03:15:47 +02:00
|
|
|
static $old_requirements = null;
|
2012-11-23 14:55:19 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testExternalUrls() {
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
|
|
|
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
$backend->javascript('https://www.mysecuredomain.com/test.js');
|
2012-08-23 01:13:29 +02:00
|
|
|
$backend->javascript('//scheme-relative.example.com/test.js');
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->css('http://www.mydomain.com/test.css');
|
|
|
|
$backend->css('https://www.mysecuredomain.com/test.css');
|
2012-08-23 01:13:29 +02:00
|
|
|
$backend->css('//scheme-relative.example.com/test.css');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-08-11 09:22:50 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
(strpos($html, 'http://www.mydomain.com/test.js') !== false),
|
|
|
|
'Load external javascript URL'
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
2014-08-15 08:53:05 +02:00
|
|
|
(strpos($html, 'https://www.mysecuredomain.com/test.js') !== false),
|
2008-08-11 09:22:50 +02:00
|
|
|
'Load external secure javascript URL'
|
|
|
|
);
|
2012-08-23 01:13:29 +02:00
|
|
|
$this->assertTrue(
|
2014-08-15 08:53:05 +02:00
|
|
|
(strpos($html, '//scheme-relative.example.com/test.js') !== false),
|
2012-08-23 01:13:29 +02:00
|
|
|
'Load external scheme-relative javascript URL'
|
|
|
|
);
|
2008-08-11 09:22:50 +02:00
|
|
|
$this->assertTrue(
|
2014-08-15 08:53:05 +02:00
|
|
|
(strpos($html, 'http://www.mydomain.com/test.css') !== false),
|
2008-08-11 09:22:50 +02:00
|
|
|
'Load external CSS URL'
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
2014-08-15 08:53:05 +02:00
|
|
|
(strpos($html, 'https://www.mysecuredomain.com/test.css') !== false),
|
2008-08-11 09:22:50 +02:00
|
|
|
'Load external secure CSS URL'
|
|
|
|
);
|
2012-08-23 01:13:29 +02:00
|
|
|
$this->assertTrue(
|
2014-08-15 08:53:05 +02:00
|
|
|
(strpos($html, '//scheme-relative.example.com/test.css') !== false),
|
2012-08-23 01:13:29 +02:00
|
|
|
'Load scheme-relative CSS URL'
|
|
|
|
);
|
2008-08-11 09:22:50 +02:00
|
|
|
}
|
2010-05-25 06:13:45 +02:00
|
|
|
|
|
|
|
protected function setupCombinedRequirements($backend) {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->clear();
|
2010-05-25 06:15:43 +02:00
|
|
|
$backend->setCombinedFilesFolder('assets');
|
2010-05-25 06:13:45 +02:00
|
|
|
|
|
|
|
// clearing all previously generated requirements (just in case)
|
|
|
|
$backend->clear_combined_files();
|
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
|
|
|
|
|
|
|
// require files normally (e.g. called from a FormField instance)
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->javascript($basePath . '/RequirementsTest_a.js');
|
|
|
|
$backend->javascript($basePath . '/RequirementsTest_b.js');
|
|
|
|
$backend->javascript($basePath . '/RequirementsTest_c.js');
|
2010-05-25 06:13:45 +02:00
|
|
|
|
|
|
|
// require two of those files as combined includes
|
|
|
|
$backend->combine_files(
|
|
|
|
'RequirementsTest_bc.js',
|
|
|
|
array(
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath . '/RequirementsTest_b.js',
|
|
|
|
$basePath . '/RequirementsTest_c.js'
|
2010-05-25 06:13:45 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
protected function setupCombinedNonrequiredRequirements($backend) {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
$backend->clear();
|
|
|
|
$backend->setCombinedFilesFolder('assets');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
// clearing all previously generated requirements (just in case)
|
|
|
|
$backend->clear_combined_files();
|
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
// require files as combined includes
|
|
|
|
$backend->combine_files(
|
|
|
|
'RequirementsTest_bc.js',
|
|
|
|
array(
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath . '/RequirementsTest_b.js',
|
|
|
|
$basePath . '/RequirementsTest_c.js'
|
2010-10-15 05:09:15 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2010-05-25 06:13:45 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testCombinedJavascript() {
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
2010-05-25 06:15:43 +02:00
|
|
|
$backend->setCombinedFilesFolder('assets');
|
2010-05-25 06:13:45 +02:00
|
|
|
|
|
|
|
$this->setupCombinedRequirements($backend);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:15:43 +02:00
|
|
|
$combinedFilePath = Director::baseFolder() . '/assets/' . 'RequirementsTest_bc.js';
|
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
2008-08-11 08:28:29 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/* COMBINED JAVASCRIPT FILE IS INCLUDED IN HTML HEADER */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue((bool)preg_match('/src=".*\/RequirementsTest_bc\.js/', $html),
|
|
|
|
'combined javascript file is included in html header');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(file_exists($combinedFilePath),
|
|
|
|
'combined javascript file exists');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue((strpos(file_get_contents($combinedFilePath), "alert('b')") !== false),
|
|
|
|
'combined javascript has correct content');
|
|
|
|
$this->assertTrue((strpos(file_get_contents($combinedFilePath), "alert('c')") !== false),
|
|
|
|
'combined javascript has correct content');
|
2011-03-30 08:49:11 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertFalse((bool)preg_match('/src=".*\/RequirementsTest_b\.js/', $html),
|
|
|
|
'combined files are not included twice');
|
|
|
|
$this->assertFalse((bool)preg_match('/src=".*\/RequirementsTest_c\.js/', $html),
|
|
|
|
'combined files are not included twice');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/* NORMAL REQUIREMENTS ARE STILL INCLUDED */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue((bool)preg_match('/src=".*\/RequirementsTest_a\.js/', $html),
|
|
|
|
'normal requirements are still included');
|
2008-07-18 05:47:17 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
// Then do it again, this time not requiring the files beforehand
|
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
|
|
|
$backend->setCombinedFilesFolder('assets');
|
|
|
|
|
|
|
|
$this->setupCombinedNonrequiredRequirements($backend);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
$combinedFilePath = Director::baseFolder() . '/assets/' . 'RequirementsTest_bc.js';
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE IS INCLUDED IN HTML HEADER */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue((bool)preg_match('/src=".*\/RequirementsTest_bc\.js/', $html),
|
|
|
|
'combined javascript file is included in html header');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(file_exists($combinedFilePath),
|
|
|
|
'combined javascript file exists');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue((strpos(file_get_contents($combinedFilePath), "alert('b')") !== false),
|
|
|
|
'combined javascript has correct content');
|
|
|
|
$this->assertTrue((strpos(file_get_contents($combinedFilePath), "alert('c')") !== false),
|
|
|
|
'combined javascript has correct content');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-15 05:09:15 +02:00
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertFalse((bool)preg_match('/src=".*\/RequirementsTest_b\.js/', $html),
|
|
|
|
'combined files are not included twice');
|
|
|
|
$this->assertFalse((bool)preg_match('/src=".*\/RequirementsTest_c\.js/', $html),
|
|
|
|
'combined files are not included twice');
|
2010-10-15 05:09:15 +02:00
|
|
|
|
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2008-07-18 05:47:17 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-02-12 22:54:53 +01:00
|
|
|
public function testCombinedCss() {
|
|
|
|
$basePath = $this->getCurrentRelativePath();
|
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
|
|
|
|
|
|
|
$backend->combine_files(
|
|
|
|
'print.css',
|
|
|
|
array(
|
|
|
|
$basePath . '/RequirementsTest_print_a.css',
|
|
|
|
$basePath . '/RequirementsTest_print_b.css'
|
|
|
|
),
|
|
|
|
'print'
|
|
|
|
);
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
|
|
|
|
|
|
|
$this->assertTrue((bool)preg_match('/href=".*\/print\.css/', $html), 'Print stylesheets have been combined.');
|
|
|
|
$this->assertTrue((bool)preg_match(
|
|
|
|
'/media="print/', $html),
|
|
|
|
'Combined print stylesheet retains the media parameter'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testBlockedCombinedJavascript() {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
2010-05-25 06:15:43 +02:00
|
|
|
$backend->setCombinedFilesFolder('assets');
|
|
|
|
$combinedFilePath = Director::baseFolder() . '/assets/' . 'RequirementsTest_bc.js';
|
2008-08-11 09:22:50 +02:00
|
|
|
|
2008-07-18 05:47:17 +02:00
|
|
|
/* BLOCKED COMBINED FILES ARE NOT INCLUDED */
|
2010-05-25 06:13:45 +02:00
|
|
|
$this->setupCombinedRequirements($backend);
|
|
|
|
$backend->block('RequirementsTest_bc.js');
|
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2008-08-11 09:22:50 +02:00
|
|
|
|
2008-07-18 05:47:17 +02:00
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
2010-05-25 06:13:45 +02:00
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
2008-08-11 09:22:50 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertFalse((bool)preg_match('/src=".*\/RequirementsTest_bc\.js/', $html),
|
|
|
|
'blocked combined files are not included ');
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->unblock('RequirementsTest_bc.js');
|
2008-07-18 05:47:17 +02:00
|
|
|
|
|
|
|
/* BLOCKED UNCOMBINED FILES ARE NOT INCLUDED */
|
2010-05-25 06:13:45 +02:00
|
|
|
$this->setupCombinedRequirements($backend);
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->block($basePath .'/RequirementsTest_b.js');
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2008-07-18 05:47:17 +02:00
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
2010-05-25 06:13:45 +02:00
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertFalse((strpos(file_get_contents($combinedFilePath), "alert('b')") !== false),
|
|
|
|
'blocked uncombined files are not included');
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->unblock('RequirementsTest_b.js');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-07-18 05:47:17 +02:00
|
|
|
/* A SINGLE FILE CAN'T BE INCLUDED IN TWO COMBINED FILES */
|
2010-05-25 06:13:45 +02:00
|
|
|
$this->setupCombinedRequirements($backend);
|
2008-07-18 05:47:17 +02:00
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
2008-08-12 01:18:56 +02:00
|
|
|
|
|
|
|
// This throws a notice-level error, so we prefix with @
|
2010-05-25 06:13:45 +02:00
|
|
|
@$backend->combine_files(
|
2008-11-01 15:04:31 +01:00
|
|
|
'RequirementsTest_ac.js',
|
2008-07-18 05:47:17 +02:00
|
|
|
array(
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath . '/RequirementsTest_a.js',
|
|
|
|
$basePath . '/RequirementsTest_c.js'
|
2008-07-18 05:47:17 +02:00
|
|
|
)
|
|
|
|
);
|
2008-08-12 01:18:56 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$combinedFiles = $backend->get_combine_files();
|
2008-07-18 05:47:17 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
array_keys($combinedFiles),
|
2008-11-01 15:04:31 +01:00
|
|
|
array('RequirementsTest_bc.js'),
|
2008-08-11 09:22:50 +02:00
|
|
|
"A single file can't be included in two combined files"
|
2008-07-18 05:47:17 +02:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2008-07-18 05:47:17 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testArgsInUrls() {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
$backend->set_combined_files_enabled(true);
|
2009-04-29 02:07:39 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->javascript($basePath . '/RequirementsTest_a.js?test=1&test=2&test=3');
|
|
|
|
$backend->css($basePath . '/RequirementsTest_a.css?test=1&test=2&test=3');
|
2010-05-25 06:16:33 +02:00
|
|
|
$backend->delete_combined_files('RequirementsTest_bc.js');
|
2009-04-29 02:07:39 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
2009-04-29 02:07:39 +02:00
|
|
|
|
|
|
|
/* Javascript has correct path */
|
2013-08-21 08:54:05 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
(bool)preg_match('/src=".*\/RequirementsTest_a\.js\?m=\d\d+&test=1&test=2&test=3/',$html),
|
2014-08-15 08:53:05 +02:00
|
|
|
'javascript has correct path');
|
2009-04-29 02:07:39 +02:00
|
|
|
|
|
|
|
/* CSS has correct path */
|
2013-08-21 08:54:05 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
(bool)preg_match('/href=".*\/RequirementsTest_a\.css\?m=\d\d+&test=1&test=2&test=3/',$html),
|
|
|
|
'css has correct path');
|
2009-04-29 02:07:39 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testRequirementsBackend() {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-05-25 06:13:45 +02:00
|
|
|
$backend = new Requirements_Backend();
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->javascript($basePath . '/a.js');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(count($backend->get_javascript()) == 1,
|
|
|
|
"There should be only 1 file included in required javascript.");
|
|
|
|
$this->assertTrue(in_array($basePath . '/a.js', $backend->get_javascript()),
|
|
|
|
"a.js should be included in required javascript.");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->javascript($basePath . '/b.js');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(count($backend->get_javascript()) == 2,
|
|
|
|
"There should be 2 files included in required javascript.");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->block($basePath . '/a.js');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(count($backend->get_javascript()) == 1,
|
|
|
|
"There should be only 1 file included in required javascript.");
|
|
|
|
$this->assertFalse(in_array($basePath . '/a.js', $backend->get_javascript()),
|
|
|
|
"a.js should not be included in required javascript after it has been blocked.");
|
|
|
|
$this->assertTrue(in_array($basePath . '/b.js', $backend->get_javascript()),
|
|
|
|
"b.js should be included in required javascript.");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->css($basePath . '/a.css');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(count($backend->get_css()) == 1,
|
|
|
|
"There should be only 1 file included in required css.");
|
|
|
|
$this->assertArrayHasKey($basePath . '/a.css', $backend->get_css(),
|
|
|
|
"a.css should be in required css.");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
$backend->block($basePath . '/a.css');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue(count($backend->get_css()) == 0,
|
|
|
|
"There should be nothing in required css after file has been blocked.");
|
2008-11-07 03:06:28 +01:00
|
|
|
}
|
2010-10-13 03:15:47 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testConditionalTemplateRequire() {
|
2011-03-30 08:49:11 +02:00
|
|
|
$basePath = $this->getCurrentRelativePath();
|
2012-09-26 23:34:00 +02:00
|
|
|
// we're asserting "framework", so set the relative path accordingly in case FRAMEWORK_DIR was changed
|
|
|
|
// to something else
|
2012-04-14 08:48:28 +02:00
|
|
|
$basePath = 'framework' . substr($basePath, strlen(FRAMEWORK_DIR));
|
|
|
|
|
2012-11-23 14:55:19 +01:00
|
|
|
$backend = new Requirements_Backend();
|
2010-10-13 03:15:47 +02:00
|
|
|
$holder = Requirements::backend();
|
|
|
|
Requirements::set_backend($backend);
|
|
|
|
$data = new ArrayData(array(
|
|
|
|
'FailTest' => true,
|
|
|
|
));
|
|
|
|
$data->renderWith('RequirementsTest_Conditionals');
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertFileIncluded($backend, 'css', $basePath .'/RequirementsTest_a.css');
|
|
|
|
$this->assertFileIncluded($backend, 'js',
|
2012-09-26 23:34:00 +02:00
|
|
|
array($basePath .'/RequirementsTest_b.js', $basePath .'/RequirementsTest_c.js'));
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertFileNotIncluded($backend, 'js', $basePath .'/RequirementsTest_a.js');
|
|
|
|
$this->assertFileNotIncluded($backend, 'css',
|
2012-09-26 23:34:00 +02:00
|
|
|
array($basePath .'/RequirementsTest_b.css', $basePath .'/RequirementsTest_c.css'));
|
2010-10-13 03:15:47 +02:00
|
|
|
$backend->clear();
|
|
|
|
$data = new ArrayData(array(
|
|
|
|
'FailTest' => false,
|
|
|
|
));
|
|
|
|
$data->renderWith('RequirementsTest_Conditionals');
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertFileNotIncluded($backend, 'css', $basePath .'/RequirementsTest_a.css');
|
|
|
|
$this->assertFileNotIncluded($backend, 'js',
|
2012-09-26 23:34:00 +02:00
|
|
|
array($basePath .'/RequirementsTest_b.js', $basePath .'/RequirementsTest_c.js'));
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertFileIncluded($backend, 'js', $basePath .'/RequirementsTest_a.js');
|
|
|
|
$this->assertFileIncluded($backend, 'css',
|
2012-09-26 23:34:00 +02:00
|
|
|
array($basePath .'/RequirementsTest_b.css', $basePath .'/RequirementsTest_c.css'));
|
2010-10-13 03:15:47 +02:00
|
|
|
Requirements::set_backend($holder);
|
|
|
|
}
|
2011-12-23 16:33:45 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testJsWriteToBody() {
|
2011-12-23 16:33:45 +01:00
|
|
|
$backend = new Requirements_Backend();
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
|
|
|
|
// Test matching with HTML5 <header> tags as well
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-23 16:33:45 +01:00
|
|
|
$backend->set_write_js_to_body(false);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
|
|
|
$this->assertContains('<head><script', $html);
|
|
|
|
|
|
|
|
$backend->set_write_js_to_body(true);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
|
|
|
$this->assertNotContains('<head><script', $html);
|
|
|
|
$this->assertContains('</script></body>', $html);
|
|
|
|
}
|
2010-10-13 03:15:47 +02:00
|
|
|
|
2014-08-30 20:32:28 +02:00
|
|
|
public function testIncludedJsIsNotCommentedOut() {
|
|
|
|
$template = '<html><head></head><body><!--<script>alert("commented out");</script>--></body></html>';
|
|
|
|
$backend = new Requirements_Backend();
|
|
|
|
$backend->javascript($this->getCurrentRelativePath() . '/RequirementsTest_a.js');
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
|
|
|
//wiping out commented-out html
|
|
|
|
$html = preg_replace('/<!--(.*)-->/Uis', '', $html);
|
|
|
|
$this->assertContains("RequirementsTest_a.js", $html);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCommentedOutScriptTagIsIgnored() {
|
|
|
|
$template = '<html><head></head><body><!--<script>alert("commented out");</script>-->'
|
|
|
|
. '<h1>more content</h1></body></html>';
|
|
|
|
$backend = new Requirements_Backend();
|
|
|
|
$backend->set_suffix_requirements(false);
|
|
|
|
$src = $this->getCurrentRelativePath() . '/RequirementsTest_a.js';
|
2015-07-31 10:42:35 +02:00
|
|
|
$urlSrc = Controller::join_links(Director::baseURL(), $src);
|
2014-08-30 20:32:28 +02:00
|
|
|
$backend->javascript($src);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
|
|
|
$this->assertEquals('<html><head></head><body><!--<script>alert("commented out");</script>-->'
|
2015-07-31 10:42:35 +02:00
|
|
|
. '<h1>more content</h1><script type="text/javascript" src="' . $urlSrc . '"></script></body></html>', $html);
|
2014-08-30 20:32:28 +02:00
|
|
|
}
|
|
|
|
|
2013-12-07 15:38:51 +01:00
|
|
|
public function testForceJsToBottom() {
|
|
|
|
$backend = new Requirements_Backend();
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
|
|
|
|
// Test matching with HTML5 <header> tags as well
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body<script></script></p></body></html>';
|
|
|
|
|
2013-11-25 20:49:35 +01:00
|
|
|
// The expected outputs
|
2014-03-30 08:37:54 +02:00
|
|
|
$JsInHead = "<html><head><script type=\"text/javascript\" src=\"http://www.mydomain.com/test.js\">"
|
|
|
|
. "</script>\n</head><body><header>My header</header><p>Body<script></script></p></body></html>";
|
|
|
|
$JsInBody = "<html><head></head><body><header>My header</header><p>Body<script type=\"text/javascript\""
|
|
|
|
. " src=\"http://www.mydomain.com/test.js\"></script><script></script></p></body></html>";
|
|
|
|
$JsAtEnd = "<html><head></head><body><header>My header</header><p>Body<script></script></p><script "
|
|
|
|
. "type=\"text/javascript\" src=\"http://www.mydomain.com/test.js\"></script></body></html>";
|
2013-11-25 20:49:35 +01:00
|
|
|
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-11-25 20:49:35 +01:00
|
|
|
// Test if the script is before the head tag, not before the body.
|
|
|
|
// Expected: $JsInHead
|
2013-12-07 15:38:51 +01:00
|
|
|
$backend->set_write_js_to_body(false);
|
|
|
|
$backend->set_force_js_to_bottom(false);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
2013-11-25 20:49:35 +01:00
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertNotEquals($JsAtEnd, $html);
|
|
|
|
$this->assertEquals($JsInHead, $html);
|
2013-12-07 15:38:51 +01:00
|
|
|
|
|
|
|
// Test if the script is before the first <script> tag, not before the body.
|
2013-11-25 20:49:35 +01:00
|
|
|
// Expected: $JsInBody
|
2013-12-07 15:38:51 +01:00
|
|
|
$backend->set_write_js_to_body(true);
|
|
|
|
$backend->set_force_js_to_bottom(false);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
2013-11-25 20:49:35 +01:00
|
|
|
$this->assertNotEquals($JsAtEnd, $html);
|
|
|
|
$this->assertEquals($JsInBody, $html);
|
2013-12-07 15:38:51 +01:00
|
|
|
|
|
|
|
// Test if the script is placed just before the closing bodytag, with write-to-body false.
|
2013-11-25 20:49:35 +01:00
|
|
|
// Expected: $JsAtEnd
|
2013-12-07 15:38:51 +01:00
|
|
|
$backend->set_write_js_to_body(false);
|
|
|
|
$backend->set_force_js_to_bottom(true);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
2013-11-25 20:49:35 +01:00
|
|
|
$this->assertNotEquals($JsInHead, $html);
|
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertEquals($JsAtEnd, $html);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-12-07 15:38:51 +01:00
|
|
|
// Test if the script is placed just before the closing bodytag, with write-to-body true.
|
2013-11-25 20:49:35 +01:00
|
|
|
// Expected: $JsAtEnd
|
2013-12-07 15:38:51 +01:00
|
|
|
$backend->set_write_js_to_body(true);
|
|
|
|
$backend->set_force_js_to_bottom(true);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
2013-11-25 20:49:35 +01:00
|
|
|
$this->assertNotEquals($JsInHead, $html);
|
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertEquals($JsAtEnd, $html);
|
2013-12-07 15:38:51 +01:00
|
|
|
}
|
|
|
|
|
2012-12-18 00:58:09 +01:00
|
|
|
public function testSuffix() {
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
|
|
|
$basePath = $this->getCurrentRelativePath();
|
|
|
|
|
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
|
|
|
|
$backend->javascript($basePath .'/RequirementsTest_a.js');
|
|
|
|
$backend->javascript($basePath .'/RequirementsTest_b.js?foo=bar&bla=blubb');
|
|
|
|
$backend->css($basePath .'/RequirementsTest_a.css');
|
|
|
|
$backend->css($basePath .'/RequirementsTest_b.css?foo=bar&bla=blubb');
|
|
|
|
|
|
|
|
$backend->set_suffix_requirements(true);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
2013-04-30 00:33:21 +02:00
|
|
|
$this->assertRegexp('/RequirementsTest_a\.js\?m=[\d]*"/', $html);
|
|
|
|
$this->assertRegexp('/RequirementsTest_b\.js\?m=[\d]*&foo=bar&bla=blubb"/', $html);
|
|
|
|
$this->assertRegexp('/RequirementsTest_a\.css\?m=[\d]*"/', $html);
|
|
|
|
$this->assertRegexp('/RequirementsTest_b\.css\?m=[\d]*&foo=bar&bla=blubb"/', $html);
|
2012-12-18 00:58:09 +01:00
|
|
|
|
|
|
|
$backend->set_suffix_requirements(false);
|
|
|
|
$html = $backend->includeInHTML(false, $template);
|
|
|
|
$this->assertNotContains('RequirementsTest_a.js=', $html);
|
2013-04-30 00:33:21 +02:00
|
|
|
$this->assertNotRegexp('/RequirementsTest_a\.js\?m=[\d]*"/', $html);
|
|
|
|
$this->assertNotRegexp('/RequirementsTest_b\.js\?m=[\d]*&foo=bar&bla=blubb"/', $html);
|
|
|
|
$this->assertNotRegexp('/RequirementsTest_a\.css\?m=[\d]*"/', $html);
|
|
|
|
$this->assertNotRegexp('/RequirementsTest_b\.css\?m=[\d]*&foo=bar&bla=blubb"/', $html);
|
2012-12-18 00:58:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-07 02:17:38 +02:00
|
|
|
/**
|
|
|
|
* Ensure that if a JS snippet somewhere in the page (via requirements) contains </head> that it doesn't
|
|
|
|
* get injected with requirements
|
|
|
|
*/
|
|
|
|
public function testHeadTagIsNotInjectedTwice() {
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
|
|
|
$basePath = $this->getCurrentRelativePath();
|
|
|
|
|
|
|
|
$backend = new Requirements_Backend;
|
|
|
|
// The offending snippet that contains a closing head tag
|
|
|
|
$backend->customScript('var myvar="<head></head>";');
|
|
|
|
// Insert a variety of random requirements
|
|
|
|
$backend->css($basePath .'/RequirementsTest_a.css');
|
|
|
|
$backend->javascript($basePath .'/RequirementsTest_a.js');
|
|
|
|
$backend->insertHeadTags('<link rel="alternate" type="application/atom+xml" title="test" href="/" />');
|
|
|
|
|
|
|
|
// Case A: JS forced to bottom
|
|
|
|
$backend->set_force_js_to_bottom(true);
|
|
|
|
$this->assertContains('var myvar="<head></head>";', $backend->includeInHTML(false, $template));
|
|
|
|
|
|
|
|
// Case B: JS written to body
|
|
|
|
$backend->set_force_js_to_bottom(false);
|
|
|
|
$backend->set_write_js_to_body(true);
|
|
|
|
$this->assertContains('var myvar="<head></head>";', $backend->includeInHTML(false, $template));
|
|
|
|
|
|
|
|
// Case C: Neither of the above
|
|
|
|
$backend->set_write_js_to_body(false);
|
|
|
|
$this->assertContains('var myvar="<head></head>";', $backend->includeInHTML(false, $template));
|
|
|
|
}
|
|
|
|
|
2012-11-23 14:55:19 +01:00
|
|
|
public function assertFileIncluded($backend, $type, $files) {
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = strtolower($type);
|
|
|
|
switch (strtolower($type)) {
|
|
|
|
case 'css':
|
2012-11-23 14:55:19 +01:00
|
|
|
$method = 'get_css';
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = 'CSS';
|
|
|
|
break;
|
|
|
|
case 'js':
|
|
|
|
case 'javascript':
|
|
|
|
case 'script':
|
2012-11-23 14:55:19 +01:00
|
|
|
$method = 'get_javascript';
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = 'JavaScript';
|
|
|
|
break;
|
|
|
|
}
|
2012-11-23 14:55:19 +01:00
|
|
|
$includedFiles = $backend->$method();
|
|
|
|
|
|
|
|
// Workaround for inconsistent return formats
|
|
|
|
if($method == 'get_javascript') {
|
|
|
|
$includedFiles = array_combine(array_values($includedFiles), array_values($includedFiles));
|
|
|
|
}
|
|
|
|
|
2010-10-13 03:15:47 +02:00
|
|
|
if(is_array($files)) {
|
|
|
|
$failedMatches = array();
|
|
|
|
foreach ($files as $file) {
|
2012-11-23 14:55:19 +01:00
|
|
|
if(!array_key_exists($file, $includedFiles)) {
|
2010-10-13 03:15:47 +02:00
|
|
|
$failedMatches[] = $file;
|
|
|
|
}
|
|
|
|
}
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
(count($failedMatches) == 0),
|
2010-10-13 03:15:47 +02:00
|
|
|
"Failed asserting the $type files '"
|
|
|
|
. implode("', '", $failedMatches)
|
|
|
|
. "' have exact matches in the required elements:\n'"
|
2012-11-23 14:55:19 +01:00
|
|
|
. implode("'\n'", array_keys($includedFiles)) . "'"
|
2010-10-13 03:15:47 +02:00
|
|
|
);
|
|
|
|
} else {
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
(array_key_exists($files, $includedFiles)),
|
|
|
|
"Failed asserting the $type file '$files' has an exact match in the required elements:\n'"
|
|
|
|
. implode("'\n'", array_keys($includedFiles)) . "'"
|
|
|
|
);
|
2010-10-13 03:15:47 +02:00
|
|
|
}
|
|
|
|
}
|
2012-12-08 12:20:20 +01:00
|
|
|
|
2012-11-23 14:55:19 +01:00
|
|
|
public function assertFileNotIncluded($backend, $type, $files) {
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = strtolower($type);
|
|
|
|
switch ($type) {
|
|
|
|
case 'css':
|
2012-11-23 14:55:19 +01:00
|
|
|
$method = 'get_css';
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = 'CSS';
|
|
|
|
break;
|
|
|
|
case 'js':
|
2012-11-23 14:55:19 +01:00
|
|
|
case 'get_javascript':
|
2010-10-13 03:15:47 +02:00
|
|
|
case 'script':
|
2012-11-23 14:55:19 +01:00
|
|
|
$method = 'get_javascript';
|
2010-10-13 03:15:47 +02:00
|
|
|
$type = 'JavaScript';
|
|
|
|
break;
|
|
|
|
}
|
2012-11-23 14:55:19 +01:00
|
|
|
$includedFiles = $backend->$method();
|
|
|
|
|
|
|
|
// Workaround for inconsistent return formats
|
|
|
|
if($method == 'get_javascript') {
|
|
|
|
$includedFiles = array_combine(array_values($includedFiles), array_values($includedFiles));
|
|
|
|
}
|
|
|
|
|
2010-10-13 03:15:47 +02:00
|
|
|
if(is_array($files)) {
|
|
|
|
$failedMatches = array();
|
|
|
|
foreach ($files as $file) {
|
2012-11-23 14:55:19 +01:00
|
|
|
if(array_key_exists($file, $includedFiles)) {
|
2010-10-13 03:15:47 +02:00
|
|
|
$failedMatches[] = $file;
|
|
|
|
}
|
|
|
|
}
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
(count($failedMatches) == 0),
|
2010-10-13 03:15:47 +02:00
|
|
|
"Failed asserting the $type files '"
|
|
|
|
. implode("', '", $failedMatches)
|
|
|
|
. "' do not have exact matches in the required elements:\n'"
|
2012-11-23 14:55:19 +01:00
|
|
|
. implode("'\n'", array_keys($includedFiles)) . "'"
|
2010-10-13 03:15:47 +02:00
|
|
|
);
|
|
|
|
} else {
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->assertFalse(
|
|
|
|
(array_key_exists($files, $includedFiles)),
|
|
|
|
"Failed asserting the $type file '$files' does not have an exact match in the required elements:"
|
|
|
|
. "\n'" . implode("'\n'", array_keys($includedFiles)) . "'"
|
|
|
|
);
|
2010-10-13 03:15:47 +02:00
|
|
|
}
|
|
|
|
}
|
2012-12-08 12:20:20 +01:00
|
|
|
}
|