summaryrefslogtreecommitdiff
path: root/_test/cases/inc/parser/xhtml_htmlphp.test.php
blob: 65d64e579d70e60098fa7b88f08fd3326d7a3e8c (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
if (!defined('DOKU_BASE')) define('DOKU_BASE','./');

require_once 'parser.inc.php';
require_once DOKU_INC.'inc/parser/xhtml.php';
require_once DOKU_INC.'inc/geshi.php';

if (!extension_loaded('runkit')) {
    SimpleTestOptions::ignore('xhtml_htmlphp_test');
    trigger_error('Skipping xhtml_htmlphp_test - http://www.php.net/runkit required');
}

function xhtml_htmlphp_test_io_makefiledir() {
  return;
}
function xhtml_htmlphp_test_io_savefile() {
  return true;
}


class Doku_Renderer_tester extends Doku_Renderer_xhtml {

/*
   changes to these tests remove the need to redefine any xhtml methods
   class left for future use
 */

}

/*
 * test case for parser/xhtml.php _headertolink method
 * definition:   function _headertolink($title,$create)
 */

class xhtml_htmlphp_test extends  TestOfDoku_Parser {

    var $purge;
    var $cachedir;

    function setup() {
      global $conf;

      // set purge to avoid trying to retrieve from cache
      $this->purge = isset($_REQUEST['purge']) ? $_REQUEST['purge'] : null;
      $_REQUEST['purge'] = 1;

      if (!isset($conf['cachedir'])) {
        $conf['cachedir'] = '';
        $this->cachedir = false;
      } else {
        $this->cachedir = true;
      }

      if (function_exists('io_makefiledir')) {
        runkit_function_rename('io_makefiledir', 'io_makefiledir_real');
      }
      runkit_function_rename('xhtml_htmlphp_test_io_makefiledir','io_makefiledir');

      if (function_exists('io_savefile')) {
        runkit_function_rename('io_savefile', 'io_savefile_real');
      }
      runkit_function_rename('xhtml_htmlphp_test_io_savefile','io_savefile');

      runkit_method_rename('GeSHi','parse_code','parse_code_real');
      runkit_method_add('GeSHi','parse_code','', '{ return hsc($this->source); }');

      parent::setup();
    }

    function teardown() {
      global $conf;

      // restore purge
      if (is_null($this->purge)) unset($_REQUEST['purge']);
      else $_REQUEST['purge'] = $this->purge;

      // restore $conf['cachedir'] if necessary
      if (!$this->cachedir) unset($conf['cachedir']);

      // restore io_functions
      runkit_function_rename('io_makefiledir','xhtml_htmlphp_test_io_makefiledir');
      if (function_exists('io_makefiledir_real')) {
        runkit_function_rename('io_makefiledir_real', 'io_makefiledir');
      }

      runkit_function_rename('io_savefile','xhtml_htmlphp_test_io_savefile');
      if (function_exists('io_savefile_real')) {
        runkit_function_rename('io_savefile_real', 'io_savefile');
      }

      // restore GeSHi::parse_code
      runkit_method_remove('GeSHi','parse_code');
      runkit_method_rename('GeSHi','parse_code_real','parse_code');

      parent::setup();
    }

    function _run_parser($modes,$data) {
    
      foreach ($modes as $mode => $name) {
        $class = 'Doku_Parser_Mode_'.$name;
        $this->P->addMode($mode,new $class());
      }
      
      $R = new Doku_Renderer_tester();
      $this->P->parse($data);
      foreach ( $this->H->calls as $instruction ) {
        // Execute the callback against the Renderer
        call_user_func_array(array(&$R, $instruction[0]),$instruction[1]);
      }
      
      return str_replace("\n",'',$R->doc);
    }

    function test_html_off(){
        $test   = array('<html><b>bold</b></html>','<p><code class="code html4strict">&lt;b&gt;bold&lt;/b&gt;</code></p>');

        global $conf;
        $conf['htmlok'] = 0;

        $result = $this->_run_parser(array('html'=>'html'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_html_on(){
        $test   = array('<html><b>bold</b></html>','<p><b>bold</b></p>');

        global $conf;
        $conf['htmlok'] = 1;

        $result = $this->_run_parser(array('html'=>'html'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_htmlblock_off(){
        $test   = array('<HTML><b>bold</b></HTML>','<pre class="code html4strict">&lt;b&gt;bold&lt;/b&gt;</pre>');

        global $conf;
        $conf['htmlok'] = 0;

        $result = $this->_run_parser(array('html'=>'html'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_htmlblock_on(){
        $test   = array('<HTML><b>bold</b></HTML>','<b>bold</b>');

        global $conf;
        $conf['htmlok'] = 1;

        $result = $this->_run_parser(array('html'=>'html'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_php_off(){
        $test   = array('<php>echo(1+1);</php>','<p><code class="code php">echo(1+1);</code></p>');

        global $conf;
        $conf['phpok'] = 0;

        $result = $this->_run_parser(array('php'=>'php'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_php_on(){
        $test   = array('<php>echo(1+1);</php>','<p>2</p>');

        global $conf;
        $conf['phpok'] = 1;

        $result = $this->_run_parser(array('php'=>'php'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_phpblock_off(){
        $test   = array('<PHP>echo(1+1);</PHP>','<pre class="code php">echo(1+1);</pre>');

        global $conf;
        $conf['phpok'] = 0;

        $result = $this->_run_parser(array('php'=>'php'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

    function test_phpblock_on(){
        $test   = array('<PHP>echo(1+1);</PHP>',"2");

        global $conf;
        $conf['phpok'] = 1;

        $result = $this->_run_parser(array('php'=>'php'),$test[0]);

        $this->assertEqual($result,$test[1]);
    }

}