mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-25 22:11:48 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
67
dav/SabreDAV/tests/Sabre/CardDAV/Backend/PDOSqliteTest.php
Normal file
67
dav/SabreDAV/tests/Sabre/CardDAV/Backend/PDOSqliteTest.php
Normal file
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
|
||||
require_once 'Sabre/TestUtil.php';
|
||||
|
||||
class Sabre_CardDAV_Backend_PDOSqliteTest extends Sabre_CardDAV_Backend_AbstractPDOTest {
|
||||
|
||||
function tearDown() {
|
||||
|
||||
if (file_exists(SABRE_TEMPDIR . '/pdobackend')) unlink(SABRE_TEMPDIR . '/pdobackend');
|
||||
if (file_exists(SABRE_TEMPDIR . '/pdobackend2')) unlink(SABRE_TEMPDIR . '/pdobackend2');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @return PDO
|
||||
*/
|
||||
function getPDO() {
|
||||
|
||||
if (!SABRE_HASSQLITE) $this->markTestSkipped('SQLite driver is not available');
|
||||
$pdo = new PDO('sqlite:'.SABRE_TEMPDIR.'/pdobackend');
|
||||
$pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
|
||||
|
||||
$pdo->query("DROP TABLE IF EXISTS addressbooks");
|
||||
$pdo->query("DROP TABLE IF EXISTS cards");
|
||||
$pdo->query("
|
||||
CREATE TABLE addressbooks (
|
||||
id integer primary key asc,
|
||||
principaluri text,
|
||||
displayname text,
|
||||
uri text,
|
||||
description text,
|
||||
ctag integer
|
||||
);
|
||||
|
||||
");
|
||||
|
||||
$pdo->query("
|
||||
INSERT INTO addressbooks
|
||||
(principaluri, displayname, uri, description, ctag)
|
||||
VALUES
|
||||
('principals/user1', 'book1', 'book1', 'addressbook 1', 1);
|
||||
");
|
||||
|
||||
$pdo->query("
|
||||
|
||||
CREATE TABLE cards (
|
||||
id integer primary key asc,
|
||||
addressbookid integer,
|
||||
carddata text,
|
||||
uri text,
|
||||
lastmodified integer
|
||||
);
|
||||
|
||||
");
|
||||
$pdo->query("
|
||||
INSERT INTO cards
|
||||
(addressbookid, carddata, uri, lastmodified)
|
||||
VALUES
|
||||
(1, 'card1', 'card1', 0);
|
||||
");
|
||||
|
||||
return $pdo;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue