1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 15:46:44 +02:00
Files
php-e107/e107_tests/tests/unit/e_menu_layoutTest.php
2021-04-13 15:03:36 -05:00

189 lines
3.9 KiB
PHP

<?php
/**
* e107 website system
*
* Copyright (C) 2008-2019 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e_menu_layoutTest extends \Codeception\Test\Unit
{
protected $menu;
protected function _before()
{
require_once(e_HANDLER."menumanager_class.php");
}
private function copydir( $src, $dst )
{
if(!is_dir($src) || is_dir($dst))
{
echo 'Skipping directory creation. '.$dst.' already exists.'."\n";
return false;
}
mkdir($dst);
$DS = DIRECTORY_SEPARATOR ;
$files = scandir($src);
unset($files[0], $files[1]);
foreach($files as $file)
{
if($file != '.' && $file != '..')
{
if(is_dir($src . $DS . $file))
{
$this->copydir($src . $DS . $file, $dst . $DS . $file);
}
else
{
copy($src . $DS . $file, $dst . $DS . $file);
}
}
}
// closedir($dir);
}
/*
public function testMenuSelector()
{
}
*/
public function testGetLayouts()
{
//FIXME: https://github.com/e107inc/e107/issues/4030
$src1 = codecept_data_dir()."testcore";
$dest1 = e_THEME."testcore";
$this->copydir($src1,$dest1);
$src2 = codecept_data_dir()."testkubrick";
$dest2 = e_THEME."testkubrick";
$this->copydir($src2,$dest2);
$src3 = codecept_data_dir()."basic-light";
$dest3 = e_THEME."basic-light";
$this->copydir($src3,$dest3);
$tests = array(
'bootstrap3' => array (
'templates' => array (
0 => 'jumbotron_full',
1 => 'jumbotron_home',
2 => 'jumbotron_sidebar_right',
3 => 'modern_business_home',
),
'menus' => array (
'jumbotron_home' => array ('1','2','3','4','5','6','7','8','9','10','11','12','13','14','100','101','102','103','104','105','106','107',),
'modern_business_home' => array ('10','100','101','102','103','104','105','106','107',),
'jumbotron_full' => array ('1','100','101','102','103','104','105','106','107',),
'jumbotron_sidebar_right' => array ('1','2','3','4','5','6','7','8','100','101','102','103','104','105','106','107',),
),
),
'testkubrick' => array (
'templates' => array(
'legacyCustom',
'legacyDefault'
),
'menus' => array(
'legacyCustom' => array(),
'legacyDefault' => array('1', '2')
),
),
'testcore' => array (
'templates' => array (
'HOME',
'FULL',
'legacyDefault'
),
'menus' => array(
'HOME' => array('2', '3', '4'),
'FULL' => array(),
'legacyDefault'=> array('1', '2', '3', '4','5','6')
),
),
'basic-light' => array(
'templates' => array(
'default' ,
'default-home',
'simple-page',
'wide-page'
),
'menus' => array(
'default' => array('1', '2', '3', '4'),
'default-home' => array('1', '2', '3', '4'),
'simple-page' => array('1', '2', '3', '4'),
'wide-page' => array(),
),
),
);
foreach($tests as $theme=>$vars)
{
$result = e_mm_layout::getLayouts($theme);
$templates = array_keys($result['templates']);
$this->assertSame($vars['templates'], $templates);
foreach($vars['menus'] as $key=>$arr)
{
$this->assertSame($arr, $result['menus'][$key], $key." is different");
}
// $this->assertEquals($templates, $vars['templates']);
/*
foreach($vars['templates'] as $key=>$length)
{
$content = str_replace(array("\r", "\n"),'',$result['templates'][$key]);
$expectedLength = $length;
$actualLength = strlen($content);
$this->assertEquals($expectedLength, $actualLength, $key. " is different");
}
foreach($vars['menus'] as $key=>$arr)
{
$this->assertEquals($arr, $result['menus'][$key], $key." is different");
}*/
}
}
}