mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 01:21:20 +01:00
* Add PHPUnit 10.x and 11.x support * fix undefined TestCase::getName() for PHPUnit 10+ * Add PHPUnit attributes but keep annotations
158 lines
6.1 KiB
PHP
158 lines
6.1 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Browser\Settings;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use Roundcube\Tests\Browser\Bootstrap;
|
|
use Roundcube\Tests\Browser\Components\App;
|
|
use Roundcube\Tests\Browser\TestCase;
|
|
|
|
class FoldersTest extends TestCase
|
|
{
|
|
#[\Override]
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
Bootstrap::init_imap(true);
|
|
Bootstrap::reset_mailboxes();
|
|
}
|
|
|
|
/**
|
|
* Test Folders UI
|
|
*/
|
|
public function testFolders()
|
|
{
|
|
$this->browse(static function ($browser) {
|
|
$browser->go('settings', 'folders');
|
|
|
|
// task should be set to 'settings' and action to 'folders'
|
|
$browser->with(new App(), static function ($browser) {
|
|
$browser->assertEnv('task', 'settings');
|
|
$browser->assertEnv('action', 'folders');
|
|
|
|
// these objects should be there always
|
|
$browser->assertObjects(['quotadisplay', 'subscriptionlist']);
|
|
});
|
|
|
|
if ($browser->isDesktop()) {
|
|
$browser->assertVisible('#settings-menu li.folders.selected');
|
|
}
|
|
|
|
if ($browser->isPhone()) {
|
|
$browser->assertVisible('.floating-action-buttons a.create:not(.disabled)');
|
|
} else {
|
|
$browser->assertMissing('.floating-action-buttons a.create:not(.disabled)');
|
|
}
|
|
|
|
// Toolbar menu
|
|
$browser->assertToolbarMenu(['create'], ['delete', 'purge']);
|
|
|
|
// Folders list
|
|
$browser->with('#subscription-table', static function ($browser) {
|
|
// Note: first li element is root which is hidden in Elastic
|
|
$browser->assertHasClass('li:nth-child(2)', 'inbox')
|
|
->assertSeeIn('li:nth-child(2)', 'Inbox')
|
|
->assertPresent('li:nth-child(2) [type=checkbox][disabled]')
|
|
->assertHasClass('li:nth-child(3)', 'drafts')
|
|
->assertSeeIn('li:nth-child(3)', 'Drafts')
|
|
->assertPresent('li:nth-child(3) [type=checkbox][disabled]')
|
|
->assertHasClass('li:nth-child(4)', 'sent')
|
|
->assertSeeIn('li:nth-child(4)', 'Sent')
|
|
->assertPresent('li:nth-child(4) [type=checkbox][disabled]')
|
|
->assertHasClass('li:nth-child(5)', 'junk')
|
|
->assertSeeIn('li:nth-child(5)', 'Junk')
|
|
->assertPresent('li:nth-child(5) [type=checkbox][disabled]')
|
|
->assertHasClass('li:nth-child(6)', 'trash')
|
|
->assertSeeIn('li:nth-child(6)', 'Trash')
|
|
->assertPresent('li:nth-child(6) [type=checkbox][disabled]');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Test folder creation
|
|
*
|
|
* @group failsontravis-phone
|
|
* @group failsonga-phone
|
|
*/
|
|
#[Group('failsontravis-phone')]
|
|
#[Group('failsonga-phone')]
|
|
public function testFolderCreate()
|
|
{
|
|
$this->browse(static function ($browser) {
|
|
$browser->go('settings', 'folders');
|
|
|
|
$num = count($browser->elements('#subscription-table li'));
|
|
|
|
if ($browser->isPhone()) {
|
|
$browser->assertVisible('.floating-action-buttons a.create:not(.disabled)')
|
|
->click('.floating-action-buttons a.create')
|
|
->waitFor('#preferences-frame');
|
|
} else {
|
|
$browser->clickToolbarMenuItem('create');
|
|
}
|
|
|
|
$browser->withinFrame('#preferences-frame', static function ($browser) {
|
|
$browser->waitFor('form')
|
|
->with('form fieldset', static function ($browser) {
|
|
$browser->assertVisible('input[name=_name]')
|
|
->assertValue('input[name=_name]', '')
|
|
->assertVisible('select[name=_parent]')
|
|
->assertSelected('select[name=_parent]', '');
|
|
})
|
|
/*
|
|
->with('form fieldset:last-child', function ($browser) {
|
|
$browser->assertSeeIn('legend', 'Settings')
|
|
->assertVisible('select[name=_viewmode]')
|
|
->assertSelected('select[name=_viewmode]', '0');
|
|
})
|
|
*/
|
|
->type('input[name=_name]', 'Test');
|
|
|
|
if (!$browser->isPhone()) {
|
|
$browser->click('.formbuttons button.submit');
|
|
}
|
|
});
|
|
|
|
if ($browser->isPhone()) {
|
|
$browser->assertVisible('#layout-content .header a.back-list-button')
|
|
->assertVisible('#layout-content .footer .buttons a.button.submit')
|
|
->click('#layout-content .footer .buttons a.button.submit')
|
|
->waitFor('#subscription-table');
|
|
} else {
|
|
$browser->waitForMessage('confirmation', 'Folder created successfully.');
|
|
}
|
|
|
|
$browser->closeMessage('confirmation');
|
|
|
|
$num++;
|
|
|
|
// Folders list
|
|
$browser->with('#subscription-table', static function ($browser) use ($num) {
|
|
// Note: li.root is hidden in Elastic
|
|
$browser->waitFor("li.mailbox:nth-child({$num})")
|
|
->assertElementsCount('li', $num - 1)
|
|
->assertPresent("li.mailbox:nth-child({$num}) [type=checkbox]:not([disabled])")
|
|
->click("li.mailbox:nth-child({$num})");
|
|
});
|
|
|
|
if ($browser->isPhone()) {
|
|
$browser->waitFor('#preferences-frame');
|
|
}
|
|
|
|
$browser->withinFrame('#preferences-frame', static function ($browser) {
|
|
$browser->waitFor('form');
|
|
// TODO
|
|
});
|
|
|
|
// Test unsubscribe of the newly created folder
|
|
if ($browser->isPhone()) {
|
|
$browser->click('a.back-list-button')
|
|
->waitFor('#subscription-table');
|
|
}
|
|
|
|
$browser->setCheckboxState("#subscription-table li:nth-child({$num}) input", false)
|
|
->waitForMessage('confirmation', 'Folder successfully unsubscribed.');
|
|
});
|
|
}
|
|
}
|