Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820761
PDOMySQLTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1018 B
Subscribers
None
PDOMySQLTest.php
View Options
<?php
namespace
Sabre\CalDAV\Backend
;
require_once
'Sabre/TestUtil.php'
;
require_once
'Sabre/CalDAV/TestUtil.php'
;
require_once
'Sabre/CalDAV/Backend/AbstractPDOTest.php'
;
class
PDOMySQLTest
extends
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, calendarchanges, calendarsubscriptions, schedulingobjects'
);
$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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 12:46 PM (3 d, 5 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
913794
Default Alt Text
PDOMySQLTest.php (1018 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment