Aleksander Machniak
2014-04-23 0314bff2789d8c661c985bf9edc74569efe56ecc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
 
/**
 * Test class to test rcube_base_replacer class
 *
 * @package Tests
 */
class Framework_BaseReplacer extends PHPUnit_Framework_TestCase
{
 
    /**
     * Class constructor
     */
    function test_class()
    {
        $object = new rcube_base_replacer('test');
 
        $this->assertInstanceOf('rcube_base_replacer', $object, "Class constructor");
    }
 
    /**
     * Test replace()
     */
    function test_replace()
    {
        $base = 'http://thisshouldntbetheurl.bob.com/';
        $html = '<A href=http://shouldbethislink.com>Test URL</A>';
 
        $replacer = new rcube_base_replacer($base);
        $response = $replacer->replace($html);
 
        $this->assertSame('<A href="http://shouldbethislink.com">Test URL</A>', $response);
    }
}