Files
roundcubemail/tests/Browser/Mail/GetunreadTest.php
Michael Voříšek 8c82b29baf Assert expected data types in tests (#9268)
* fix test skips for local testing

* fix Actions_Mail_Search tests when run /w non-UTC default TZ

* improve tests before PHP CS Fixer is run

* fix "php_unit_strict"
2023-12-17 15:03:08 +01:00

42 lines
1.1 KiB
PHP

<?php
namespace Tests\Browser\Mail;
class GetunreadTest extends \Tests\Browser\TestCase
{
protected static $msgcount = 0;
public static function setUpBeforeClass(): void
{
\bootstrap::init_imap(true);
\bootstrap::purge_mailbox('INBOX');
// import email messages
foreach (glob(TESTS_DIR . 'data/mail/list_??.eml') as $f) {
\bootstrap::import_message($f, 'INBOX');
self::$msgcount++;
}
}
public function testGetunread()
{
$this->browse(function ($browser) {
$browser->go('mail');
$browser->waitFor('#messagelist tbody tr');
// Messages list state
$browser->assertElementsCount('#messagelist tbody tr.unread', self::$msgcount);
if (!$browser->isDesktop()) {
$browser->click('.back-sidebar-button');
}
// Folders list state
$browser->assertVisible('.folderlist li.inbox.unread');
$this->assertSame(strval(self::$msgcount), $browser->text('.folderlist li.inbox span.unreadcount'));
});
}
}