You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
PHP
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()
|
|
{
|
|
\bootstrap::init_imap();
|
|
\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->assertEquals(strval(self::$msgcount), $browser->text('.folderlist li.inbox span.unreadcount'));
|
|
});
|
|
}
|
|
}
|