MDL-39378 s(): fix bad hex regex
[moodle.git] / lib / tests / weblib_test.php
CommitLineData
a3d5830a
PS
1<?php
2// This file is part of Moodle - http://moodle.org/
3//
4// Moodle is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// Moodle is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
16
17/**
18 * These tests rely on the rsstest.xml file on download.moodle.org,
19 * from eloys listing:
20 * rsstest.xml: One valid rss feed.
21 * md5: 8fd047914863bf9b3a4b1514ec51c32c
22 * size: 32188
23 *
24 * If networking/proxy configuration is wrong these tests will fail..
25 *
26 * @package core
27 * @category phpunit
28 * @copyright &copy; 2006 The Open University
29 * @author T.J.Hunt@open.ac.uk
30 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
31 */
32
33defined('MOODLE_INTERNAL') || die();
34
35
f0202ae9 36class web_testcase extends advanced_testcase {
a3d5830a
PS
37
38 function test_format_string() {
39 global $CFG;
40
41 // Ampersands
42 $this->assertEquals(format_string("& &&&&& &&"), "&amp; &amp;&amp;&amp;&amp;&amp; &amp;&amp;");
43 $this->assertEquals(format_string("ANother & &&&&& Category"), "ANother &amp; &amp;&amp;&amp;&amp;&amp; Category");
44 $this->assertEquals(format_string("ANother & &&&&& Category", true), "ANother &amp; &amp;&amp;&amp;&amp;&amp; Category");
45 $this->assertEquals(format_string("Nick's Test Site & Other things", true), "Nick's Test Site &amp; Other things");
46
47 // String entities
48 $this->assertEquals(format_string("&quot;"), "&quot;");
49
50 // Digital entities
51 $this->assertEquals(format_string("&11234;"), "&11234;");
52
53 // Unicode entities
54 $this->assertEquals(format_string("&#4475;"), "&#4475;");
55
56 // < and > signs
57 $originalformatstringstriptags = $CFG->formatstringstriptags;
58
59 $CFG->formatstringstriptags = false;
60 $this->assertEquals(format_string('x < 1'), 'x &lt; 1');
61 $this->assertEquals(format_string('x > 1'), 'x &gt; 1');
62 $this->assertEquals(format_string('x < 1 and x > 0'), 'x &lt; 1 and x &gt; 0');
63
64 $CFG->formatstringstriptags = true;
65 $this->assertEquals(format_string('x < 1'), 'x &lt; 1');
66 $this->assertEquals(format_string('x > 1'), 'x &gt; 1');
67 $this->assertEquals(format_string('x < 1 and x > 0'), 'x &lt; 1 and x &gt; 0');
68
69 $CFG->formatstringstriptags = $originalformatstringstriptags;
70 }
71
72 function test_s() {
73 $this->assertEquals(s("This Breaks \" Strict"), "This Breaks &quot; Strict");
74 $this->assertEquals(s("This Breaks <a>\" Strict</a>"), "This Breaks &lt;a&gt;&quot; Strict&lt;/a&gt;");
0c6f9e75 75 $this->assertEquals('An entity: &#x09ff;.', s('An entity: &#x09ff;.'));
a3d5830a
PS
76 }
77
78 function test_format_text_email() {
79 $this->assertEquals("This is a TEST",
80 format_text_email('<p>This is a <strong>test</strong></p>',FORMAT_HTML));
81 $this->assertEquals("This is a TEST",
82 format_text_email('<p class="frogs">This is a <strong class=\'fishes\'>test</strong></p>',FORMAT_HTML));
83 $this->assertEquals('& so is this',
84 format_text_email('&amp; so is this',FORMAT_HTML));
85 $this->assertEquals('Two bullets: '.textlib::code2utf8(8226).' *',
86 format_text_email('Two bullets: &#x2022; &#8226;',FORMAT_HTML));
87 $this->assertEquals(textlib::code2utf8(0x7fd2).textlib::code2utf8(0x7fd2),
88 format_text_email('&#x7fd2;&#x7FD2;',FORMAT_HTML));
89 }
90
91 function test_highlight() {
92 $this->assertEquals(highlight('good', 'This is good'), 'This is <span class="highlight">good</span>');
93 $this->assertEquals(highlight('SpaN', 'span'), '<span class="highlight">span</span>');
94 $this->assertEquals(highlight('span', 'SpaN'), '<span class="highlight">SpaN</span>');
95 $this->assertEquals(highlight('span', '<span>span</span>'), '<span><span class="highlight">span</span></span>');
96 $this->assertEquals(highlight('good is', 'He is good'), 'He <span class="highlight">is</span> <span class="highlight">good</span>');
97 $this->assertEquals(highlight('+good', 'This is good'), 'This is <span class="highlight">good</span>');
98 $this->assertEquals(highlight('-good', 'This is good'), 'This is good');
99 $this->assertEquals(highlight('+good', 'This is goodness'), 'This is goodness');
100 $this->assertEquals(highlight('good', 'This is goodness'), 'This is <span class="highlight">good</span>ness');
101 }
102
103 function test_replace_ampersands() {
104 $this->assertEquals(replace_ampersands_not_followed_by_entity("This & that &nbsp;"), "This &amp; that &nbsp;");
105 $this->assertEquals(replace_ampersands_not_followed_by_entity("This &nbsp that &nbsp;"), "This &amp;nbsp that &nbsp;");
106 }
107
108 function test_strip_links() {
109 $this->assertEquals(strip_links('this is a <a href="http://someaddress.com/query">link</a>'), 'this is a link');
110 }
111
112 function test_wikify_links() {
113 $this->assertEquals(wikify_links('this is a <a href="http://someaddress.com/query">link</a>'), 'this is a link [ http://someaddress.com/query ]');
114 }
115
ffe4de97 116 /**
117 * Tests moodle_url::get_path().
118 */
119 public function test_moodle_url_get_path() {
120 $url = new moodle_url('http://www.example.org:447/my/file/is/here.txt?really=1');
121 $this->assertEquals('/my/file/is/here.txt', $url->get_path());
122
123 $url = new moodle_url('http://www.example.org/');
124 $this->assertEquals('/', $url->get_path());
125
126 $url = new moodle_url('http://www.example.org/pluginfile.php/slash/arguments');
127 $this->assertEquals('/pluginfile.php/slash/arguments', $url->get_path());
128 $this->assertEquals('/pluginfile.php', $url->get_path(false));
129 }
130
a3d5830a
PS
131 function test_moodle_url_round_trip() {
132 $strurl = 'http://moodle.org/course/view.php?id=5';
133 $url = new moodle_url($strurl);
134 $this->assertEquals($strurl, $url->out(false));
135
136 $strurl = 'http://moodle.org/user/index.php?contextid=53&sifirst=M&silast=D';
137 $url = new moodle_url($strurl);
138 $this->assertEquals($strurl, $url->out(false));
139 }
140
141 function test_moodle_url_round_trip_array_params() {
142 $strurl = 'http://example.com/?a%5B1%5D=1&a%5B2%5D=2';
143 $url = new moodle_url($strurl);
144 $this->assertEquals($strurl, $url->out(false));
145
146 $url = new moodle_url('http://example.com/?a[1]=1&a[2]=2');
147 $this->assertEquals($strurl, $url->out(false));
148
149 // For un-keyed array params, we expect 0..n keys to be returned
150 $strurl = 'http://example.com/?a%5B0%5D=0&a%5B1%5D=1';
151 $url = new moodle_url('http://example.com/?a[]=0&a[]=1');
152 $this->assertEquals($strurl, $url->out(false));
153 }
154
155 function test_compare_url() {
156 $url1 = new moodle_url('index.php', array('var1' => 1, 'var2' => 2));
157 $url2 = new moodle_url('index2.php', array('var1' => 1, 'var2' => 2, 'var3' => 3));
158
159 $this->assertFalse($url1->compare($url2, URL_MATCH_BASE));
160 $this->assertFalse($url1->compare($url2, URL_MATCH_PARAMS));
161 $this->assertFalse($url1->compare($url2, URL_MATCH_EXACT));
162
163 $url2 = new moodle_url('index.php', array('var1' => 1, 'var3' => 3));
164
165 $this->assertTrue($url1->compare($url2, URL_MATCH_BASE));
166 $this->assertFalse($url1->compare($url2, URL_MATCH_PARAMS));
167 $this->assertFalse($url1->compare($url2, URL_MATCH_EXACT));
168
169 $url2 = new moodle_url('index.php', array('var1' => 1, 'var2' => 2, 'var3' => 3));
170
171 $this->assertTrue($url1->compare($url2, URL_MATCH_BASE));
172 $this->assertTrue($url1->compare($url2, URL_MATCH_PARAMS));
173 $this->assertFalse($url1->compare($url2, URL_MATCH_EXACT));
174
175 $url2 = new moodle_url('index.php', array('var2' => 2, 'var1' => 1));
176
177 $this->assertTrue($url1->compare($url2, URL_MATCH_BASE));
178 $this->assertTrue($url1->compare($url2, URL_MATCH_PARAMS));
179 $this->assertTrue($url1->compare($url2, URL_MATCH_EXACT));
180 }
181
182 function test_out_as_local_url() {
72b181ba
RT
183 global $CFG;
184 // Test http url.
a3d5830a
PS
185 $url1 = new moodle_url('/lib/tests/weblib_test.php');
186 $this->assertEquals('/lib/tests/weblib_test.php', $url1->out_as_local_url());
72b181ba
RT
187
188 // Test https url.
189 $httpswwwroot = str_replace("http://", "https://", $CFG->wwwroot);
190 $url2 = new moodle_url($httpswwwroot.'/login/profile.php');
191 $this->assertEquals('/login/profile.php', $url2->out_as_local_url());
192
193 // Test http url matching wwwroot.
194 $url3 = new moodle_url($CFG->wwwroot);
195 $this->assertEquals('', $url3->out_as_local_url());
196
197 // Test http url matching wwwroot ending with slash (/).
198 $url3 = new moodle_url($CFG->wwwroot.'/');
199 $this->assertEquals('/', $url3->out_as_local_url());
a3d5830a
PS
200 }
201
202 /**
203 * @expectedException coding_exception
204 * @return void
205 */
206 function test_out_as_local_url_error() {
4ca04fb5 207 $url2 = new moodle_url('http://www.google.com/lib/tests/weblib_test.php');
a3d5830a
PS
208 $url2->out_as_local_url();
209 }
210
72b181ba
RT
211 /**
212 * You should get error with modified url
213 *
214 * @expectedException coding_exception
215 * @return void
216 */
217 public function test_modified_url_out_as_local_url_error() {
218 global $CFG;
219
220 $modifiedurl = $CFG->wwwroot.'1';
221 $url3 = new moodle_url($modifiedurl.'/login/profile.php');
222 $url3->out_as_local_url();
223 }
224
225 /**
226 * Try get local url from external https url and you should get error
227 *
228 * @expectedException coding_exception
229 * @return void
230 */
231 public function test_https_out_as_local_url_error() {
232 $url4 = new moodle_url('https://www.google.com/lib/tests/weblib_test.php');
233 $url4->out_as_local_url();
234 }
235
a3d5830a
PS
236 public function test_clean_text() {
237 $text = "lala <applet>xx</applet>";
238 $this->assertEquals($text, clean_text($text, FORMAT_PLAIN));
239 $this->assertEquals('lala xx', clean_text($text, FORMAT_MARKDOWN));
240 $this->assertEquals('lala xx', clean_text($text, FORMAT_MOODLE));
241 $this->assertEquals('lala xx', clean_text($text, FORMAT_HTML));
242 }
f0202ae9 243
bd319d12 244 public function test_qualified_me() {
f0202ae9
PS
245 global $PAGE, $FULLME, $CFG;
246 $this->resetAfterTest();
247
248 $PAGE = new moodle_page();
249
250 $FULLME = $CFG->wwwroot.'/course/view.php?id=1&xx=yy';
251 $this->assertEquals($FULLME, qualified_me());
252
253 $PAGE->set_url('/course/view.php', array('id'=>1));
254 $this->assertEquals($CFG->wwwroot.'/course/view.php?id=1', qualified_me());
255 }
837e3042
PS
256
257 public function test_null_progres_trace() {
258 $this->resetAfterTest(false);
259
260 $trace = new null_progress_trace();
837e3042
PS
261 $trace->output('do');
262 $trace->output('re', 1);
263 $trace->output('mi', 2);
264 $trace->finished();
265 $output = ob_get_contents();
837e3042 266 $this->assertSame('', $output);
4fa7fdea 267 $this->expectOutputString('');
837e3042
PS
268 }
269
270 public function test_text_progres_trace() {
271 $this->resetAfterTest(false);
272
273 $trace = new text_progress_trace();
837e3042
PS
274 $trace->output('do');
275 $trace->output('re', 1);
276 $trace->output('mi', 2);
277 $trace->finished();
4fa7fdea 278 $this->expectOutputString("do\n re\n mi\n");
837e3042
PS
279 }
280
281 public function test_html_progres_trace() {
282 $this->resetAfterTest(false);
283
284 $trace = new html_progress_trace();
837e3042
PS
285 $trace->output('do');
286 $trace->output('re', 1);
287 $trace->output('mi', 2);
288 $trace->finished();
4fa7fdea 289 $this->expectOutputString("<p>do</p>\n<p>&#160;&#160;re</p>\n<p>&#160;&#160;&#160;&#160;mi</p>\n");
837e3042
PS
290 }
291
292 public function test_html_list_progress_trace() {
293 $this->resetAfterTest(false);
294
295 $trace = new html_list_progress_trace();
837e3042
PS
296 $trace->output('do');
297 $trace->output('re', 1);
298 $trace->output('mi', 2);
299 $trace->finished();
4fa7fdea 300 $this->expectOutputString("<ul>\n<li>do<ul>\n<li>re<ul>\n<li>mi</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n");
837e3042
PS
301 }
302
303 public function test_progres_trace_buffer() {
304 $this->resetAfterTest(false);
305
306 $trace = new progress_trace_buffer(new html_progress_trace());
307 ob_start();
308 $trace->output('do');
309 $trace->output('re', 1);
310 $trace->output('mi', 2);
311 $trace->finished();
312 $output = ob_get_contents();
313 ob_end_clean();
314 $this->assertSame("<p>do</p>\n<p>&#160;&#160;re</p>\n<p>&#160;&#160;&#160;&#160;mi</p>\n", $output);
315 $this->assertSame($output, $trace->get_buffer());
316
317 $trace = new progress_trace_buffer(new html_progress_trace(), false);
837e3042
PS
318 $trace->output('do');
319 $trace->output('re', 1);
320 $trace->output('mi', 2);
321 $trace->finished();
837e3042
PS
322 $this->assertSame("<p>do</p>\n<p>&#160;&#160;re</p>\n<p>&#160;&#160;&#160;&#160;mi</p>\n", $trace->get_buffer());
323 $this->assertSame("<p>do</p>\n<p>&#160;&#160;re</p>\n<p>&#160;&#160;&#160;&#160;mi</p>\n", $trace->get_buffer());
324 $trace->reset_buffer();
325 $this->assertSame('', $trace->get_buffer());
4fa7fdea 326 $this->expectOutputString('');
837e3042 327 }
e7259ec9
PS
328
329 public function test_combined_progres_trace() {
330 $this->resetAfterTest(false);
331
332 $trace1 = new progress_trace_buffer(new html_progress_trace(), false);
333 $trace2 = new progress_trace_buffer(new text_progress_trace(), false);
334
335 $trace = new combined_progress_trace(array($trace1, $trace2));
e7259ec9
PS
336 $trace->output('do');
337 $trace->output('re', 1);
338 $trace->output('mi', 2);
339 $trace->finished();
e7259ec9
PS
340 $this->assertSame("<p>do</p>\n<p>&#160;&#160;re</p>\n<p>&#160;&#160;&#160;&#160;mi</p>\n", $trace1->get_buffer());
341 $this->assertSame("do\n re\n mi\n", $trace2->get_buffer());
4fa7fdea 342 $this->expectOutputString('');
e7259ec9 343 }
a3d5830a 344}