From 27f5e20506550b29e868fcff0893e9e37ed8f0d5 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 6 Apr 2019 12:12:14 -0700 Subject: [PATCH] Theme layout test improved and passing. --- tests/unit/e_themeTest.php | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tests/unit/e_themeTest.php b/tests/unit/e_themeTest.php index 24653470a..e0d6edcc0 100644 --- a/tests/unit/e_themeTest.php +++ b/tests/unit/e_themeTest.php @@ -107,22 +107,22 @@ 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' => 'page.php', 'expected' => 'other_layout'), - 7 => array('url' => SITEURL."news.php?5.3", 'script' => 'news.php', 'expected' => 'jumbotron_sidebar_right'), - 8 => array('url' => SITEURL."usersettings.php", 'script' => 'usersettings.php', 'expected' => 'jumbotron_sidebar_right'), - 9 => array('url' => SITEURL."user.php", 'script' => 'user.php', 'expected' => 'jumbotron_full'), - 10 => array('url' => SITEURL."page.php", 'script' => 'page.php', 'expected' => 'other_layout'), - 11 => array('url' => SITEURL."page.php?3", 'script' => 'page.php', 'expected' => 'jumbotron_home'), - 12 => array('url' => SITEURL."somepage/", 'script' => "script.php", 'expected' => 'other_layout'), - 13 => array('url' => SITEURL."plugin/", 'script' => "myplugin.php", 'expected' => 'other_layout'), - 14 => array('url' => SITEURL."forum/index.php", 'script' => "index.php", 'expected' => 'other_layout'), - 15 => array('url' => SITEURL."my-chapter/my-title", 'script' => "page.php", 'expected' => 'other_layout'), - 16 => array('url' => SITEURL."my-sef-url", 'script' => 'index.php', 'expected' => 'jumbotron_home'), - 17 => array('url' => SITEURL."/user/settings?id=1", 'script' => 'usersettings.php', 'expected' => 'other_layout'), - 18 => array('url' => SITEURL."/user/Tijn", 'script' => 'user.php', 'expected' => 'jumbotron_sidebar_right'), - 19 => array('url' => SITEURL."user.php?id.1", 'script' => 'user.php', 'expected' => 'jumbotron_sidebar_right'), - 20 => array('url' => SITEURL."pluginpage/", 'script' => 'e107_plugins/myplugin/index.php', 'expected' => 'script_match'), + 5 => array('url' => SITEURL."forum", 'script' => "/forum/index.php", 'expected' => 'jumbotron_full'), + 6 => array('url' => SITEURL."other/page", 'script' => '/page.php', 'expected' => 'other_layout'), + 7 => array('url' => SITEURL."news.php?5.3", 'script' => '/news.php', 'expected' => 'jumbotron_sidebar_right'), + 8 => array('url' => SITEURL."usersettings.php", 'script' => '/usersettings.php', 'expected' => 'jumbotron_sidebar_right'), + 9 => array('url' => SITEURL."user.php", 'script' => '/user.php', 'expected' => 'jumbotron_full'), + 10 => array('url' => SITEURL."page.php", 'script' => '/page.php', 'expected' => 'other_layout'), + 11 => array('url' => SITEURL."page.php?3", 'script' => '/page.php', 'expected' => 'jumbotron_home'), + 12 => array('url' => SITEURL."somepage/", 'script' => "/script.php", 'expected' => 'other_layout'), + 13 => array('url' => SITEURL."plugin/", 'script' => "/myplugin.php", 'expected' => 'other_layout'), + 14 => array('url' => SITEURL."forum/index.php", 'script' => "/index.php", 'expected' => 'other_layout'), + 15 => array('url' => SITEURL."my-chapter/my-title", 'script' => "/page.php", 'expected' => 'other_layout'), + 16 => array('url' => SITEURL."my-sef-url", 'script' => '/index.php', 'expected' => 'jumbotron_home'), + 17 => array('url' => SITEURL."/user/settings?id=1", 'script' => '/usersettings.php', 'expected' => 'other_layout'), + 18 => array('url' => SITEURL."/user/Tijn", 'script' => '/user.php', 'expected' => 'jumbotron_sidebar_right'), + 19 => array('url' => SITEURL."user.php?id.1", 'script' => '/user.php', 'expected' => 'jumbotron_sidebar_right'), + 20 => array('url' => SITEURL."pluginpage/", 'script' => '/myplugin/index.php', 'expected' => 'script_match'), );