markTestSkipped( 'This test requires monolog to be installed' ); } parent::setUp(); } /** * @covers MediaWiki\Logger\Monolog\LineFormatter::normalizeException */ public function testNormalizeExceptionNoTrace() { $fixture = new LineFormatter(); $fixture->includeStacktraces( false ); $fixture = TestingAccessWrapper::newFromObject( $fixture ); $boom = new InvalidArgumentException( 'boom', 0, new LengthException( 'too long', 0, new LogicException( 'Spock wuz here' ) ) ); $out = $fixture->normalizeException( $boom ); $this->assertContains( "\n[Exception InvalidArgumentException]", $out ); $this->assertContains( "\nCaused by: [Exception LengthException]", $out ); $this->assertContains( "\nCaused by: [Exception LogicException]", $out ); $this->assertNotContains( "\n #0", $out ); } /** * @covers MediaWiki\Logger\Monolog\LineFormatter::normalizeException */ public function testNormalizeExceptionTrace() { $fixture = new LineFormatter(); $fixture->includeStacktraces( true ); $fixture = TestingAccessWrapper::newFromObject( $fixture ); $boom = new InvalidArgumentException( 'boom', 0, new LengthException( 'too long', 0, new LogicException( 'Spock wuz here' ) ) ); $out = $fixture->normalizeException( $boom ); $this->assertContains( "\n[Exception InvalidArgumentException]", $out ); $this->assertContains( "\nCaused by: [Exception LengthException]", $out ); $this->assertContains( "\nCaused by: [Exception LogicException]", $out ); $this->assertContains( "\n #0", $out ); } /** * @covers MediaWiki\Logger\Monolog\LineFormatter::normalizeException */ public function testNormalizeExceptionErrorNoTrace() { if ( !class_exists( AssertionError::class ) ) { $this->markTestSkipped( 'AssertionError class does not exist' ); } $fixture = new LineFormatter(); $fixture->includeStacktraces( false ); $fixture = TestingAccessWrapper::newFromObject( $fixture ); $boom = new InvalidArgumentException( 'boom', 0, new LengthException( 'too long', 0, new AssertionError( 'Spock wuz here' ) ) ); $out = $fixture->normalizeException( $boom ); $this->assertContains( "\n[Exception InvalidArgumentException]", $out ); $this->assertContains( "\nCaused by: [Exception LengthException]", $out ); $this->assertContains( "\nCaused by: [Error AssertionError]", $out ); $this->assertNotContains( "\n #0", $out ); } /** * @covers MediaWiki\Logger\Monolog\LineFormatter::normalizeException */ public function testNormalizeExceptionErrorTrace() { if ( !class_exists( AssertionError::class ) ) { $this->markTestSkipped( 'AssertionError class does not exist' ); } $fixture = new LineFormatter(); $fixture->includeStacktraces( true ); $fixture = TestingAccessWrapper::newFromObject( $fixture ); $boom = new InvalidArgumentException( 'boom', 0, new LengthException( 'too long', 0, new AssertionError( 'Spock wuz here' ) ) ); $out = $fixture->normalizeException( $boom ); $this->assertContains( "\n[Exception InvalidArgumentException]", $out ); $this->assertContains( "\nCaused by: [Exception LengthException]", $out ); $this->assertContains( "\nCaused by: [Error AssertionError]", $out ); $this->assertContains( "\n #0", $out ); } }