diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-06-21 14:13:41 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-06-21 14:13:41 -0700 |
commit | a491348d442ab8e6cd2fa403d4365cdad78e52ce (patch) | |
tree | a00f575d82afb2c9051bad95398b4250f4a3d44d /libs/picodb/tests/MysqlSchemaTest.php | |
parent | c73ac5f1f818b6b21083f6785b4b2f6d778a6496 (diff) |
Vendoring deprecated composer libs
Diffstat (limited to 'libs/picodb/tests/MysqlSchemaTest.php')
-rw-r--r-- | libs/picodb/tests/MysqlSchemaTest.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/libs/picodb/tests/MysqlSchemaTest.php b/libs/picodb/tests/MysqlSchemaTest.php new file mode 100644 index 00000000..4eeee0b9 --- /dev/null +++ b/libs/picodb/tests/MysqlSchemaTest.php @@ -0,0 +1,49 @@ +<?php + +require_once __DIR__.'/../../../vendor/autoload.php'; +require_once __DIR__.'/SchemaFixture.php'; +require_once __DIR__.'/AlternativeSchemaFixture.php'; + +class MysqlSchemaTest extends PHPUnit_Framework_TestCase +{ + /** + * @var PicoDb\Database + */ + private $db; + + public function setUp() + { + $this->db = new PicoDb\Database(array('driver' => 'mysql', 'hostname' => 'localhost', 'username' => 'root', 'password' => '', 'database' => 'picodb')); + $this->db->getConnection()->exec('DROP TABLE IF EXISTS test1'); + $this->db->getConnection()->exec('DROP TABLE IF EXISTS test2'); + $this->db->getConnection()->exec('DROP TABLE IF EXISTS schema_version'); + } + + public function testMigrations() + { + $this->assertTrue($this->db->schema()->check(2)); + $this->assertEquals(2, $this->db->getDriver()->getSchemaVersion()); + $this->assertEquals('\Schema', $this->db->schema()->getNamespace()); + } + + public function testFailedMigrations() + { + $this->assertEquals(0, $this->db->getDriver()->getSchemaVersion()); + $this->assertFalse($this->db->schema()->check(3)); + $this->assertEquals(2, $this->db->getDriver()->getSchemaVersion()); + + $logs = $this->db->getLogMessages(); + $this->assertNotEmpty($logs); + $this->assertEquals('Running migration \Schema\version_1', $logs[0]); + $this->assertEquals('Running migration \Schema\version_2', $logs[1]); + $this->assertEquals('Running migration \Schema\version_3', $logs[2]); + $this->assertStringStartsWith('SQLSTATE[42000]: Syntax error or access violation', $logs[3]); + } + + public function testAlternativeSchemaNamespace() + { + $this->assertEquals('\AlternativeSchema', $this->db->schema('\AlternativeSchema')->getNamespace()); + $this->assertTrue($this->db->schema('\AlternativeSchema')->check(2)); + $this->assertEquals(2, $this->db->getDriver()->getSchemaVersion()); + } +} |