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.
roundcubemail/tests/Browser/Mail/ComposeTest.php

134 lines
4.6 KiB
PHP

<?php
namespace Tests\Browser\Mail;
use Facebook\Webdriver\WebDriverKeys;
use Tests\Browser\Components\App;
use Tests\Browser\Components\HtmlEditor;
use Tests\Browser\Components\RecipientInput;
class ComposeTest extends \Tests\Browser\TestCase
{
public static function setUpBeforeClass()
{
\bootstrap::init_db();
}
public function testCompose()
{
$this->browse(function ($browser) {
$browser->go('mail');
$browser->clickTaskMenuItem('compose');
// check task and action
$browser->with(new App(), function ($browser) {
$browser->assertEnv('task', 'mail');
$browser->assertEnv('action', 'compose');
// these objects should be there always
$browser->assertObjects([
'qsearchbox',
'addressbookslist',
'contactslist',
'messageform',
'attachmentlist',
'filedrop',
'uploadform'
]);
});
// Toolbar menu
$browser->assertToolbarMenu(
['save.draft', 'responses', 'spellcheck'], // active items
['signature'], // inactive items
);
if ($browser->isPhone()) {
$browser->assertToolbarMenu(['options'], []);
}
else {
$browser->assertToolbarMenu(['attach'], []);
$browser->assertMissing('#toolbar-menu a.options');
}
// Task menu
$browser->assertTaskMenu('compose');
// Header inputs
$browser->assertVisible('#_from');
$browser->assertVisible('#compose-subject');
$browser->assertInputValue('#compose-subject', '');
// Mail body input
$browser->assertVisible('#composebodycontainer.html-editor');
$browser->assertVisible('#composebodycontainer > textarea');
if ($browser->isPhone()) {
$browser->clickToolbarMenuItem('options');
}
// Compose options
$browser->assertSeeIn('#layout-sidebar .header', 'Options and attachments');
$browser->assertVisible('#compose-attachments');
if ($browser->isPhone()) {
$browser->click('#layout-sidebar a.back-content-button');
}
});
}
/**
* depends @testCompose
*/
function testPlainEditor()
{
// Test for #7230: Shift+PageUp text selection
// and copy-pasting with keyboard
$this->browse(function ($browser) {
$browser->with(new HtmlEditor('composebodycontainer'), function ($browser) {
$browser->assertMode(HtmlEditor::MODE_PLAIN)
->type('@plain-body', "line1\nline2\n")
->keys('@plain-body', [WebDriverKeys::SHIFT, WebDriverKeys::PAGE_UP])
->keys('@plain-body', [WebDriverKeys::CONTROL, 'c'])
->keys('@plain-body', [WebDriverKeys::CONTROL, 'x'])
->keys('@plain-body', [WebDriverKeys::CONTROL, 'v'])
->keys('@plain-body', [WebDriverKeys::CONTROL, 'v'])
->assertValue('@plain-body', "line1\nline2\nline1\nline2\n");
});
});
// Test switching to HTML and back
$this->browse(function ($browser) {
$browser->with(new HtmlEditor('composebodycontainer'), function ($browser) {
$browser->switchMode(HtmlEditor::MODE_HTML, true)
->switchMode(HtmlEditor::MODE_PLAIN)
->assertValue('@plain-body', "line1\nline2\nline1\nline2")
->switchMode(HtmlEditor::MODE_HTML, false);
});
});
}
/**
* depends @testCompose
*/
function testRecipientInput()
{
// Test for #7231: Recipient input bug when using click
// to select a contact from autocomplete list
$this->browse(function ($browser) {
$browser->with(new RecipientInput('#compose_to'), function ($browser) {
$browser->type('@input', 'johndoe@e')
->withinBody(function ($browser) {
$browser->whenAvailable('#rcmKSearchpane', function ($browser) {
$browser->click('li:first-child');
});
})
->waitFor('@recipient')
->assertElementsCount('@recipient', 1)
->assertRecipient(1, 'John Doe <johndoe@example.org>');
});
});
}
}