Skip to content

Commit

Permalink
MDL-26030 update filter regex and create unittest for filter mediaplugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Rossiani Wijaya authored and skodak committed Feb 12, 2011
1 parent d911c72 commit 3f5192c
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 48 deletions.
98 changes: 50 additions & 48 deletions filter/mediaplugin/filter.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -49,93 +49,95 @@ function filter($text, array $options = array()) {
$newtext = $text; // fullclone is slow and not needed here $newtext = $text; // fullclone is slow and not needed here


if (!empty($CFG->filter_mediaplugin_enable_mp3)) { if (!empty($CFG->filter_mediaplugin_enable_mp3)) {
$search = '/<a[^>]*?href="([^<]+\.mp3)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.mp3)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_mp3_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_mp3_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_ogg)) { if (!empty($CFG->filter_mediaplugin_enable_ogg)) {
$search = '/<a[^>]*?href="([^<]+\.ogg)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.ogg)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_ogg_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_ogg_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_ogv)) { if (!empty($CFG->filter_mediaplugin_enable_ogv)) {
$search = '/<a[^>]*?href="([^<]+\.ogv)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.ogv)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_ogv_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_ogv_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_swf)) { if (!empty($CFG->filter_mediaplugin_enable_swf)) {
$search = '/<a[^>]*?href="([^<]+\.swf)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.swf)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_swf_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_swf_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_flv)) { if (!empty($CFG->filter_mediaplugin_enable_flv)) {
$search = '/<a[^>]*?href="([^<]+\.flv)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.flv)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_flv_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_flv_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_mov)) { if (!empty($CFG->filter_mediaplugin_enable_mov)) {
$search = '/<a[^>]*?href="([^<]+\.mov)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.mov)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext);


$search = '/<a[^>]*?href="([^<]+\.mp4)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.mp4)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext);


$search = '/<a[^>]*?href="([^<]+\.m4v)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.m4v)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext);


$search = '/<a[^>]*?href="([^<]+\.m4a)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.m4a)(\?d=([\d]{1,4}%?)x([\d]{1,4}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_wmv)) { if (!empty($CFG->filter_mediaplugin_enable_wmv)) {
$search = '/<a[^>]*?href="([^<]+\.wmv)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.wmv)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_wmp_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_wmp_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_mpg)) { if (!empty($CFG->filter_mediaplugin_enable_mpg)) {
$search = '/<a[^>]*?href="([^<]+\.mpe?g)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.mpe?g)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_qt_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_avi)) { if (!empty($CFG->filter_mediaplugin_enable_avi)) {
$search = '/<a[^>]*?href="([^<]+\.avi)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.avi)(\?d=([\d]{1,3}%?)x([\d]{1,3}%?))?"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_wmp_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_wmp_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_ram)) { if (!empty($CFG->filter_mediaplugin_enable_ram)) {
$search = '/<a[^>]*?href="([^<]+\.ram)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.ram)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_rpm)) { if (!empty($CFG->filter_mediaplugin_enable_rpm)) {
$search = '/<a[^>]*?href="([^<]+\.rpm)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.rpm)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_rm)) { if (!empty($CFG->filter_mediaplugin_enable_rm)) {
$search = '/<a[^>]*?href="([^<]+\.rm)"[^>]*>.*?<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.rm)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_real_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_youtube)) { if (!empty($CFG->filter_mediaplugin_enable_youtube)) {
//see MDL-23903 for description of recent changes to this regex //see MDL-23903 for description of recent changes to this regex
//$search = '/<a.*?href="([^<]*)youtube.com\/watch\?v=([^"]*)"[^>]*>(.*?)<\/a>/is'; //$search = '/<a.*?href="([^<]*)youtube.com\/watch\?v=([^"]*)"[^>]*>(.*?)<\/a>/is';
$search = '/<a[^>]*href="([^<]*?)youtube.com\/watch\?v=([^"]*)"[^>]*>(.*?)<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="(([^"]+youtube\.com)\/watch\?v=([^"]*))"[^>]*>(.*?)<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_callback', $newtext);


$search = '/<a[^>]*href="([^<]*)youtube.com\/v\/([^"]*)"[^>]*>(.*?)<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="(([^"]+youtube\.com)\/v\/([^"]*))"[^>]*>(.*?)<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_callback', $newtext);


$search = '/<a(\s+[^>]+?)?\s+href="((([^"]+)youtube\.com)\/view_play_list\?p=([^"]*))"[^>]*>(.*?)<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="((([^"]+)youtube\.com)\/view_play_list\?p=([^"]*))"[^>]*>(.*?)<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_playlist_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_youtube_playlist_callback', $newtext);
} }


if (!empty($CFG->filter_mediaplugin_enable_img)) { if (!empty($CFG->filter_mediaplugin_enable_img)) {
$search = '/<a[^>]*?href="([^<]+\.jpg)"[^>]*>(.*?)<\/a>/is'; $search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.jpg)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext);
$search = '/<a[^>]*?href="([^<]+\.png)"[^>]*>(.*?)<\/a>/is';
$search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.png)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext);
$search = '/<a[^>]*?href="([^<]+\.gif)"[^>]*>(.*?)<\/a>/is';
$search = '/<a(\s+[^>]+?)?\s+href="([^"]+\.gif)"[^>]*>.*?<\/a>/is';
$newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext); $newtext = preg_replace_callback($search, 'filter_mediaplugin_img_callback', $newtext);
} }


Expand Down Expand Up @@ -166,7 +168,7 @@ function filter_mediaplugin_mp3_callback($link) {
$count++; $count++;
$id = 'filter_mp3_'.time().$count; //we need something unique because it might be stored in text cache $id = 'filter_mp3_'.time().$count; //we need something unique because it might be stored in text cache


$url = addslashes_js($link[1]); $url = $link[2];


$playerpath = $CFG->wwwroot.'/filter/mediaplugin/mp3player.swf'; $playerpath = $CFG->wwwroot.'/filter/mediaplugin/mp3player.swf';
$audioplayerpath = $CFG->wwwroot .'/filter/mediaplugin/flowplayer.audio.swf'; $audioplayerpath = $CFG->wwwroot .'/filter/mediaplugin/flowplayer.audio.swf';
Expand Down Expand Up @@ -215,7 +217,7 @@ function filter_mediaplugin_ogg_callback($link) {
$count++; $count++;
$id = 'filter_ogg_'.time().$count; //we need something unique because it might be stored in text cache $id = 'filter_ogg_'.time().$count; //we need something unique because it might be stored in text cache


$url = addslashes_js($link[1]); $url = $link[2];
$printlink = html_writer::link($url, get_string('oggaudio', 'filter_mediaplugin')); $printlink = html_writer::link($url, get_string('oggaudio', 'filter_mediaplugin'));
$unsupportedplugins = get_string('unsupportedplugins', 'filter_mediaplugin', $printlink); $unsupportedplugins = get_string('unsupportedplugins', 'filter_mediaplugin', $printlink);
$output = <<<OET $output = <<<OET
Expand All @@ -234,7 +236,7 @@ function filter_mediaplugin_ogv_callback($link) {
$count++; $count++;
$id = 'filter_ogv_'.time().$count; //we need something unique because it might be stored in text cache $id = 'filter_ogv_'.time().$count; //we need something unique because it might be stored in text cache


$url = addslashes_js($link[1]); $url = $link[2];
$printlink = html_writer::link($url, get_string('ogvvideo', 'filter_mediaplugin')); $printlink = html_writer::link($url, get_string('ogvvideo', 'filter_mediaplugin'));
$unsupportedplugins = get_string('unsupportedplugins', 'filter_mediaplugin', $printlink); $unsupportedplugins = get_string('unsupportedplugins', 'filter_mediaplugin', $printlink);
$output = <<<OET $output = <<<OET
Expand All @@ -252,9 +254,9 @@ function filter_mediaplugin_swf_callback($link) {
$count++; $count++;
$id = 'filter_swf_'.time().$count; //we need something unique because it might be stored in text cache $id = 'filter_swf_'.time().$count; //we need something unique because it might be stored in text cache


$width = empty($link[3]) ? '400' : $link[3]; $width = empty($link[4]) ? '400' : $link[4];
$height = empty($link[4]) ? '300' : $link[4]; $height = empty($link[5]) ? '300' : $link[5];
$url = addslashes_js($link[1]); $url = $link[2];


$args = Array(); $args = Array();
$args['movie'] = $url; $args['movie'] = $url;
Expand All @@ -279,9 +281,9 @@ function filter_mediaplugin_flv_callback($link) {
$count++; $count++;
$id = 'filter_flv_'.time().$count; //we need something unique because it might be stored in text cache $id = 'filter_flv_'.time().$count; //we need something unique because it might be stored in text cache


$width = empty($link[3]) ? '480' : $link[3]; $width = empty($link[4]) ? '480' : $link[4];
$height = empty($link[4]) ? '360' : $link[4]; $height = empty($link[5]) ? '360' : $link[5];
$url = addslashes_js($link[1]); $url = $link[2];


$playerpath = $CFG->wwwroot.'/filter/mediaplugin/flvplayer.swf'; $playerpath = $CFG->wwwroot.'/filter/mediaplugin/flvplayer.swf';


Expand All @@ -305,7 +307,8 @@ function filter_mediaplugin_flv_callback($link) {
} }


function filter_mediaplugin_real_callback($link, $autostart=false) { function filter_mediaplugin_real_callback($link, $autostart=false) {
$url = addslashes_js($link[1]); $url = $link[2];
$jsurl = addslashes_js($link[2]);
$mimetype = mimeinfo('type', $url); $mimetype = mimeinfo('type', $url);
$autostart = $autostart ? 'true' : 'false'; $autostart = $autostart ? 'true' : 'false';


Expand All @@ -315,19 +318,19 @@ function filter_mediaplugin_real_callback($link, $autostart=false) {
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
document.write(\'<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="240" height="180">\\ document.write(\'<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="240" height="180">\\
<param name="src" value="'.$url.'" />\\ <param name="src" value="'.$jsurl.'" />\\
<param name="autostart" value="'.$autostart.'" />\\ <param name="autostart" value="'.$autostart.'" />\\
<param name="controls" value="imagewindow" />\\ <param name="controls" value="imagewindow" />\\
<param name="console" value="video" />\\ <param name="console" value="video" />\\
<param name="loop" value="true" />\\ <param name="loop" value="true" />\\
<embed src="'.$url.'" width="240" height="180" loop="true" type="'.$mimetype.'" controls="imagewindow" console="video" autostart="'.$autostart.'" />\\ <embed src="'.$jsurl.'" width="240" height="180" loop="true" type="'.$mimetype.'" controls="imagewindow" console="video" autostart="'.$autostart.'" />\\
</object><br />\\ </object><br />\\
<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="240" height="30">\\ <object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="240" height="30">\\
<param name="src" value="'.$url.'" />\\ <param name="src" value="'.$jsurl.'" />\\
<param name="autostart" value="'.$autostart.'" />\\ <param name="autostart" value="'.$autostart.'" />\\
<param name="controls" value="ControlPanel" />\\ <param name="controls" value="ControlPanel" />\\
<param name="console" value="video" />\\ <param name="console" value="video" />\\
<embed src="'.$url.'" width="240" height="30" controls="ControlPanel" type="'.$mimetype.'" console="video" autostart="'.$autostart.'" />\\ <embed src="'.$jsurl.'" width="240" height="30" controls="ControlPanel" type="'.$mimetype.'" console="video" autostart="'.$autostart.'" />\\
</object>\'); </object>\');
//]]> //]]>
</script></span>'; </script></span>';
Expand All @@ -337,15 +340,15 @@ function filter_mediaplugin_real_callback($link, $autostart=false) {
* Change links to Youtube into embedded Youtube videos * Change links to Youtube into embedded Youtube videos
*/ */
function filter_mediaplugin_youtube_callback($link, $autostart=false) { function filter_mediaplugin_youtube_callback($link, $autostart=false) {
$site = s($link[3]);
$param = urlencode($link[4]);
$info = s($link[5]);


$site = addslashes_js($link[1]);
$url = addslashes_js($link[2]);
$info = addslashes_js(strip_tags($link[3]));//strip out html tags as they won't work in the title attribute


return '<object title="'.$info.'" return '<object title="'.$info.'"
class="mediaplugin mediaplugin_youtube" type="application/x-shockwave-flash" class="mediaplugin mediaplugin_youtube" type="application/x-shockwave-flash"
data="'.$site.'youtube.com/v/'.$url.'&amp;fs=1&amp;rel=0" width="425" height="344">'. data="'.$site.'/v/'.$param.'&amp;fs=1&amp;rel=0" width="400" height="320">'.
'<param name="movie" value="'.$site.'youtube.com/v/'.$url.'&amp;fs=1&amp;rel=0" />'. '<param name="movie" value="'.$site.'/v/'.$param.'&amp;fs=1&amp;rel=0" />'.
'<param name="FlashVars" value="playerMode=embedded" />'. '<param name="FlashVars" value="playerMode=embedded" />'.
'<param name="wmode" value="transparent" />'. '<param name="wmode" value="transparent" />'.
'<param name="allowFullScreen" value="true" />'. '<param name="allowFullScreen" value="true" />'.
Expand Down Expand Up @@ -375,23 +378,22 @@ class="mediaplugin mediaplugin_youtube" type="application/x-shockwave-flash"
* Change links to images into embedded images * Change links to images into embedded images
*/ */
function filter_mediaplugin_img_callback($link, $autostart=false) { function filter_mediaplugin_img_callback($link, $autostart=false) {
$url = addslashes_js($link[1]); $url = $link[2];
$info = addslashes_js($link[2]); $info = s($link[2]);

return '<img class="mediaplugin mediaplugin_img" alt="" title="'.$info.'" src="'.$url.'" />'; return '<img class="mediaplugin mediaplugin_img" alt="" title="'.$info.'" src="'.$url.'" />';
} }


/** /**
* Embed video using window media player if available * Embed video using window media player if available
*/ */
function filter_mediaplugin_wmp_callback($link, $autostart=false) { function filter_mediaplugin_wmp_callback($link, $autostart=false) {
$url = $link[1]; $url = $link[2];
if (empty($link[3]) or empty($link[4])) { if (empty($link[4]) or empty($link[5])) {
$mpsize = ''; $mpsize = '';
$size = 'width="300" height="260"'; $size = 'width="300" height="260"';
$autosize = 'true'; $autosize = 'true';
} else { } else {
$size = 'width="'.$link[3].'" height="'.$link[4].'"'; $size = 'width="'.$link[4].'" height="'.$link[5].'"';
$mpsize = $size; $mpsize = $size;
$autosize = 'false'; $autosize = 'false';
} }
Expand Down Expand Up @@ -428,11 +430,11 @@ function filter_mediaplugin_wmp_callback($link, $autostart=false) {
} }


function filter_mediaplugin_qt_callback($link, $autostart=false) { function filter_mediaplugin_qt_callback($link, $autostart=false) {
$url = $link[1]; $url = $link[2];
if (empty($link[3]) or empty($link[4])) { if (empty($link[4]) or empty($link[5])) {
$size = 'width="440" height="315"'; $size = 'width="440" height="315"';
} else { } else {
$size = 'width="'.$link[3].'" height="'.$link[4].'"'; $size = 'width="'.$link[4].'" height="'.$link[5].'"';
} }
$mimetype = mimeinfo('type', $url); $mimetype = mimeinfo('type', $url);
$autostart = $autostart ? 'true' : 'false'; $autostart = $autostart ? 'true' : 'false';
Expand Down
102 changes: 102 additions & 0 deletions filter/mediaplugin/simpletest/testfiltermediaplugin.php
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,102 @@
<?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/>.

/**
* Unit test for the filter_mediaplugin
*
* @package filter
* @subpackage Mediaplugin
* @copyright 2011 Rossiani Wijaya <rwijaya@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

defined('MOODLE_INTERNAL') || die();

require_once($CFG->dirroot . '/filter/mediaplugin/filter.php'); // Include the code to test

/**
* Test cases for filter_mediaplugin class
*/
class filter_mediaplugin_test extends UnitTestCase {

function test_filter_mediaplugin_link() {
$filterplugin = new filter_mediaplugin(null, array());

$validtexts = array (
'<a href="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<a href="http://moodle.org/testfile/test.ogg">test ogg</a>',
'<a id="movie player" class="center" href="http://moodle.org/testfile/test.mpg">test mpg</a>',
'<a href="http://moodle.org/testfile/test.ram">test</a>',
'<a href="http://www.youtube.com/watch?v=JghQgA2HMX8" class="href=css">test file</a>',
'<a class="youtube" href="http://www.youtube.com/watch?v=JghQgA2HMX8">test file</a>',
'<a class="_blanktarget" href="http://moodle.org/testfile/test.flv?d=100x100">test flv</a>',
'<a class="hrefcss" href="http://www.youtube.com/watch?v=JghQgA2HMX8">test file</a>',
'<a href="http://www.moodle.org/logo.jpg"><img src="http://moodle.org/test.jpg" /></a>',
'<a href="http://www.moodle.org/logo.rpm">rpm file</a>',
'<a class="content" href="http://moodle.org/testfile/test.avi">test mp3</a>',
'<a id="audio" href="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<a href="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<a href="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<a href="http://www.youtube.com/watch?v=JghQgA2HMX8?d=200x200">youtube\'s</a>',
'<a
href="http://moodle.org/testfile/test.mp3">
test mp3</a>',
'<a class="content"
href="http://moodle.org/testfile/test.avi">test mp3
</a>',
'<a href="http://www.youtube.com/watch?v=JghQgA2HMX8?d=200x200" >youtube\'s</a>'
);

//test for valid link
foreach ($validtexts as $text) {
$msg = "Testing text: ". $text;
$filter = $filterplugin->filter($text);
$this->assertNotEqual($text, $filter, $msg);
}

$invalidtexts = array(
'<a class="_blanktarget">href="http://moodle.org/testfile/test.mp3"</a>',
'<a>test test</a>',
'<a >test test</a>',
'<a >test test</a>',
'<a >test test</a>',
'<ahref="http://moodle.org/testfile/test.mp3">sample</a>',
'<a href="" test></a>',
'<a class="_blanktarget" href="http://moodle.org/testfile/test.flv?d=100x">test flv</a>',
'<a href="http://www.moodle.com/path/to?#param=29">test</a>',
'<a href="http://moodle.org/testfile/test.mp3">test mp3',
'<a href="http://moodle.org/testfile/test.mp3"test</a>',
'<a href="http://moodle.org/testfile/">test</a>',
'<a href="http://www.moodle.org/path/to/test.flv#param2=1?d=100x100">test</a>',
'<href="http://moodle.org/testfile/test.avi">test</a>',
'<a ahref="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<abbr href="http://moodle.org/testfile/test.mp3">test mp3</abbr>',
'<ahref="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<a class="content"href="http://moodle.org/testfile/test.mp3">test mp3</a>',
'<aclass="content" href="http://moodle.org/testfile/test.mp3">test mp3</a>'
);

//test for invalid link
foreach ($invalidtexts as $text) {
$msg = "Testing text: ". $text;
$filter = $filterplugin->filter($text);
$this->assertEqual($text, $filter, $msg);
}
}
}

0 comments on commit 3f5192c

Please sign in to comment.