activitypub-php/test/ActivityPubTest.php

39 lines
1.0 KiB
PHP
Raw Normal View History

<?php
2018-11-24 03:25:56 +00:00
namespace ActivityPub\Test;
2018-11-20 11:29:09 +00:00
use ActivityPub\ActivityPub;
use ActivityPub\Config\ActivityPubConfig;
use ActivityPub\Test\TestConfig\SQLiteTestCase;
use ActivityPub\Test\TestConfig\ArrayDataSet;
2018-11-23 13:28:46 +00:00
class ActivityPubTest extends SQLiteTestCase
{
public function getDataSet() {
return new ArrayDataSet( array() );
}
public function testItCreatesSchema() {
2018-11-20 11:29:09 +00:00
$this->assertTrue( file_exists( $this->getDbPath() ) );
}
/**
* @depends testItCreatesSchema
*/
public function testItUpdatesSchema() {
$config = ActivityPubConfig::createBuilder()
->setDbConnectionParams( array(
'driver' => 'pdo_sqlite',
'path' => $this->getDbPath(),
) )
->build();
$activityPub = new ActivityPub( $config );
2018-11-20 11:29:09 +00:00
$activityPub->updateSchema();
$this->assertTrue( file_exists( $this->getDbPath() ) );
}
2019-01-08 15:14:42 +00:00
protected function getDbPath() {
2018-11-20 11:29:09 +00:00
return dirname( __FILE__ ) . '/db.sqlite';
}
}
?>