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(); } public function testGetCacheCount() { $statsFactory = StatsFactory::newNull(); $i = 0; while ( $i < 10 ) { $statsFactory->getCounter( 'foo' )->incrementBy( 2 ); $statsFactory->getGauge( 'bar' )->set( $i ); $statsFactory->getTiming( 'baz' )->observe( 100 ); $i++; } $this->assertEquals( 30, $statsFactory->getCacheCount() ); } }