alltube/tests/ViewFactoryTest.php

51 lines
1.2 KiB
PHP
Raw Normal View History

2017-04-26 00:59:30 +02:00
<?php
2017-04-26 00:59:30 +02:00
/**
* ViewFactoryTest class.
*/
namespace Alltube\Test;
2019-11-28 00:04:05 +01:00
use Alltube\LocaleManager;
2017-04-26 00:59:30 +02:00
use Alltube\ViewFactory;
use Slim\Container;
use Slim\Http\Environment;
use Slim\Http\Request;
2017-04-26 00:59:30 +02:00
use Slim\Views\Smarty;
2020-05-13 21:33:05 +02:00
use SmartyException;
2017-04-26 00:59:30 +02:00
/**
* Unit tests for the ViewFactory class.
*/
class ViewFactoryTest extends BaseTest
2017-04-26 00:59:30 +02:00
{
/**
* Test the create() function.
*
* @return void
2020-05-13 21:33:05 +02:00
* @throws SmartyException
2017-04-26 00:59:30 +02:00
*/
public function testCreate()
{
2019-11-28 00:04:05 +01:00
$container = new Container();
$container['locale'] = new LocaleManager();
2019-11-28 00:04:05 +01:00
$view = ViewFactory::create($container);
2017-04-26 00:59:30 +02:00
$this->assertInstanceOf(Smarty::class, $view);
}
/**
* Test the create() function with a X-Forwarded-Proto header.
*
* @return void
2020-05-13 21:33:05 +02:00
* @throws SmartyException
*/
public function testCreateWithXForwardedProto()
{
2019-11-28 00:04:05 +01:00
$container = new Container();
$container['locale'] = new LocaleManager();
$request = Request::createFromEnvironment(Environment::mock());
2019-11-28 00:04:05 +01:00
$view = ViewFactory::create($container, $request->withHeader('X-Forwarded-Proto', 'https'));
$this->assertInstanceOf(Smarty::class, $view);
}
2017-04-26 00:59:30 +02:00
}