2017-04-25 22:59:30 +00:00
|
|
|
<?php
|
2019-10-03 19:24:12 +00:00
|
|
|
|
2017-04-25 22:59:30 +00:00
|
|
|
/**
|
|
|
|
* ViewFactoryTest class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Alltube\Test;
|
|
|
|
|
2020-10-20 21:29:50 +00:00
|
|
|
use Alltube\Factory\ViewFactory;
|
2017-04-25 22:59:30 +00:00
|
|
|
use Slim\Views\Smarty;
|
2020-05-13 19:33:05 +00:00
|
|
|
use SmartyException;
|
2017-04-25 22:59:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for the ViewFactory class.
|
|
|
|
*/
|
2020-10-22 20:39:09 +00:00
|
|
|
class ViewFactoryTest extends ContainerTest
|
2017-04-25 22:59:30 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Test the create() function.
|
|
|
|
*
|
|
|
|
* @return void
|
2020-05-13 19:33:05 +00:00
|
|
|
* @throws SmartyException
|
2017-04-25 22:59:30 +00:00
|
|
|
*/
|
|
|
|
public function testCreate()
|
|
|
|
{
|
2020-10-22 20:39:09 +00:00
|
|
|
$view = ViewFactory::create($this->container);
|
2017-04-25 22:59:30 +00:00
|
|
|
$this->assertInstanceOf(Smarty::class, $view);
|
|
|
|
}
|
2017-05-30 22:48:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the create() function with a X-Forwarded-Proto header.
|
|
|
|
*
|
|
|
|
* @return void
|
2020-05-13 19:33:05 +00:00
|
|
|
* @throws SmartyException
|
2017-05-30 22:48:50 +00:00
|
|
|
*/
|
|
|
|
public function testCreateWithXForwardedProto()
|
|
|
|
{
|
2020-10-22 20:39:09 +00:00
|
|
|
$view = ViewFactory::create(
|
|
|
|
$this->container,
|
|
|
|
$this->container->get('request')->withHeader('X-Forwarded-Proto', 'https')
|
|
|
|
);
|
2017-05-30 22:48:50 +00:00
|
|
|
$this->assertInstanceOf(Smarty::class, $view);
|
|
|
|
}
|
2017-04-25 22:59:30 +00:00
|
|
|
}
|