streams/vendor/sabre/dav/tests/Sabre/CardDAV/VCFExportTest.php

92 lines
2.2 KiB
PHP

<?php
namespace Sabre\CardDAV;
use Sabre\HTTP;
class VCFExportTest extends \Sabre\DAVServerTest {
protected $setupCardDAV = true;
protected $autoLogin = 'user1';
protected $setupACL = true;
protected $carddavAddressBooks = array(
array(
'id' => 'book1',
'uri' => 'book1',
'principaluri' => 'principals/user1',
)
);
protected $carddavCards = array(
'book1' => array(
"card1" => "BEGIN:VCARD\r\nFN:Person1\r\nEND:VCARD\r\n",
"card2" => "BEGIN:VCARD\r\nFN:Person2\r\nEND:VCARD",
"card3" => "BEGIN:VCARD\r\nFN:Person3\r\nEND:VCARD\r\n",
"card4" => "BEGIN:VCARD\nFN:Person4\nEND:VCARD\n",
)
);
function setUp() {
parent::setUp();
$plugin = new VCFExportPlugin();
$this->server->addPlugin(
$plugin
);
}
function testSimple() {
$plugin = $this->server->getPlugin('vcf-export');
$this->assertInstanceOf('Sabre\\CardDAV\\VCFExportPlugin', $plugin);
$this->assertEquals(
'vcf-export',
$plugin->getPluginInfo()['name']
);
}
function testExport() {
$request = HTTP\Sapi::createFromServerArray(array(
'REQUEST_URI' => '/addressbooks/user1/book1?export',
'QUERY_STRING' => 'export',
'REQUEST_METHOD' => 'GET',
));
$response = $this->request($request);
$this->assertEquals(200, $response->status, $response->body);
$expected = "BEGIN:VCARD
FN:Person1
END:VCARD
BEGIN:VCARD
FN:Person2
END:VCARD
BEGIN:VCARD
FN:Person3
END:VCARD
BEGIN:VCARD
FN:Person4
END:VCARD
";
// We actually expected windows line endings
$expected = str_replace("\n","\r\n", $expected);
$this->assertEquals($expected, $response->body);
}
function testBrowserIntegration() {
$plugin = $this->server->getPlugin('vcf-export');
$actions = '';
$addressbook = new AddressBook($this->carddavBackend, []);
$this->server->emit('browserButtonActions', ['/foo', $addressbook, &$actions]);
$this->assertContains('/foo?export', $actions);
}
}