1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
<?php
namespace MediaWiki\Tests\Integration\Permissions;
use Liuggio\StatsdClient\Entity\StatsdData;
use Liuggio\StatsdClient\Entity\StatsdDataInterface;
use MediaWiki\Config\ServiceOptions;
use MediaWiki\MainConfigNames;
use MediaWiki\Permissions\RateLimiter;
use MediaWiki\Permissions\RateLimitSubject;
use MediaWiki\User\CentralId\CentralIdLookup;
use MediaWiki\User\UserIdentity;
use MediaWiki\User\UserIdentityValue;
use MediaWikiIntegrationTestCase;
use PHPUnit\Framework\MockObject\MockObject;
use Wikimedia\ObjectCache\HashBagOStuff;
use Wikimedia\Stats\BufferingStatsdDataFactory;
use Wikimedia\TestingAccessWrapper;
use Wikimedia\WRStats\BagOStuffStatsStore;
use Wikimedia\WRStats\WRStatsFactory;
/**
* @covers \MediaWiki\Permissions\RateLimiter
* @group Database
*/
class RateLimiterTest extends MediaWikiIntegrationTestCase {
/**
* @return MockObject|CentralIdLookup
*/
private function getMockContralIdProvider() {
$mockCentralIdLookup = $this->createNoOpMock(
CentralIdLookup::class,
[ 'centralIdFromLocalUser', 'getProviderId' ]
);
$mockCentralIdLookup->method( 'centralIdFromLocalUser' )
->willReturnCallback( static function ( UserIdentity $user ) {
return $user->getId() % 100;
} );
$mockCentralIdLookup->method( 'getProviderId' )
->willReturn( 'test' );
return $mockCentralIdLookup;
}
/**
* @covers \Wikimedia\WRStats\WRStatsFactory
* @covers \Wikimedia\WRStats\BagOStuffStatsStore
*/
public function testPingLimiterGlobal() {
$limits = [
'read' => [ // not limitable, will be ignored
'anon' => [ 1, 60 ],
],
'edit' => [
'anon' => [ 1, 60 ],
],
'purge' => [
'ip' => [ 1, 60 ],
'subnet' => [ 1, 60 ],
],
'rollback' => [
'user' => [ 1, 60 ],
],
'move' => [
'user-global' => [ 1, 60 ],
],
'delete' => [
'ip-all' => [ 1, 60 ],
'subnet-all' => [ 1, 60 ],
],
];
// Set up a fake cache for storing limits
$cache = new HashBagOStuff( [ 'keyspace' => 'xwiki' ] );
$cacheAccess = TestingAccessWrapper::newFromObject( $cache );
$cacheAccess->keyspace = 'xwiki';
$statsFactory = new WRStatsFactory( new BagOStuffStatsStore( $cache ) );
$stats = new BufferingStatsdDataFactory( 'test.' );
$limiter = $this->newRateLimiter( $limits, [], $statsFactory );
$limiter->setStats( $stats );
// Set up some fake users
$anon1 = $this->newFakeAnon( '1.2.3.4' );
$anon2 = $this->newFakeAnon( '1.2.3.8' );
$anon3 = $this->newFakeAnon( '6.7.8.9' );
$anon4 = $this->newFakeAnon( '6.7.8.1' );
// The mock ContralIdProvider uses the local id MOD 10 as the global ID.
// So Frank has global ID 11, and Jane has global ID 56.
// Kara's global ID is 0, which means no global ID.
$frankX1 = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
$frankX2 = $this->newFakeUser( 'Frank', '1.2.3.8', 111 );
$frankY1 = $this->newFakeUser( 'Frank', '1.2.3.4', 211 );
$janeX1 = $this->newFakeUser( 'Jane', '1.2.3.4', 456 );
$janeX3 = $this->newFakeUser( 'Jane', '6.7.8.9', 456 );
$janeY1 = $this->newFakeUser( 'Jane', '1.2.3.4', 756 );
$karaX1 = $this->newFakeUser( 'Kara', '5.5.5.5', 100 );
$karaY1 = $this->newFakeUser( 'Kara', '5.5.5.5', 200 );
// Test limits on wiki X
$this->assertFalse( $limiter->limit( $anon1, 'read' ), 'First anon read' );
$this->assertFalse( $limiter->limit( $anon2, 'read' ), 'Second anon read (should ignore any limits)' );
$this->assertFalse( $limiter->limit( $anon1, 'edit' ), 'First anon edit' );
$this->assertTrue( $limiter->limit( $anon2, 'edit' ), 'Second anon edit' );
$this->assertFalse( $limiter->limit( $anon1, 'purge' ), 'Anon purge' );
$this->assertTrue( $limiter->limit( $anon1, 'purge' ), 'Anon purge via same IP' );
$this->assertFalse( $limiter->limit( $anon3, 'purge' ), 'Anon purge via different subnet' );
$this->assertTrue( $limiter->limit( $anon2, 'purge' ), 'Anon purge via same subnet' );
$this->assertFalse( $limiter->limit( $frankX1, 'rollback' ), 'First rollback' );
$this->assertTrue( $limiter->limit( $frankX2, 'rollback' ), 'Second rollback via different IP' );
$this->assertFalse( $limiter->limit( $janeX1, 'rollback' ), 'Rlbk by different user, same IP' );
$this->assertFalse( $limiter->limit( $frankX1, 'move' ), 'First move' );
$this->assertTrue( $limiter->limit( $frankX2, 'move' ), 'Second move via different IP' );
$this->assertFalse( $limiter->limit( $janeX1, 'move' ), 'Move by different user, same IP' );
$this->assertFalse( $limiter->limit( $karaX1, 'move' ), 'Move by another user' );
$this->assertTrue( $limiter->limit( $karaX1, 'move' ), 'Second move by another user' );
$this->assertFalse( $limiter->limit( $frankX1, 'delete' ), 'First delete' );
$this->assertTrue( $limiter->limit( $janeX1, 'delete' ), 'Delete via same IP' );
$this->assertTrue( $limiter->limit( $frankX2, 'delete' ), 'Delete via same subnet' );
$this->assertFalse( $limiter->limit( $janeX3, 'delete' ), 'Delete via different subnet' );
// Now test how limits carry over to wiki Y
$cacheAccess->keyspace = 'ywiki';
$this->assertFalse( $limiter->limit( $anon3, 'edit' ), 'Anon edit on wiki Y' );
$this->assertTrue( $limiter->limit( $anon4, 'purge' ), 'Anon purge on wiki Y, same subnet' );
$this->assertFalse( $limiter->limit( $frankY1, 'rollback' ), 'Rollback on wiki Y, same name' );
$this->assertTrue( $limiter->limit( $frankY1, 'move' ), 'Move on wiki Y, same name' );
$this->assertTrue( $limiter->limit( $janeY1, 'move' ), 'Move on wiki Y, different user' );
$this->assertTrue( $limiter->limit( $frankY1, 'delete' ), 'Delete on wiki Y, same IP' );
// For a user without a global ID, user-global acts as a local restriction
$this->assertFalse( $limiter->limit( $karaY1, 'move' ), 'Move by another user' );
$this->assertTrue( $limiter->limit( $karaY1, 'move' ), 'Second move by another user' );
// Check stats entries for conditions
$statsData = $stats->getData();
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.tripped_by.anon', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.purge.tripped_by.ip', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.purge.tripped_by.subnet', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.delete.tripped_by.ip_all', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.delete.tripped_by.subnet_all', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.rollback.tripped_by.user', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.move.tripped_by.user_global', 1, $statsData );
}
public function testPingLimiterWithStaleCache() {
$limits = [
'edit' => [
'user' => [ 1, 60 ],
],
];
$bagTime = 1600000000.0;
$appTime = 1600000000;
$bag = new HashBagOStuff();
$statsFactory = new WRStatsFactory( new BagOStuffStatsStore( $bag ) );
$statsFactory->setCurrentTime( $appTime );
$bag->setMockTime( $bagTime ); // this is a reference!
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
$limiter = $this->newRateLimiter( $limits, [], $statsFactory );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'limit not reached' );
$this->assertTrue( $limiter->limit( $user, 'edit' ), 'limit reached' );
// Make it so that rate limits are expired according to MWTimestamp::time(),
// but not according to $cache->getCurrentTime(), emulating the conditions
// that trigger T246991.
$bagTime += 10;
$statsFactory->setCurrentTime( $appTime += 100 );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'limit expired' );
$this->assertTrue( $limiter->limit( $user, 'edit' ), 'limit functional after expiry' );
}
public function testPingLimiterRate() {
$limits = [
'edit' => [
'user' => [ 3, 60 ],
],
];
$fakeTime = 1600000000;
$cache = new HashBagOStuff();
$cache->setMockTime( $fakeTime ); // this is a reference!
$statsFactory = new WRStatsFactory( new BagOStuffStatsStore( $cache ) );
$statsFactory->setCurrentTime( $fakeTime );
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
$limiter = $this->newRateLimiter( $limits, [], $statsFactory );
// The limit is 3 per 60 second. Do 5 edits at an emulated 50 second interval.
// They should all pass. This tests that the counter doesn't just keeps increasing
// but gets reset in an appropriate way.
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'first ping should pass' );
$statsFactory->setCurrentTime( $fakeTime += 50 );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'second ping should pass' );
$statsFactory->setCurrentTime( $fakeTime += 50 );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'third ping should pass' );
$statsFactory->setCurrentTime( $fakeTime += 50 );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'fourth ping should pass' );
$statsFactory->setCurrentTime( $fakeTime += 50 );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'fifth ping should pass' );
}
public function testPingLimiterHook() {
$limits = [
'edit' => [
'user' => [ 3, 60 ],
],
];
$stats = new BufferingStatsdDataFactory( 'test.' );
$user = $this->newFakeUser( 'Frank', '1.2.3.4', 111 );
$limiter = $this->newRateLimiter( $limits, [] );
$limiter->setStats( $stats );
// Hook leaves $result false
$this->setTemporaryHook(
'PingLimiter',
static function ( &$user, $action, &$result, $incrBy ) {
return false;
}
);
$this->assertFalse(
$limiter->limit( $user, 'edit' ),
'Hooks that just return false leave $result false'
);
$this->removeTemporaryHook( 'PingLimiter' );
// Hook sets $result to true
$this->setTemporaryHook(
'PingLimiter',
static function ( &$user, $action, &$result, $incrBy ) {
$result = true;
return false;
}
);
$this->assertTrue(
$limiter->limit( $user, 'edit' ),
'Hooks can set $result to true'
);
$this->assertFalse(
$limiter->limit( $user, 'read' ),
'The "read" permission will bypass the hook'
);
$this->removeTemporaryHook( 'PingLimiter' );
// Unknown action
$this->assertFalse(
$limiter->limit( $user, 'FakeActionWithNoRateLimit' ),
'Actions with no rate limit set do not trip the rate limiter'
);
$statsData = $stats->getData();
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.passed_by_hook', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.tripped_by_hook', 1, $statsData );
$this->assertStatsNotHasCount( 'test.RateLimiter.limit.edit.result.passed', $statsData );
$this->assertStatsNotHasCount( 'test.RateLimiter.limit.edit.result.tripped', $statsData );
}
public function testIsLimitableAction() {
$limits = [
'read' => [ // will be ignored, because 'read' is non-limitable
'user' => [ 3, 60 ],
],
'edit' => [
'user' => [ 3, 60 ],
],
];
$limiter = $this->newRateLimiter( $limits, [] );
$this->assertTrue( $limiter->isLimitable( 'edit' ), 'edit should be limitable' );
$this->assertFalse( $limiter->isLimitable( 'read' ), 'read should be non-limitable' );
$this->assertFalse( $limiter->isLimitable( 'move' ), 'move should not be limited' );
// Set the hook!
$this->setTemporaryHook(
'PingLimiter',
static function () {
// no-op
}
);
$this->assertTrue( $limiter->isLimitable( 'edit' ), 'edit should be limitable' );
$this->assertFalse( $limiter->isLimitable( 'read' ), 'read should be non-limitable' );
$this->assertTrue( $limiter->isLimitable( 'move' ), 'move should be limitable because of hook' );
}
public static function provideIsExempt() {
$user = new UserIdentityValue( 123, 'Foo' );
yield 'IP not excluded'
=> [ [], new RateLimitSubject( $user, '1.2.3.4', [] ), false ];
yield 'IP excluded'
=> [ [ '1.2.3.4' ], new RateLimitSubject( $user, '1.2.3.4', [] ), true ];
yield 'IP subnet excluded'
=> [ [ '1.2.3.0/8' ], new RateLimitSubject( $user, '1.2.3.4', [] ), true ];
$flags = [ RateLimitSubject::EXEMPT => true ];
yield 'noratelimit right'
=> [ [], new RateLimitSubject( $user, '1.2.3.4', $flags ), true ];
}
/**
* @dataProvider provideIsExempt
*
* @param array $rateLimitExcludeIps
* @param RateLimitSubject $subject
* @param bool $expected
*/
public function testIsExempt(
array $rateLimitExcludeIps,
RateLimitSubject $subject,
bool $expected
) {
$limiter = $this->newRateLimiter( [], $rateLimitExcludeIps );
$this->assertSame( $expected, $limiter->isExempt( $subject ) );
}
private function newFakeAnon( string $ip ) {
return new RateLimitSubject(
new UserIdentityValue( 0, $ip ),
$ip,
[ RateLimitSubject::NEWBIE => true ]
);
}
private function newFakeUser( string $name, string $ip, int $id, $newbie = false ) {
return new RateLimitSubject(
new UserIdentityValue( $id, $name ),
$ip,
[ RateLimitSubject::NEWBIE => $newbie ]
);
}
/**
* @param array $limits
* @param array $excludedIPs
* @param WRStatsFactory|null $statsFactory
*
* @return RateLimiter
* @throws \Exception
*/
protected function newRateLimiter(
array $limits,
array $excludedIPs,
?WRStatsFactory $statsFactory = null
): RateLimiter {
$statsFactory ??= new WRStatsFactory( new BagOStuffStatsStore( new HashBagOStuff() ) );
$services = $this->getServiceContainer();
$limiter = new RateLimiter(
new ServiceOptions( RateLimiter::CONSTRUCTOR_OPTIONS, [
MainConfigNames::RateLimits => $limits,
MainConfigNames::RateLimitsExcludedIPs => $excludedIPs,
] ),
$statsFactory,
$this->getMockContralIdProvider(),
$services->getUserFactory(),
$services->getUserGroupManager(),
$services->getHookContainer()
);
return $limiter;
}
/**
* Test limit with different limit types:
* - newbie trips the 'user' limit when 'newbie' not set
* - newbie trips the 'ip' limit on shared IP when 'user' is set
*/
public function testLimitTypes() {
$limits = [
'edit' => [
'user' => [ 1, 60 ],
'ip' => [ 2, 60 ],
],
];
$newbie1 = $this->newFakeUser( 'User1', '127.0.0.1', 1, true );
$newbie2 = $this->newFakeUser( 'User2', '127.0.0.1', 2, true );
$newbie3 = $this->newFakeUser( 'User3', '127.0.0.1', 3, true );
$stats = new BufferingStatsdDataFactory( 'test.' );
$limiter = $this->newRateLimiter( $limits, [] );
$limiter->setStats( $stats );
$this->assertFalse( $limiter->limit( $newbie1, 'edit' ) );
$this->assertFalse( $limiter->limit( $newbie2, 'edit' ) );
$this->assertTrue( $limiter->limit( $newbie3, 'edit' ) );
$statsData = $stats->getData();
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.passed', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.tripped', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.tripped_by.ip', 1, $statsData );
}
/**
* Test limit when 'newbie' is set:
* - 'newbie' limit takes precedence over 'user' limit for newbie
* - newbie trips the 'ip' limit on a shared IP, when 'newbie' limit is set
*/
public function testLimitTypes_newbie() {
$limits = [
'edit' => [
'user' => [ 10, 60 ],
'newbie' => [ 1, 60 ],
'ip' => [ 1, 60 ],
],
];
$newbie1 = $this->newFakeUser( 'User1', '127.0.0.1', 1, true );
$newbie2 = $this->newFakeUser( 'User2', '127.0.0.1', 2, true );
$limiter = $this->newRateLimiter( $limits, [] );
$this->assertFalse( $limiter->limit( $newbie1, 'edit' ) );
$this->assertTrue( $limiter->limit( $newbie1, 'edit' ) );
$this->assertTrue( $limiter->limit( $newbie2, 'edit' ) );
}
/**
* Test that '&can-bypass' can be used to impose limits on users
* who are otherwise exempt from limits.
*/
public function testCanBypass() {
$limits = [
'edit' => [
'user' => [ 1, 60 ],
],
'delete' => [
'&can-bypass' => false,
'user' => [ 1, 60 ],
],
];
$user = new RateLimitSubject(
new UserIdentityValue( 7, 'Garth' ),
'127.0.0.1',
[ RateLimitSubject::EXEMPT => true ]
);
$stats = new BufferingStatsdDataFactory( 'test.' );
$limiter = $this->newRateLimiter( $limits, [] );
$limiter->setStats( $stats );
$this->assertFalse( $limiter->limit( $user, 'edit' ) );
$this->assertFalse( $limiter->limit( $user, 'delete' ) );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'bypass should be granted' );
$this->assertTrue( $limiter->limit( $user, 'delete' ), 'bypass should be denied' );
$statsData = $stats->getData();
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.exempt', 1, $statsData );
$this->assertStatsNotHasCount( 'test.RateLimiter.limit.delete.result.exempt', $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.delete.result.tripped', 1, $statsData );
}
/**
* Test that setting the increment to 0 causes the RateLimiter to operate in
* peek mode, checking a rate limit without setting it.
*
* Regression test for T381033.
*/
public function testPeek() {
$limits = [
'edit' => [
'user' => [ 1, 60 ],
],
];
$user = new RateLimitSubject( new UserIdentityValue( 7, 'Garth' ), '127.0.0.1', [] );
$limiter = $this->newRateLimiter( $limits, [] );
// initial peek should pass
$this->assertFalse( $limiter->limit( $user, 'edit', 0 ) );
// check that repeated peeking doesn't trigger the limit
$this->assertFalse( $limiter->limit( $user, 'edit', 0 ) );
// first increment should pass but trigger the limit
$this->assertFalse( $limiter->limit( $user, 'edit', 1 ) );
// peek should fail now
$this->assertTrue( $limiter->limit( $user, 'edit', 0 ) );
}
/**
* Test that the most permissive limit is used when a limit is defined for
* multiple groups a user belongs to.
*/
public function testGroupLimits() {
$limits = [
'edit' => [
'user' => [ 1, 60 ],
'autoconfirmed' => [ 2, 60 ],
],
];
$user = $this->getTestUser( [ 'autoconfirmed' ] )->getUser();
$user = new RateLimitSubject( $user, '127.0.0.1', [] );
$stats = new BufferingStatsdDataFactory( 'test.' );
$limiter = $this->newRateLimiter( $limits, [] );
$limiter->setStats( $stats );
$this->assertFalse( $limiter->limit( $user, 'edit' ) );
$this->assertFalse( $limiter->limit( $user, 'edit' ), 'limit for autoconfirmed used' );
$this->assertTrue( $limiter->limit( $user, 'edit' ), 'limit for autoconfirmed exceeded' );
$statsData = $stats->getData();
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.passed', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.result.tripped', 1, $statsData );
$this->assertStatsHasCount( 'test.RateLimiter.limit.edit.tripped_by.autoconfirmed', 1, $statsData );
}
/**
* @param string $key
* @param ?int $value
* @param StatsdData[] $statsData
*/
private function assertStatsHasCount( string $key, ?int $value, array $statsData ) {
$metric = StatsdDataInterface::STATSD_METRIC_COUNT;
foreach ( $statsData as $data ) {
if ( $data->getMetric() === $metric && $data->getValue() === $value && $data->getKey() == $key ) {
$this->addToAssertionCount( 1 );
return;
}
}
$this->fail( "Missing metric data entry: $key/$metric/$value" );
}
/**
* @param string $key
* @param StatsdData[] $statsData
*/
private function assertStatsNotHasCount( string $key, array $statsData ) {
$metric = StatsdDataInterface::STATSD_METRIC_COUNT;
foreach ( $statsData as $data ) {
if ( $data->getMetric() === $metric && $data->getKey() == $key ) {
$this->fail( "Metric data entry was not expected to be present: $key/$metric" );
}
}
$this->addToAssertionCount( 1 );
}
}
|