2012-03-31 23:51:02 +02:00
|
|
|
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
2013-07-27 23:56:05 +02:00
|
|
|
* Tests the theme config class.
|
2012-03-31 23:51:02 +02:00
|
|
|
*
|
|
|
|
* @package core
|
|
|
|
* @category phpunit
|
2013-07-27 23:56:05 +02:00
|
|
|
* @copyright 2012 Sam Hemelryk
|
2012-03-31 23:51:02 +02:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later (5)
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->libdir . '/outputlib.php');
|
|
|
|
|
2012-09-27 10:58:42 +12:00
|
|
|
/**
|
|
|
|
* Tests the theme config class.
|
|
|
|
*
|
|
|
|
* @copyright 2012 Sam Hemelryk
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2021-09-29 09:05:58 +08:00
|
|
|
* @covers \theme_config
|
|
|
|
* @coversDefaultClass \theme_config
|
2012-09-27 10:58:42 +12:00
|
|
|
*/
|
2021-09-29 09:05:58 +08:00
|
|
|
class theme_config_test extends advanced_testcase {
|
2012-09-27 10:58:42 +12:00
|
|
|
/**
|
|
|
|
* This function will test directives used to serve SVG images to make sure
|
|
|
|
* this are making the right decisions.
|
|
|
|
*/
|
|
|
|
public function test_svg_image_use() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
|
|
|
// The two required tests.
|
|
|
|
$this->assertTrue(file_exists($CFG->dirroot.'/pix/i/test.svg'));
|
|
|
|
$this->assertTrue(file_exists($CFG->dirroot.'/pix/i/test.png'));
|
|
|
|
|
|
|
|
$theme = theme_config::load(theme_config::DEFAULT_THEME);
|
|
|
|
|
|
|
|
// First up test the forced setting.
|
|
|
|
$imagefile = $theme->resolve_image_location('i/test', 'moodle', true);
|
2013-07-27 23:56:05 +02:00
|
|
|
$this->assertSame('test.svg', basename($imagefile));
|
2012-09-27 10:58:42 +12:00
|
|
|
$imagefile = $theme->resolve_image_location('i/test', 'moodle', false);
|
2013-07-27 23:56:05 +02:00
|
|
|
$this->assertSame('test.png', basename($imagefile));
|
2012-09-27 10:58:42 +12:00
|
|
|
|
|
|
|
// Finally test a few user agents.
|
2023-08-18 16:20:31 +02:00
|
|
|
$useragents = [
|
2013-11-27 23:33:15 +01:00
|
|
|
'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C)' => true,
|
2012-09-27 10:58:42 +12:00
|
|
|
// Chrome 11 on Windows.
|
2023-08-18 16:20:31 +02:00
|
|
|
'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US) AppleWebKit/534.17 (KHTML, like Gecko) ' .
|
|
|
|
'Chrome/11.0.652.0 Safari/534.17' => true,
|
2012-09-27 10:58:42 +12:00
|
|
|
// Chrome 22 on Windows.
|
|
|
|
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1' => true,
|
|
|
|
// Chrome 21 on Ubuntu 12.04.
|
|
|
|
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1' => true,
|
|
|
|
// Firefox 4 on Windows.
|
|
|
|
'Mozilla/5.0 (Windows NT 6.1; rv:1.9) Gecko/20100101 Firefox/4.0' => true,
|
|
|
|
// Firefox 15 on Windows.
|
|
|
|
'Mozilla/5.0 (Windows NT 6.1; rv:15.0) Gecko/20120716 Firefox/15.0.1' => true,
|
|
|
|
// Firefox 15 on Ubuntu.
|
|
|
|
'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1' => true,
|
2023-08-18 16:20:31 +02:00
|
|
|
// Opera 15 on MacOS.
|
|
|
|
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 ' .
|
|
|
|
'Safari/537.36 OPR/15.0.1147.153' => true,
|
2013-07-27 23:56:05 +02:00
|
|
|
// Android browser pre 1.0.
|
2012-09-27 10:58:42 +12:00
|
|
|
'Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ (KHTML, like Gecko) Safari/419.3' => false,
|
2013-07-27 23:56:05 +02:00
|
|
|
// Android browser 2.3 (HTC).
|
2023-08-18 16:20:31 +02:00
|
|
|
'Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; HTC Vision Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) ' .
|
|
|
|
'Version/4.0 Mobile Safari/533.1' => false,
|
2013-07-27 23:56:05 +02:00
|
|
|
// Android browser 3.0 (Motorola).
|
2023-08-18 16:20:31 +02:00
|
|
|
'Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 ' .
|
|
|
|
'Safari/534.13' => true,
|
2013-11-27 23:33:15 +01:00
|
|
|
// Android browser 4.3 (Samsung GT-9505).
|
2023-08-18 16:20:31 +02:00
|
|
|
'Mozilla/5.0 (Linux; Android 4.3; it-it; SAMSUNG GT-I9505/I9505XXUEMJ7 Build/JSS15J) AppleWebKit/537.36 '.
|
|
|
|
'(KHTML, like Gecko) Version/1.5 Chrome/28.0.1500.94 Mobile Safari/537.36' => true,
|
|
|
|
];
|
2012-09-27 10:58:42 +12:00
|
|
|
foreach ($useragents as $agent => $expected) {
|
2013-07-30 17:00:54 +12:00
|
|
|
core_useragent::instance(true, $agent);
|
2012-09-27 10:58:42 +12:00
|
|
|
// We need to clone the theme as usesvg property is calculated only once.
|
|
|
|
$testtheme = clone $theme;
|
|
|
|
$imagefile = $testtheme->resolve_image_location('i/test', 'moodle', null);
|
2013-07-27 23:56:05 +02:00
|
|
|
if ($expected) {
|
|
|
|
$this->assertSame('test.svg', basename($imagefile), 'Incorrect image returned for user agent `'.$agent.'`');
|
|
|
|
} else {
|
|
|
|
$this->assertSame('test.png', basename($imagefile), 'Incorrect image returned for user agent `'.$agent.'`');
|
|
|
|
}
|
2012-09-27 10:58:42 +12:00
|
|
|
}
|
|
|
|
}
|
2014-06-05 15:47:30 +01:00
|
|
|
|
2017-11-30 05:49:45 +00:00
|
|
|
/**
|
|
|
|
* Confirm that the editor_css_url contains the theme revision and the
|
|
|
|
* theme subrevision if not in theme designer mode.
|
|
|
|
*/
|
|
|
|
public function test_editor_css_url_has_revision_and_subrevision() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$theme = theme_config::load(theme_config::DEFAULT_THEME);
|
|
|
|
$themename = $theme->name;
|
|
|
|
$themerevision = 1234;
|
|
|
|
$themesubrevision = 5678;
|
|
|
|
|
|
|
|
$CFG->themedesignermode = false;
|
|
|
|
$CFG->themerev = $themerevision;
|
|
|
|
|
|
|
|
theme_set_sub_revision_for_theme($themename, $themesubrevision);
|
|
|
|
$url = $theme->editor_css_url();
|
|
|
|
|
2021-02-19 16:51:19 +01:00
|
|
|
$this->assertMatchesRegularExpression("/{$themerevision}_{$themesubrevision}/", $url->out(false));
|
2017-11-30 05:49:45 +00:00
|
|
|
}
|
2020-02-13 17:20:32 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirm that editor_scss_to_css is correctly compiling for themes with no parent.
|
|
|
|
*/
|
|
|
|
public function test_editor_scss_to_css_root_theme() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$theme = theme_config::load('boost');
|
|
|
|
$editorscss = $CFG->dirroot.'/theme/boost/scss/editor.scss';
|
|
|
|
|
|
|
|
$this->assertTrue(file_exists($editorscss));
|
|
|
|
$compiler = new core_scss();
|
|
|
|
$compiler->set_file($editorscss);
|
|
|
|
$cssexpected = $compiler->to_css();
|
|
|
|
$cssactual = $theme->editor_scss_to_css();
|
|
|
|
|
|
|
|
$this->assertEquals($cssexpected, $cssactual);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirm that editor_scss_to_css is compiling for a child theme not overriding its parent's editor SCSS.
|
|
|
|
*/
|
|
|
|
public function test_editor_scss_to_css_child_theme() {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$theme = theme_config::load('classic');
|
|
|
|
$editorscss = $CFG->dirroot.'/theme/boost/scss/editor.scss';
|
|
|
|
|
|
|
|
$this->assertTrue(file_exists($editorscss));
|
|
|
|
$compiler = new core_scss();
|
|
|
|
$compiler->set_file($editorscss);
|
|
|
|
$cssexpected = $compiler->to_css();
|
|
|
|
$cssactual = $theme->editor_scss_to_css();
|
|
|
|
|
|
|
|
$this->assertEquals($cssexpected, $cssactual);
|
|
|
|
}
|
2020-12-16 20:50:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that {@see theme_config::get_all_block_regions()} returns localised list of region names.
|
2021-09-29 09:05:58 +08:00
|
|
|
*
|
|
|
|
* @covers ::get_all_block_regions
|
2020-12-16 20:50:06 +01:00
|
|
|
*/
|
|
|
|
public function test_get_all_block_regions() {
|
|
|
|
$this->resetAfterTest();
|
|
|
|
|
|
|
|
$theme = theme_config::load(theme_config::DEFAULT_THEME);
|
|
|
|
$regions = $theme->get_all_block_regions();
|
|
|
|
|
|
|
|
$this->assertEquals('Right', $regions['side-pre']);
|
|
|
|
}
|
2013-07-27 23:56:05 +02:00
|
|
|
}
|