assertInstanceOf('rcube_string_replacer', $sr, "Class constructor");
}
/**
* Data for test_replace()
*/
function data_replace()
{
return array(
array('http://domain.tld/path*path2', 'http://domain.tld/path*path2'),
array("Click this link:\nhttps://mail.xn--brderli-o2a.ch/rc/ EOF", "Click this link:\nhttps://mail.xn--brderli-o2a.ch/rc/ EOF"),
array('Start http://localhost/?foo End', 'Start http://localhost/?foo End'),
array('www.domain.tld', 'www.domain.tld'),
array('WWW.DOMAIN.TLD', 'WWW.DOMAIN.TLD'),
array('[http://link.com]', '[http://link.com]'),
array('http://link.com?a[]=1', 'http://link.com?a[]=1'),
array('http://link.com?a[]', 'http://link.com?a[]'),
array('(http://link.com)', '(http://link.com)'),
array('http://link.com?a(b)c', 'http://link.com?a(b)c'),
array('http://link.com?(link)', 'http://link.com?(link)'),
array('http://', 'http://'),
array('http://', 'http://'),
);
}
/**
* @dataProvider data_replace
*/
function test_replace($input, $output)
{
$replacer = new rcube_string_replacer;
$result = $replacer->replace($input);
$result = $replacer->resolve($result);
$this->assertEquals($output, $result);
}
}