Files
roundcubemail/tests/Browser/Settings/SettingsTest.php
2024-06-05 07:46:51 +02:00

35 lines
1.0 KiB
PHP

<?php
namespace Roundcube\Tests\Browser\Settings;
use Roundcube\Tests\Browser\Components\App;
use Roundcube\Tests\Browser\TestCase;
class SettingsTest extends TestCase
{
public function testSettings()
{
$this->browse(static function ($browser) {
$browser->go('settings');
// task should be set to 'settings'
$browser->with(new App(), static function ($browser) {
$browser->assertEnv('task', 'settings');
});
$browser->assertSeeIn('#layout-sidebar .header', 'Settings');
// Sidebar menu
$browser->with('#settings-menu', static function ($browser) {
$browser->assertSeeIn('li.preferences', 'Preferences');
$browser->assertSeeIn('li.folders', 'Folders');
$browser->assertSeeIn('li.identities', 'Identities');
$browser->assertSeeIn('li.responses', 'Responses');
});
// Task menu
$browser->assertTaskMenu('settings');
});
}
}