2010-04-13 20:04:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-10-10 21:18:48 +00:00
|
|
|
* MediaViewTest file
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.View
|
2010-04-13 20:04:13 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
2010-10-03 16:27:27 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2010-04-13 20:04:13 +00:00
|
|
|
*/
|
2010-12-10 06:23:27 +00:00
|
|
|
|
|
|
|
App::uses('Controller', 'Controller');
|
|
|
|
App::uses('MediaView', 'View');
|
|
|
|
App::uses('CakeResponse', 'Network');
|
2010-04-13 20:04:13 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-04 04:00:02 +00:00
|
|
|
* MediaViewTest class
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.View
|
2010-04-13 20:04:13 +00:00
|
|
|
*/
|
|
|
|
class MediaViewTest extends CakeTestCase {
|
|
|
|
|
|
|
|
/**
|
2010-09-26 01:36:49 +00:00
|
|
|
* setUp method
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function setUp() {
|
2010-09-26 01:36:49 +00:00
|
|
|
parent::setUp();
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView = new MediaView();
|
|
|
|
$this->MediaView->response = $this->getMock('CakeResponse', array(
|
|
|
|
'_isActive',
|
|
|
|
'_clearBuffer',
|
|
|
|
'_flushBuffer',
|
2012-11-24 20:44:52 +00:00
|
|
|
'send',
|
|
|
|
'cache',
|
2012-07-10 20:03:40 +00:00
|
|
|
'type',
|
2012-11-24 20:44:52 +00:00
|
|
|
'download',
|
|
|
|
'statusCode'
|
2012-07-10 20:03:40 +00:00
|
|
|
));
|
2010-04-13 20:04:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-11 14:50:54 +00:00
|
|
|
* tearDown method
|
2010-04-13 20:04:13 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function tearDown() {
|
2010-09-26 01:36:49 +00:00
|
|
|
parent::tearDown();
|
2010-04-13 20:04:13 +00:00
|
|
|
unset($this->MediaView);
|
2010-10-04 04:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tests that rendering a file that does not exists throws an exception
|
|
|
|
*
|
2010-10-04 04:00:47 +00:00
|
|
|
* @expectedException NotFoundException
|
2010-10-04 04:00:02 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testRenderNotFound() {
|
|
|
|
$this->MediaView->viewVars = array(
|
|
|
|
'path' => '/some/missing/folder',
|
|
|
|
'id' => 'file.jpg'
|
|
|
|
);
|
|
|
|
$this->MediaView->render();
|
2010-04-13 20:04:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testRender method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testRender() {
|
2010-10-04 04:00:02 +00:00
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Vendor' . DS . 'css' . DS,
|
2012-07-10 20:03:40 +00:00
|
|
|
'id' => 'test_asset.css'
|
2010-10-04 04:00:02 +00:00
|
|
|
);
|
2012-07-10 20:03:40 +00:00
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
2010-10-04 04:00:02 +00:00
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2011-02-27 01:01:15 +00:00
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
2010-10-04 04:00:02 +00:00
|
|
|
->method('type')
|
|
|
|
->with('css')
|
|
|
|
->will($this->returnArgument(0));
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->once())->method('send');
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
2012-11-24 20:44:52 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_clearBuffer');
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_flushBuffer');
|
2010-10-04 04:00:02 +00:00
|
|
|
|
2010-04-13 20:04:13 +00:00
|
|
|
ob_start();
|
|
|
|
$result = $this->MediaView->render();
|
|
|
|
$output = ob_get_clean();
|
2012-10-09 16:35:21 +00:00
|
|
|
$this->assertEquals("/* this is the test asset css file */\n", $output);
|
2010-04-13 20:04:13 +00:00
|
|
|
$this->assertTrue($result !== false);
|
2012-11-22 03:26:37 +00:00
|
|
|
|
|
|
|
$headers = $this->MediaView->response->header();
|
|
|
|
$this->assertEquals(31, $headers['Content-Length']);
|
|
|
|
$this->assertEquals(0, $headers['Expires']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'private, must-revalidate, post-check=0, pre-check=0',
|
|
|
|
$headers['Cache-Control']
|
|
|
|
);
|
|
|
|
$this->assertEquals('no-cache', $headers['Pragma']);
|
|
|
|
$this->assertContains(gmdate('D, d M Y H:i', time()), $headers['Date']);
|
2010-04-13 20:04:13 +00:00
|
|
|
}
|
|
|
|
|
2011-02-27 01:01:15 +00:00
|
|
|
/**
|
2011-04-25 03:31:44 +00:00
|
|
|
* testRenderWithUnknownFileTypeGeneric method
|
2011-02-27 01:01:15 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testRenderWithUnknownFileTypeGeneric() {
|
2011-04-27 04:26:42 +00:00
|
|
|
$currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
|
2011-04-25 03:31:44 +00:00
|
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Some generic browser';
|
2011-02-27 01:01:15 +00:00
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS,
|
2012-07-10 20:03:40 +00:00
|
|
|
'id' => 'no_section.ini'
|
2011-02-27 01:01:15 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
|
|
|
->method('type')
|
|
|
|
->with('ini')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->once())
|
|
|
|
->method('download')
|
|
|
|
->with('no_section.ini');
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_clearBuffer');
|
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$this->MediaView->response->expects($this->once())->method('_flushBuffer');
|
2011-02-27 01:01:15 +00:00
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$result = $this->MediaView->render();
|
|
|
|
$output = ob_get_clean();
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
|
2011-02-27 01:01:15 +00:00
|
|
|
$this->assertTrue($result !== false);
|
2011-04-27 04:26:42 +00:00
|
|
|
if ($currentUserAgent !== null) {
|
|
|
|
$_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
|
|
|
|
}
|
2012-11-22 03:26:37 +00:00
|
|
|
|
|
|
|
$headers = $this->MediaView->response->header();
|
|
|
|
$this->assertEquals(35, $headers['Content-Length']);
|
|
|
|
$this->assertEquals(0, $headers['Expires']);
|
|
|
|
$this->assertEquals('bytes', $headers['Accept-Ranges']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'private, must-revalidate, post-check=0, pre-check=0',
|
|
|
|
$headers['Cache-Control']
|
|
|
|
);
|
|
|
|
$this->assertEquals('no-cache', $headers['Pragma']);
|
|
|
|
$this->assertContains(gmdate('D, d M Y H:i', time()), $headers['Date']);
|
2011-04-25 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testRenderWithUnknownFileTypeOpera method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testRenderWithUnknownFileTypeOpera() {
|
2011-04-27 04:26:42 +00:00
|
|
|
$currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
|
2011-04-25 03:31:44 +00:00
|
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Opera/9.80 (Windows NT 6.0; U; en) Presto/2.8.99 Version/11.10';
|
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS,
|
2011-04-25 03:31:44 +00:00
|
|
|
'id' => 'no_section.ini',
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->at(0))
|
2012-07-10 20:03:40 +00:00
|
|
|
->method('type')
|
|
|
|
->with('ini')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2011-04-25 03:31:44 +00:00
|
|
|
$this->MediaView->response->expects($this->at(1))
|
|
|
|
->method('type')
|
|
|
|
->with('application/octetstream')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->at(3))
|
2011-04-25 03:31:44 +00:00
|
|
|
->method('download')
|
|
|
|
->with('no_section.ini');
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->once())->method('send');
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_clearBuffer');
|
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$this->MediaView->response->expects($this->once())->method('_flushBuffer');
|
2011-04-25 03:31:44 +00:00
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$result = $this->MediaView->render();
|
|
|
|
$output = ob_get_clean();
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
|
2011-04-25 03:31:44 +00:00
|
|
|
$this->assertTrue($result !== false);
|
2011-04-27 04:26:42 +00:00
|
|
|
if ($currentUserAgent !== null) {
|
|
|
|
$_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
|
|
|
|
}
|
2012-11-22 03:26:37 +00:00
|
|
|
|
|
|
|
$headers = $this->MediaView->response->header();
|
|
|
|
$this->assertEquals(35, $headers['Content-Length']);
|
|
|
|
$this->assertEquals(0, $headers['Expires']);
|
|
|
|
$this->assertEquals('bytes', $headers['Accept-Ranges']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'private, must-revalidate, post-check=0, pre-check=0',
|
|
|
|
$headers['Cache-Control']
|
|
|
|
);
|
|
|
|
$this->assertEquals('no-cache', $headers['Pragma']);
|
|
|
|
$this->assertContains(gmdate('D, d M Y H:i', time()), $headers['Date']);
|
2011-04-25 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testRenderWithUnknownFileTypeIE method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testRenderWithUnknownFileTypeIE() {
|
2011-04-27 04:26:42 +00:00
|
|
|
$currentUserAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null;
|
2011-04-25 03:31:44 +00:00
|
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)';
|
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS,
|
2011-04-25 03:31:44 +00:00
|
|
|
'id' => 'no_section.ini',
|
2012-02-07 19:38:04 +00:00
|
|
|
'name' => 'config'
|
2011-04-25 03:31:44 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->at(0))
|
2012-07-10 20:03:40 +00:00
|
|
|
->method('type')
|
|
|
|
->with('ini')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2011-04-25 03:31:44 +00:00
|
|
|
$this->MediaView->response->expects($this->at(1))
|
|
|
|
->method('type')
|
|
|
|
->with('application/force-download')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->at(3))
|
2011-04-25 03:31:44 +00:00
|
|
|
->method('download')
|
2012-02-07 19:38:04 +00:00
|
|
|
->with('config.ini');
|
2011-04-25 03:31:44 +00:00
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->once())->method('send');
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_clearBuffer');
|
|
|
|
$this->MediaView->response->expects($this->exactly(1))
|
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$this->MediaView->response->expects($this->once())->method('_flushBuffer');
|
2011-04-25 03:31:44 +00:00
|
|
|
|
|
|
|
ob_start();
|
|
|
|
$result = $this->MediaView->render();
|
|
|
|
$output = ob_get_clean();
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals("some_key = some_value\nbool_key = 1\n", $output);
|
2011-04-25 03:31:44 +00:00
|
|
|
$this->assertTrue($result !== false);
|
2011-04-27 04:26:42 +00:00
|
|
|
if ($currentUserAgent !== null) {
|
|
|
|
$_SERVER['HTTP_USER_AGENT'] = $currentUserAgent;
|
|
|
|
}
|
2012-11-22 03:26:37 +00:00
|
|
|
|
|
|
|
$headers = $this->MediaView->response->header();
|
|
|
|
$this->assertEquals(35, $headers['Content-Length']);
|
|
|
|
$this->assertEquals(0, $headers['Expires']);
|
|
|
|
$this->assertEquals('bytes', $headers['Accept-Ranges']);
|
|
|
|
$this->assertEquals(
|
|
|
|
'private, must-revalidate, post-check=0, pre-check=0',
|
|
|
|
$headers['Cache-Control']
|
|
|
|
);
|
|
|
|
$this->assertEquals('no-cache', $headers['Pragma']);
|
|
|
|
$this->assertContains(gmdate('D, d M Y H:i', time()), $headers['Date']);
|
2011-02-27 01:01:15 +00:00
|
|
|
}
|
|
|
|
|
2010-10-04 04:00:47 +00:00
|
|
|
/**
|
|
|
|
* testConnectionAbortedOnBuffering method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testConnectionAbortedOnBuffering() {
|
2010-10-04 04:00:47 +00:00
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Vendor' . DS . 'css' . DS,
|
2012-07-10 20:03:40 +00:00
|
|
|
'id' => 'test_asset.css'
|
2010-10-04 04:00:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->any())
|
|
|
|
->method('type')
|
|
|
|
->with('css')
|
|
|
|
->will($this->returnArgument(0));
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->at(1))
|
2010-10-04 04:00:47 +00:00
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->once())->method('_clearBuffer');
|
|
|
|
$this->MediaView->response->expects($this->never())->method('_flushBuffer');
|
2010-10-04 04:00:47 +00:00
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->render();
|
2010-04-13 20:04:13 +00:00
|
|
|
}
|
2011-06-23 19:48:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test downloading files with UPPERCASE extensions.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-02-07 19:38:04 +00:00
|
|
|
public function testRenderUpperExtension() {
|
2011-06-23 19:48:06 +00:00
|
|
|
$this->MediaView->viewVars = array(
|
2012-03-16 02:50:05 +00:00
|
|
|
'path' => CAKE . 'Test' . DS . 'test_app' . DS . 'Vendor' . DS . 'img' . DS,
|
2012-07-10 20:03:40 +00:00
|
|
|
'id' => 'test_2.JPG'
|
2012-02-07 19:38:04 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->MediaView->response->expects($this->any())
|
|
|
|
->method('type')
|
|
|
|
->with('jpg')
|
|
|
|
->will($this->returnArgument(0));
|
|
|
|
|
2012-07-10 20:03:40 +00:00
|
|
|
$this->MediaView->response->expects($this->at(0))
|
2012-02-07 19:38:04 +00:00
|
|
|
->method('_isActive')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$this->MediaView->render();
|
|
|
|
}
|
|
|
|
|
2010-04-13 20:04:13 +00:00
|
|
|
}
|