MediaWiki  1.30.0
TransactionProfilerTest.php
Go to the documentation of this file.
1 <?php
2 
4 use Psr\Log\LoggerInterface;
5 
6 class TransactionProfilerTest extends PHPUnit_Framework_TestCase {
7  public function testAffected() {
8  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
9  $logger->expects( $this->exactly( 3 ) )->method( 'info' );
10 
11  $tp = new TransactionProfiler();
12  $tp->setLogger( $logger );
13  $tp->setExpectation( 'maxAffected', 100, __METHOD__ );
14 
15  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
16  $tp->recordQueryCompletion( "SQL 1", microtime( true ) - 3, true, 200 );
17  $tp->recordQueryCompletion( "SQL 2", microtime( true ) - 3, true, 200 );
18  $tp->transactionWritingOut( 'srv1', 'db1', '123', 1, 400 );
19  }
20 
21  public function testReadTime() {
22  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
23  // 1 per query
24  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
25 
26  $tp = new TransactionProfiler();
27  $tp->setLogger( $logger );
28  $tp->setExpectation( 'readQueryTime', 5, __METHOD__ );
29 
30  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
31  $tp->recordQueryCompletion( "SQL 1", microtime( true ) - 10, false, 1 );
32  $tp->recordQueryCompletion( "SQL 2", microtime( true ) - 10, false, 1 );
33  $tp->transactionWritingOut( 'srv1', 'db1', '123', 0, 0 );
34  }
35 
36  public function testWriteTime() {
37  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
38  // 1 per query, 1 per trx, and one "sub-optimal trx" entry
39  $logger->expects( $this->exactly( 4 ) )->method( 'info' );
40 
41  $tp = new TransactionProfiler();
42  $tp->setLogger( $logger );
43  $tp->setExpectation( 'writeQueryTime', 5, __METHOD__ );
44 
45  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
46  $tp->recordQueryCompletion( "SQL 1", microtime( true ) - 10, true, 1 );
47  $tp->recordQueryCompletion( "SQL 2", microtime( true ) - 10, true, 1 );
48  $tp->transactionWritingOut( 'srv1', 'db1', '123', 20, 1 );
49  }
50 
51  public function testAffectedTrx() {
52  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
53  $logger->expects( $this->exactly( 1 ) )->method( 'info' );
54 
55  $tp = new TransactionProfiler();
56  $tp->setLogger( $logger );
57  $tp->setExpectation( 'maxAffected', 100, __METHOD__ );
58 
59  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
60  $tp->transactionWritingOut( 'srv1', 'db1', '123', 1, 200 );
61  }
62 
63  public function testWriteTimeTrx() {
64  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
65  // 1 per trx, and one "sub-optimal trx" entry
66  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
67 
68  $tp = new TransactionProfiler();
69  $tp->setLogger( $logger );
70  $tp->setExpectation( 'writeQueryTime', 5, __METHOD__ );
71 
72  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
73  $tp->transactionWritingOut( 'srv1', 'db1', '123', 10, 1 );
74  }
75 
76  public function testConns() {
77  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
78  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
79 
80  $tp = new TransactionProfiler();
81  $tp->setLogger( $logger );
82  $tp->setExpectation( 'conns', 2, __METHOD__ );
83 
84  $tp->recordConnection( 'srv1', 'db1', false );
85  $tp->recordConnection( 'srv1', 'db2', false );
86  $tp->recordConnection( 'srv1', 'db3', false ); // warn
87  $tp->recordConnection( 'srv1', 'db4', false ); // warn
88  }
89 
90  public function testMasterConns() {
91  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
92  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
93 
94  $tp = new TransactionProfiler();
95  $tp->setLogger( $logger );
96  $tp->setExpectation( 'masterConns', 2, __METHOD__ );
97 
98  $tp->recordConnection( 'srv1', 'db1', false );
99  $tp->recordConnection( 'srv1', 'db2', false );
100 
101  $tp->recordConnection( 'srv1', 'db1', true );
102  $tp->recordConnection( 'srv1', 'db2', true );
103  $tp->recordConnection( 'srv1', 'db3', true ); // warn
104  $tp->recordConnection( 'srv1', 'db4', true ); // warn
105  }
106 
107  public function testReadQueryCount() {
108  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
109  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
110 
111  $tp = new TransactionProfiler();
112  $tp->setLogger( $logger );
113  $tp->setExpectation( 'queries', 2, __METHOD__ );
114 
115  $tp->recordQueryCompletion( "SQL 1", microtime( true ) - 0.01, false, 0 );
116  $tp->recordQueryCompletion( "SQL 2", microtime( true ) - 0.01, false, 0 );
117  $tp->recordQueryCompletion( "SQL 3", microtime( true ) - 0.01, false, 0 ); // warn
118  $tp->recordQueryCompletion( "SQL 4", microtime( true ) - 0.01, false, 0 ); // warn
119  }
120 
121  public function testWriteQueryCount() {
122  $logger = $this->getMockBuilder( LoggerInterface::class )->getMock();
123  $logger->expects( $this->exactly( 2 ) )->method( 'info' );
124 
125  $tp = new TransactionProfiler();
126  $tp->setLogger( $logger );
127  $tp->setExpectation( 'writes', 2, __METHOD__ );
128 
129  $tp->recordQueryCompletion( "SQL 1", microtime( true ) - 0.01, false, 0 );
130  $tp->recordQueryCompletion( "SQL 2", microtime( true ) - 0.01, false, 0 );
131  $tp->recordQueryCompletion( "SQL 3", microtime( true ) - 0.01, false, 0 );
132  $tp->recordQueryCompletion( "SQL 4", microtime( true ) - 0.01, false, 0 );
133 
134  $tp->transactionWritingIn( 'srv1', 'db1', '123' );
135  $tp->recordQueryCompletion( "SQL 1w", microtime( true ) - 0.01, true, 2 );
136  $tp->recordQueryCompletion( "SQL 2w", microtime( true ) - 0.01, true, 5 );
137  $tp->recordQueryCompletion( "SQL 3w", microtime( true ) - 0.01, true, 3 );
138  $tp->recordQueryCompletion( "SQL 4w", microtime( true ) - 0.01, true, 1 );
139  $tp->transactionWritingOut( 'srv1', 'db1', '123', 1, 1 );
140  }
141 }
TransactionProfilerTest\testReadQueryCount
testReadQueryCount()
Definition: TransactionProfilerTest.php:107
TransactionProfilerTest\testWriteTime
testWriteTime()
Definition: TransactionProfilerTest.php:36
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
TransactionProfilerTest\testAffectedTrx
testAffectedTrx()
Definition: TransactionProfilerTest.php:51
TransactionProfilerTest\testMasterConns
testMasterConns()
Definition: TransactionProfilerTest.php:90
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
TransactionProfilerTest\testReadTime
testReadTime()
Definition: TransactionProfilerTest.php:21
TransactionProfilerTest
Definition: TransactionProfilerTest.php:6
TransactionProfilerTest\testAffected
testAffected()
Definition: TransactionProfilerTest.php:7
TransactionProfilerTest\testWriteQueryCount
testWriteQueryCount()
Definition: TransactionProfilerTest.php:121
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
TransactionProfilerTest\testWriteTimeTrx
testWriteTimeTrx()
Definition: TransactionProfilerTest.php:63
TransactionProfilerTest\testConns
testConns()
Definition: TransactionProfilerTest.php:76
Wikimedia\Rdbms\TransactionProfiler
Helper class that detects high-contention DB queries via profiling calls.
Definition: TransactionProfiler.php:38