mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-12 19:16:49 +01:00
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
class VcardAttachments_Plugin extends PHPUnit\Framework\TestCase
|
|
{
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
include_once __DIR__ . '/../vcard_attachments.php';
|
|
}
|
|
|
|
/**
|
|
* Plugin object construction test
|
|
*/
|
|
function test_constructor()
|
|
{
|
|
$rcube = rcube::get_instance();
|
|
$plugin = new vcard_attachments($rcube->plugins);
|
|
|
|
$this->assertInstanceOf('vcard_attachments', $plugin);
|
|
$this->assertInstanceOf('rcube_plugin', $plugin);
|
|
}
|
|
|
|
/**
|
|
* Test is_vcard()
|
|
*/
|
|
function test_is_vcard()
|
|
{
|
|
$rcube = rcube::get_instance();
|
|
$plugin = new vcard_attachments($rcube->plugins);
|
|
|
|
$part = new rcube_message_part();
|
|
$this->assertFalse(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
|
|
$part->mimetype = 'text/vcard';
|
|
$this->assertTrue(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
|
|
$part->mimetype = 'text/x-vcard';
|
|
$this->assertTrue(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
|
|
$part->mimetype = 'text/directory';
|
|
$this->assertFalse(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
|
|
$part->ctype_parameters['profile'] = 'vcard';
|
|
$this->assertTrue(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
|
|
$part->ctype_parameters['profile'] = 'unknown';
|
|
$part->filename = 'vcard.vcf';
|
|
$this->assertTrue(invokeMethod($plugin, 'is_vcard', [$part]));
|
|
}
|
|
}
|