MediaWiki  1.29.1
TestLogger.php
Go to the documentation of this file.
1 <?php
26 use Psr\Log\LogLevel;
27 
34 class TestLogger extends \Psr\Log\AbstractLogger {
35  private $collect = false;
36  private $collectContext = false;
37  private $buffer = [];
38  private $filter = null;
39 
47  public function __construct( $collect = false, $filter = null, $collectContext = false ) {
48  $this->collect = $collect;
49  $this->collectContext = $collectContext;
50  $this->filter = $filter;
51  }
52 
58  public function setCollect( $collect ) {
59  $this->collect = $collect;
60  return $this;
61  }
62 
70  public function setCollectContext( $collectContext ) {
71  $this->collectContext = $collectContext;
72  return $this;
73  }
74 
80  public function getBuffer() {
81  return $this->buffer;
82  }
83 
87  public function clearBuffer() {
88  $this->buffer = [];
89  }
90 
91  public function log( $level, $message, array $context = [] ) {
92  $message = trim( $message );
93 
94  if ( $this->filter ) {
95  $message = call_user_func( $this->filter, $message, $level, $context );
96  if ( $message === null ) {
97  return;
98  }
99  }
100 
101  if ( $this->collect ) {
102  if ( $this->collectContext ) {
103  $this->buffer[] = [ $level, $message, $context ];
104  } else {
105  $this->buffer[] = [ $level, $message ];
106  }
107  } else {
108  switch ( $level ) {
109  case LogLevel::DEBUG:
110  case LogLevel::INFO:
111  case LogLevel::NOTICE:
112  trigger_error( "LOG[$level]: $message", E_USER_NOTICE );
113  break;
114 
115  case LogLevel::WARNING:
116  trigger_error( "LOG[$level]: $message", E_USER_WARNING );
117  break;
118 
119  case LogLevel::ERROR:
120  case LogLevel::CRITICAL:
121  case LogLevel::ALERT:
122  case LogLevel::EMERGENCY:
123  trigger_error( "LOG[$level]: $message", E_USER_ERROR );
124  break;
125  }
126  }
127  }
128 }
$context
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2612
TestLogger\$filter
$filter
Definition: TestLogger.php:38
TestLogger\getBuffer
getBuffer()
Return the collected logs.
Definition: TestLogger.php:80
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
TestLogger
A logger that may be configured to either buffer logs or to print them to the output where PHPUnit wi...
Definition: TestLogger.php:34
TestLogger\clearBuffer
clearBuffer()
Clear the collected log buffer.
Definition: TestLogger.php:87
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
TestLogger\$collect
$collect
Definition: TestLogger.php:35
TestLogger\$collectContext
$collectContext
Definition: TestLogger.php:36
TestLogger\setCollect
setCollect( $collect)
Set the "collect" flag.
Definition: TestLogger.php:58
TestLogger\setCollectContext
setCollectContext( $collectContext)
Set the collectContext flag.
Definition: TestLogger.php:70
TestLogger\__construct
__construct( $collect=false, $filter=null, $collectContext=false)
Definition: TestLogger.php:47
TestLogger\log
log( $level, $message, array $context=[])
Definition: TestLogger.php:91
TestLogger\$buffer
$buffer
Definition: TestLogger.php:37
array
the array() calling protocol came about after MediaWiki 1.4rc1.