\n==== Heading ====\n\nSome text\n"); $expected = [ [ 'document_start', [], 0 ], [ 'plugin', [ 'wrap_divwrap', [ DOKU_LEXER_ENTER, '' ], 1 ], [ 'header', [ 'Heading', 3, 8 ], 8 ], [ 'plugin', [ 'wrap_closesection', [], DOKU_LEXER_SPECIAL, false ], 8 ], [ 'p_open', [], 8 ], [ 'cdata', [ 'Some text' ], 27 ], [ 'p_close', [], 37 ], [ 'plugin', [ 'wrap_divwrap', [ DOKU_LEXER_EXIT, '' ], DOKU_LEXER_EXIT, '' ], 37 ], [ 'document_end', [], 37 ] ]; $this->assertEquals($expected, $instructions); } public function testBlockNesting() { $instructions = p_get_instructions("\nFoo\n\n Bar\n"); $expected = [ [ 'document_start', [], 0 ], [ 'plugin', [ 'wrap_divwrap', [ DOKU_LEXER_ENTER, '' ], 1 ], [ 'p_open', [ ], 1 ], [ 'cdata', [ 'Foo' ], 8 ], [ 'p_close', [], 11 ], [ 'p_open', [ ], 11 ], [ 'cdata', [ ' Bar' ], 13 ], [ 'p_close', [], 33 ], [ 'plugin', [ 'wrap_divwrap', [ DOKU_LEXER_EXIT, '' ], DOKU_LEXER_EXIT, '' ], 33 ], [ 'document_end', [], 33 ] ]; $this->assertEquals($expected, $instructions); } public function testInlineNesting() { $instructions = p_get_instructions("Foo Bar"); $expected = [ [ 'document_start', [], 0 ], [ 'p_open', [ ], 0 ], [ 'plugin', [ 'wrap_spanwrap', [ DOKU_LEXER_ENTER, '' ], 1 ], [ 'cdata', [ 'Foo Bar' ], 7 ], [ 'plugin', [ 'wrap_spanwrap', [ DOKU_LEXER_EXIT, '' ], DOKU_LEXER_EXIT, '' ], 32 ], [ 'cdata', [ '' ], 39 ], [ 'p_close', [], 39 ], [ 'document_end', [], 39 ] ]; $this->assertEquals($expected, $instructions); } }