1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?php
namespace Roundcube\Tests\Actions\Contacts;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputHtmlMock;
/**
* Test class to test rcmail_action_contacts_print
*/
class Actions_Contacts_Print extends ActionTestCase
{
/**
* Test run() method
*/
function test_run()
{
$action = new \rcmail_action_contacts_print();
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'contacts', 'print');
$this->assertInstanceOf(\rcmail_action::class, $action);
$this->assertTrue($action->checks());
self::initDB('contacts');
$db = \rcmail::get_instance()->get_dbh();
$query = $db->query('SELECT `contact_id` FROM `contacts` WHERE `user_id` = 1 LIMIT 1');
$contact = $db->fetch_assoc($query);
$_GET = ['_cid' => $contact['contact_id'], '_source' => '0'];
$this->runAndAssert($action, OutputHtmlMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame('contactprint', $output->template);
$this->assertSame('', $output->getProperty('pagetitle')); // TODO: there should be a title
$this->assertTrue(stripos($result, "<!DOCTYPE html>") === 0);
}
/**
* Test contact_head() method
*/
function test_contact_head()
{
$this->markTestIncomplete();
}
/**
* Test contact_details() method
*/
function test_contact_details()
{
$this->markTestIncomplete();
}
}
|