MediaWiki REL1_30
TagHooksTest.php
Go to the documentation of this file.
1<?php
2
32 public static function provideValidNames() {
33 return [
34 [ 'foo' ],
35 [ 'foo-bar' ],
36 [ 'foo_bar' ],
37 [ 'FOO-BAR' ],
38 [ 'foo bar' ]
39 ];
40 }
41
42 public static function provideBadNames() {
43 return [ [ "foo<bar" ], [ "foo>bar" ], [ "foo\nbar" ], [ "foo\rbar" ] ];
44 }
45
46 private function getParserOptions() {
47 global $wgContLang;
48 $popt = ParserOptions::newFromUserAndLang( new User, $wgContLang );
49 $popt->setWrapOutputClass( false );
50 return $popt;
51 }
52
56 public function testTagHooks( $tag ) {
57 global $wgParserConf;
59
60 $parser->setHook( $tag, [ $this, 'tagCallback' ] );
61 $parserOutput = $parser->parse(
62 "Foo<$tag>Bar</$tag>Baz",
63 Title::newFromText( 'Test' ),
64 $this->getParserOptions()
65 );
66 $this->assertEquals( "<p>FooOneBaz\n</p>", $parserOutput->getText() );
67
68 $parser->mPreprocessor = null; # Break the Parser <-> Preprocessor cycle
69 }
70
75 public function testBadTagHooks( $tag ) {
76 global $wgParserConf;
78
79 $parser->setHook( $tag, [ $this, 'tagCallback' ] );
80 $parser->parse(
81 "Foo<$tag>Bar</$tag>Baz",
82 Title::newFromText( 'Test' ),
83 $this->getParserOptions()
84 );
85 $this->fail( 'Exception not thrown.' );
86 }
87
91 public function testFunctionTagHooks( $tag ) {
92 global $wgParserConf;
94
95 $parser->setFunctionTagHook( $tag, [ $this, 'functionTagCallback' ], 0 );
96 $parserOutput = $parser->parse(
97 "Foo<$tag>Bar</$tag>Baz",
98 Title::newFromText( 'Test' ),
99 $this->getParserOptions()
100 );
101 $this->assertEquals( "<p>FooOneBaz\n</p>", $parserOutput->getText() );
102
103 $parser->mPreprocessor = null; # Break the Parser <-> Preprocessor cycle
104 }
105
110 public function testBadFunctionTagHooks( $tag ) {
111 global $wgParserConf;
113
114 $parser->setFunctionTagHook(
115 $tag,
116 [ $this, 'functionTagCallback' ],
117 Parser::SFH_OBJECT_ARGS
118 );
119 $parser->parse(
120 "Foo<$tag>Bar</$tag>Baz",
121 Title::newFromText( 'Test' ),
122 $this->getParserOptions()
123 );
124 $this->fail( 'Exception not thrown.' );
125 }
126
127 function tagCallback( $text, $params, $parser ) {
128 return str_rot13( $text );
129 }
130
131 function functionTagCallback( &$parser, $frame, $code, $attribs ) {
132 return str_rot13( $code );
133 }
134}
$wgParserConf
Parser configuration.
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition Parser.php:70
Database Parser.
testFunctionTagHooks( $tag)
provideValidNames
tagCallback( $text, $params, $parser)
testBadTagHooks( $tag)
provideBadNames MWException
static provideBadNames()
functionTagCallback(&$parser, $frame, $code, $attribs)
testBadFunctionTagHooks( $tag)
provideBadNames MWException
testTagHooks( $tag)
provideValidNames
static provideValidNames()
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:51
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
do that in ParserLimitReportFormat instead $parser
Definition hooks.txt:2572
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:863
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:1984
$params