Merge "Clean up zh-tw.json"
[lhc/web/wiklou.git] / tests / phpunit / includes / debug / logger / monolog / AvroFormatterTest.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 namespace MediaWiki\Logger\Monolog;
22
23 use MediaWikiTestCase;
24 use PHPUnit_Framework_Error_Notice;
25
26 class AvroFormatterTest extends MediaWikiTestCase {
27
28 protected function setUp() {
29 if ( !class_exists( 'AvroStringIO' ) ) {
30 $this->markTestSkipped( 'Avro is required for the AvroFormatterTest' );
31 }
32 parent::setUp();
33 }
34
35 public function testSchemaNotAvailable() {
36 $formatter = new AvroFormatter( array() );
37 $this->setExpectedException(
38 'PHPUnit_Framework_Error_Notice',
39 "The schema for channel 'marty' is not available"
40 );
41 $formatter->format( array( 'channel' => 'marty' ) );
42 }
43
44 public function testSchemaNotAvailableReturnValue() {
45 $formatter = new AvroFormatter( array() );
46 $noticeEnabled = PHPUnit_Framework_Error_Notice::$enabled;
47 // disable conversion of notices
48 PHPUnit_Framework_Error_Notice::$enabled = false;
49 // have to keep the user notice from being output
50 wfSuppressWarnings();
51 $res = $formatter->format( array( 'channel' => 'marty' ) );
52 wfRestoreWarnings();
53 PHPUnit_Framework_Error_Notice::$enabled = $noticeEnabled;
54 $this->assertNull( $res );
55 }
56
57 public function testDoesSomethingWhenSchemaAvailable() {
58 $formatter = new AvroFormatter( array( 'string' => array( 'type' => 'string' ) ) );
59 $res = $formatter->format( array(
60 'channel' => 'string',
61 'context' => 'better to be',
62 ) );
63 $this->assertNotNull( $res );
64 // basically just tell us if avro changes its string encoding
65 $this->assertEquals( base64_decode( 'GGJldHRlciB0byBiZQ==' ), $res );
66 }
67 }