mirror of
				https://git.friendi.ca/friendica/friendica-addons.git
				synced 2025-11-04 04:07:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			967 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			967 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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;
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |