emaillink('foo@example.com',''); $expect = '<script>alert('"alert"');</script>'; $this->assertEqual($p->doc,$expect); } function test_emaillink_with_media(){ global $conf; $conf['mailguard'] = 'visible'; $conf['userewrite'] = 2; $image = array( 'type'=>'internalmedia', 'src'=>'img.gif', 'title'=>'Some Image', 'align'=>NULL, 'width'=>10, 'height'=>20, 'cache'=>'nocache', 'linking'=>'details', ); $p = new Doku_Renderer_xhtml(); $p->emaillink('foo@example.com',$image); $expect = 'Some Image'; $this->assertEqual($p->doc,$expect); } }