Skip to content

Commit

Permalink
MDL-30741 Adding a new test to check for incorrect parsing of complic…
Browse files Browse the repository at this point in the history
…ate HTML with a PRE tag.
  • Loading branch information
jfilip committed Dec 15, 2011
1 parent 7f3b9f0 commit c40e59f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lib/simpletest/testweblib.php
Expand Up @@ -144,6 +144,27 @@ public function test_html_to_text_0() {
$this->assertIdentical('0', html_to_text('0'));
}

public function test_html_to_text_pre_parsing_problem() {
$strorig = 'Consider the following function:<br /><pre><span style="color: rgb(153, 51, 102);">void FillMeUp(char* in_string) {'.
'<br /> int i = 0;<br /> while (in_string[i] != \'\0\') {<br /> in_string[i] = \'X\';<br /> i++;<br /> }<br />'.
'}</span></pre>What would happen if a non-terminated string were input to this function?<br /><br />';

$strconv = 'Consider the following function:
void FillMeUp(char* in_string) {
int i = 0;
while (in_string[i] != \'\0\') {
in_string[i] = \'X\';
i++;
}
}
What would happen if a non-terminated string were input to this function?
';

$this->assertIdentical($strconv, html_to_text($strorig));
}

public function test_clean_text() {
$text = "lala <applet>xx</applet>";
$this->assertEqual($text, clean_text($text, FORMAT_PLAIN));
Expand Down

0 comments on commit c40e59f

Please sign in to comment.