mediawiki-extensions-Echo/tests/phpunit/Formatters/EchoPresentationModelSectionTest.php
Umherirrender 039e2d2962 Replace deprecated Language::factory
Bug: T325986
Change-Id: Ibeb4af25184dc09a735f4f67457ab72a4139c25d
2022-12-28 20:19:01 +01:00

87 lines
2.7 KiB
PHP

<?php
use MediaWiki\Extension\Notifications\Formatters\EchoPresentationModelSection;
use MediaWiki\Extension\Notifications\Model\Event;
/**
* @covers \MediaWiki\Extension\Notifications\Formatters\EchoPresentationModelSection
* @group Database
*/
class EchoPresentationModelSectionTest extends MediaWikiIntegrationTestCase {
public function testGetTruncatedSectionTitle_short() {
$lang = $this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' );
$section = new EchoPresentationModelSection(
$this->makeEvent( [ 'event_extra' => serialize( [ 'section-title' => 'asdf' ] ) ] ),
$this->getTestUser()->getUser(),
$lang
);
$this->assertEquals( $lang->embedBidi( 'asdf' ), $section->getTruncatedSectionTitle() );
}
public function testGetTruncatedSectionTitle_long() {
$lang = $this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' );
$section = new EchoPresentationModelSection(
$this->makeEvent( [ 'event_extra' => serialize( [ 'section-title' => str_repeat( 'a', 100 ) ] ) ] ),
$this->getTestUser()->getUser(),
$lang
);
$this->assertEquals(
$lang->embedBidi( str_repeat( 'a', 50 ) . '...' ),
$section->getTruncatedSectionTitle()
);
}
public function testGetTitleWithSection() {
$page = $this->getExistingTestPage();
$section = new EchoPresentationModelSection(
$this->makeEvent( [
'event_page_id' => $page->getId(),
'event_extra' => serialize( [ 'section-title' => 'asdf' ] ),
] ),
$this->getTestUser()->getUser(),
$this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' )
);
$titleWithSection = $section->getTitleWithSection();
$this->assertEquals( 'asdf', $titleWithSection->getFragment() );
$this->assertEquals( $page->getTitle()->getPrefixedText(), $titleWithSection->getPrefixedText() );
}
public function testExists_no() {
$section = new EchoPresentationModelSection(
$this->makeEvent(),
$this->getTestUser()->getUser(),
$this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' )
);
$this->assertFalse( $section->exists() );
}
public function testExists_yes() {
$section = new EchoPresentationModelSection(
$this->makeEvent( [ 'event_extra' => serialize( [ 'section-title' => 'asdf' ] ) ] ),
$this->getTestUser()->getUser(),
$this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' )
);
$this->assertTrue( $section->exists() );
}
private function makeEvent( $config = [] ) {
$agent = $this->getTestSysop()->getUser();
return Event::newFromRow( (object)array_merge( [
'event_id' => 12,
'event_type' => 'welcome',
'event_variant' => '1',
'event_page_id' => 1,
'event_deleted' => 0,
'event_agent_id' => $agent->getId(),
'event_extra' => '',
], $config ) );
}
}