wiki.techinc.nl/tests/phpunit/unit/includes/libs/Stats/StatsFactoryTest.php
Cole White 6772d2c969 stats: remove static labels feature
The feature was included presuming the PerDbNameStatsdDataFactory
was a required use case.

Static labels supported a use case that we no longer consider good
practice and was likely bug-ridden.

For more information, see linked bug.

Bug: T359436
Change-Id: I60c497727fdae493c3bb18de3bd1a4db338132cc
2024-04-04 14:39:41 +00:00

88 lines
2.7 KiB
PHP

<?php
namespace Wikimedia\Tests\Stats;
use InvalidArgumentException;
use PHPUnit\Framework\TestCase;
use Wikimedia\Stats\Exceptions\UnsupportedFormatException;
use Wikimedia\Stats\Metrics\CounterMetric;
use Wikimedia\Stats\Metrics\GaugeMetric;
use Wikimedia\Stats\Metrics\NullMetric;
use Wikimedia\Stats\Metrics\TimingMetric;
use Wikimedia\Stats\OutputFormats;
use Wikimedia\Stats\StatsCache;
use Wikimedia\Stats\StatsFactory;
use Wikimedia\Stats\StatsUtils;
/**
* @covers \Wikimedia\Stats\StatsFactory
* @covers \Wikimedia\Stats\StatsUtils
*/
class StatsFactoryTest extends TestCase {
public function testGetCounter() {
$m = StatsFactory::newNull();
$this->assertInstanceOf( CounterMetric::class, $m->getCounter( 'test' ) );
}
public function testGetGauge() {
$m = StatsFactory::newNull();
$this->assertInstanceOf( GaugeMetric::class, $m->getGauge( 'test' ) );
}
public function testGetTiming() {
$m = StatsFactory::newNull();
$this->assertInstanceOf( TimingMetric::class, $m->getTiming( 'test' ) );
}
public function testUnsupportedOutputFormat() {
$this->expectException( UnsupportedFormatException::class );
OutputFormats::getNewFormatter( 999 );
}
public function testEmptyPrefix() {
$this->expectException( InvalidArgumentException::class );
OutputFormats::getNewEmitter( '', new StatsCache, OutputFormats::getNewFormatter( OutputFormats::STATSD ), '' );
}
public function testUnsetNameConfig() {
$m = StatsFactory::newNull();
$this->expectException( InvalidArgumentException::class );
$m->getCounter( '' );
}
public function testNormalizeString() {
$this->assertEquals(
'new_metric_and_things',
StatsUtils::normalizeString( 'new metric @#&^and *-&-*things-*&-*!@#&^%#$' )
);
}
public function testNormalizeArray() {
$this->assertEquals(
[ 'new_test_metric', 'another_new_test_metric' ],
StatsUtils::normalizeArray( [ 'new.test|metric', 'another$new-test_metric' ] )
);
}
public function testGetNullMetricWithLabelMismatch() {
$m = StatsFactory::newNull();
// initialize a counter and add a sample
$m->getCounter( 'test_metric' )->setLabel( 'a', 'a' )->increment();
// get the same counter and attempt to add a different label key
$metric = @$m->getCounter( 'test_metric' )->setLabel( 'b', 'b' );
$this->assertInstanceOf( NullMetric::class, $metric );
}
public function testGetNullMetricOnNameCollision() {
$m = StatsFactory::newNull();
// define metric as counter 'test'
$m->getCounter( 'test' );
// redefine metric as timing 'test'
$metric = @$m->getTiming( 'test' );
// gauge response must be null metric
$this->assertInstanceOf( NullMetric::class, $metric );
// NullMetric should not throw for any method call
$metric->increment();
}
}