mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-18 06:18:49 +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
37
dav/SabreDAV/tests/Sabre/CalDAV/Backend/PDOMySQLTest.php
Normal file
37
dav/SabreDAV/tests/Sabre/CalDAV/Backend/PDOMySQLTest.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
require_once 'Sabre/TestUtil.php';
|
||||
require_once 'Sabre/CalDAV/TestUtil.php';
|
||||
require_once 'Sabre/CalDAV/Backend/AbstractPDOTest.php';
|
||||
|
||||
class Sabre_CalDAV_Backend_PDOMySQLTest extends Sabre_CalDAV_Backend_AbstractPDOTest {
|
||||
|
||||
function setup() {
|
||||
|
||||
if (!SABRE_HASMYSQL) $this->markTestSkipped('MySQL driver is not available, or not properly configured');
|
||||
$pdo = Sabre_TestUtil::getMySQLDB();
|
||||
if (!$pdo) $this->markTestSkipped('Could not connect to mysql database');
|
||||
|
||||
$pdo->query('DROP TABLE IF EXISTS calendarobjects, calendars');
|
||||
|
||||
$queries = explode(
|
||||
';',
|
||||
file_get_contents(__DIR__ . '/../../../../examples/sql/mysql.calendars.sql')
|
||||
);
|
||||
|
||||
foreach($queries as $query) {
|
||||
$query = trim($query," \r\n\t");
|
||||
if ($query)
|
||||
$pdo->exec($query);
|
||||
}
|
||||
$this->pdo = $pdo;
|
||||
|
||||
}
|
||||
|
||||
function teardown() {
|
||||
|
||||
$this->pdo = null;
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue