mirror of
https://github.com/e107inc/e107.git
synced 2025-10-13 14:04:51 +02:00
146 lines
3.5 KiB
PHP
146 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Wiz
|
|
* Date: 1/24/2019
|
|
* Time: 9:21 AM
|
|
*/
|
|
|
|
|
|
class e_themeTest extends \Codeception\Test\Unit
|
|
{
|
|
|
|
/** @var e_theme */
|
|
private $tm;
|
|
|
|
protected function _before()
|
|
{
|
|
// require_once(e_HANDLER."e_marketplace.php");
|
|
|
|
try
|
|
{
|
|
$this->tm = $this->make('e_theme');
|
|
$this->tm->__construct();
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
$this->assertTrue(false, "Couldn't load e_theme object");
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
public function testCssAttribute()
|
|
{
|
|
|
|
}
|
|
|
|
public function testUpgradeThemeCode()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetThemeList()
|
|
{
|
|
|
|
}
|
|
|
|
public function testLoadLibrary()
|
|
{
|
|
|
|
}
|
|
|
|
public function testParse_theme_php()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetThemeInfo()
|
|
{
|
|
|
|
}*/
|
|
|
|
public function testGetThemeLayout()
|
|
{
|
|
|
|
$pref = array (
|
|
'jumbotron_home' =>
|
|
array (
|
|
0 => 'FRONTPAGE',
|
|
1 => 'page.php?3!'
|
|
),
|
|
'jumbotron_full' =>
|
|
array (
|
|
0 => 'forum',
|
|
1 => 'user.php',
|
|
2 => '/user',
|
|
),
|
|
'jumbotron_sidebar_right' =>
|
|
array (
|
|
0 => '/news',
|
|
1 => '/usersettings.php'
|
|
),
|
|
'other_layout' =>
|
|
array(
|
|
0 => 'myplugin.php',
|
|
1 => 'forum/index.php'
|
|
),
|
|
);
|
|
|
|
$defaultLayout = "jumbotron_sidebar_right";
|
|
|
|
|
|
$tests = array(
|
|
0 => array('url' => SITEURL."index.php", 'expected' => 'jumbotron_home'),
|
|
1 => array('url' => SITEURL."index.php?", 'expected' => 'jumbotron_home'),
|
|
2 => array('url' => SITEURL."index.php?fbclid=asdlkjasdlakjsdasd", 'expected' => 'jumbotron_home'),
|
|
3 => array('url' => SITEURL."index.php?utm_source=asdd&utm_medium=asdsd", 'expected' => 'jumbotron_home'),
|
|
4 => array('url' => SITEURL."news", 'expected' => 'jumbotron_sidebar_right'),
|
|
5 => array('url' => SITEURL."forum", 'script' => "index.php", 'expected' => 'jumbotron_full'),
|
|
6 => array('url' => SITEURL."other/page", 'script' => null, 'expected' => 'jumbotron_sidebar_right'),
|
|
7 => array('url' => SITEURL."news.php?5.3", 'script' => null, 'expected' => 'jumbotron_sidebar_right'),
|
|
8 => array('url' => SITEURL."usersettings.php", 'script' => null, 'expected' => 'jumbotron_sidebar_right'),
|
|
9 => array('url' => SITEURL."user.php", 'script' => null, 'expected' => 'jumbotron_full'),
|
|
10 => array('url' => SITEURL."page.php", 'script' => null, 'expected' => 'jumbotron_sidebar_right'),
|
|
11 => array('url' => SITEURL."page.php?3", 'script' => null, 'expected' => 'jumbotron_home'),
|
|
12 => array('url' => SITEURL."somepage/", 'script' => "user.php", 'expected' => 'jumbotron_full'),
|
|
13 => array('url' => SITEURL."plugin/", 'script' => "myplugin.php", 'expected' => 'other_layout'),
|
|
14 => array('url' => SITEURL."forum/index.php", 'script' => "index.php", 'expected' => 'other_layout'),
|
|
);
|
|
|
|
foreach($tests as $item=>$var)
|
|
{
|
|
|
|
$result = $this->tm->getThemeLayout($pref, $defaultLayout, $var['url'], $var['script']);
|
|
$this->assertEquals($var['expected'],$result, "Wrong theme layout returned for item [".$item."] ".$var['url']);
|
|
// echo $var['url']."\t\t\t".$result."\n\n";
|
|
}
|
|
|
|
|
|
}
|
|
/*
|
|
public function testClearCache()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGet()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetList()
|
|
{
|
|
|
|
}
|
|
|
|
public function testParse_theme_xml()
|
|
{
|
|
|
|
}
|
|
*/
|
|
|
|
|
|
|
|
}
|