Merge "ApiQuery: Don't mess with PHP output buffering"
[lhc/web/wiklou.git] / tests / phpunit / ResourceLoaderTestCase.php
1 <?php
2
3 abstract class ResourceLoaderTestCase extends MediaWikiTestCase {
4 /**
5 * @param string $lang
6 * @param string $dir
7 * @return ResourceLoaderContext
8 */
9 protected function getResourceLoaderContext( $lang = 'en', $dir = 'ltr' ) {
10 $resourceLoader = new ResourceLoader();
11 $request = new FauxRequest( [
12 'lang' => $lang,
13 'modules' => 'startup',
14 'only' => 'scripts',
15 'skin' => 'vector',
16 'target' => 'phpunit',
17 ] );
18 $ctx = $this->getMockBuilder( 'ResourceLoaderContext' )
19 ->setConstructorArgs( [ $resourceLoader, $request ] )
20 ->setMethods( [ 'getDirection' ] )
21 ->getMock();
22 $ctx->expects( $this->any() )->method( 'getDirection' )->will(
23 $this->returnValue( $dir )
24 );
25 return $ctx;
26 }
27
28 public static function getSettings() {
29 return [
30 // For ResourceLoader::inDebugMode since it doesn't have context
31 'ResourceLoaderDebug' => true,
32
33 // Avoid influence from wgInvalidateCacheOnLocalSettingsChange
34 'CacheEpoch' => '20140101000000',
35
36 // For ResourceLoader::__construct()
37 'ResourceLoaderSources' => [],
38
39 // For wfScript()
40 'ScriptPath' => '/w',
41 'ScriptExtension' => '.php',
42 'Script' => '/w/index.php',
43 'LoadScript' => '/w/load.php',
44 ];
45 }
46
47 protected function setUp() {
48 parent::setUp();
49
50 ResourceLoader::clearCache();
51
52 $globals = [];
53 foreach ( self::getSettings() as $key => $value ) {
54 $globals['wg' . $key] = $value;
55 }
56 $this->setMwGlobals( $globals );
57 }
58 }
59
60 /* Stubs */
61
62 class ResourceLoaderTestModule extends ResourceLoaderModule {
63 protected $messages = [];
64 protected $dependencies = [];
65 protected $group = null;
66 protected $source = 'local';
67 protected $script = '';
68 protected $styles = '';
69 protected $skipFunction = null;
70 protected $isRaw = false;
71 protected $targets = [ 'phpunit' ];
72
73 public function __construct( $options = [] ) {
74 foreach ( $options as $key => $value ) {
75 $this->$key = $value;
76 }
77 }
78
79 public function getScript( ResourceLoaderContext $context ) {
80 return $this->validateScriptFile( 'input', $this->script );
81 }
82
83 public function getStyles( ResourceLoaderContext $context ) {
84 return [ '' => $this->styles ];
85 }
86
87 public function getMessages() {
88 return $this->messages;
89 }
90
91 public function getDependencies( ResourceLoaderContext $context = null ) {
92 return $this->dependencies;
93 }
94
95 public function getGroup() {
96 return $this->group;
97 }
98
99 public function getSource() {
100 return $this->source;
101 }
102
103 public function getSkipFunction() {
104 return $this->skipFunction;
105 }
106
107 public function isRaw() {
108 return $this->isRaw;
109 }
110
111 public function enableModuleContentVersion() {
112 return true;
113 }
114 }
115
116 class ResourceLoaderFileModuleTestModule extends ResourceLoaderFileModule {
117 }