MediaWiki  1.30.0
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() {
49  $popt->setWrapOutputClass( false );
50  return $popt;
51  }
52 
56  public function testTagHooks( $tag ) {
58  $parser = new Parser( $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 ) {
77  $parser = new Parser( $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 ) {
93  $parser = new Parser( $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 ) {
112  $parser = new Parser( $wgParserConf );
113 
114  $parser->setFunctionTagHook(
115  $tag,
116  [ $this, 'functionTagCallback' ],
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 }
TagHookTest\testBadFunctionTagHooks
testBadFunctionTagHooks( $tag)
provideBadNames MWException
Definition: TagHooksTest.php:110
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:268
TagHookTest
Database Parser.
Definition: TagHooksTest.php:31
$wgParserConf
$wgParserConf
Parser configuration.
Definition: DefaultSettings.php:4178
SFH_OBJECT_ARGS
const SFH_OBJECT_ARGS
Definition: Defines.php:199
$params
$params
Definition: styleTest.css.php:40
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Preprocessor
Definition: Preprocessor.php:29
TagHookTest\testBadTagHooks
testBadTagHooks( $tag)
provideBadNames MWException
Definition: TagHooksTest.php:75
TagHookTest\provideValidNames
static provideValidNames()
Definition: TagHooksTest.php:32
ParserOptions\newFromUserAndLang
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
Definition: ParserOptions.php:992
TagHookTest\testTagHooks
testTagHooks( $tag)
provideValidNames
Definition: TagHooksTest.php:56
MediaWikiTestCase
Definition: MediaWikiTestCase.php:15
$attribs
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:1965
TagHookTest\tagCallback
tagCallback( $text, $params, $parser)
Definition: TagHooksTest.php:127
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:2572
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
TagHookTest\testFunctionTagHooks
testFunctionTagHooks( $tag)
provideValidNames
Definition: TagHooksTest.php:91
$code
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:781
TagHookTest\getParserOptions
getParserOptions()
Definition: TagHooksTest.php:46
TagHookTest\provideBadNames
static provideBadNames()
Definition: TagHooksTest.php:42
TagHookTest\functionTagCallback
functionTagCallback(&$parser, $frame, $code, $attribs)
Definition: TagHooksTest.php:131
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51
$wgContLang
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 content language as $wgContLang
Definition: design.txt:56