Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-12-04 10:23:12 +0300
committerJulius Härtl <jus@bitgrid.net>2020-12-08 18:06:13 +0300
commit4f927721b2183ca45d2c5211ac341f67c9bc62d6 (patch)
treea0811227b93acf46020a4e4c33d1b7beb29bcd3d /tests/lib/DB
parentaefe8262023f5f3daaa33a33e6b31c8e12e33112 (diff)
Add temporary test for migrating int to string
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/DB')
-rw-r--r--tests/lib/DB/MigratorTest.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/lib/DB/MigratorTest.php b/tests/lib/DB/MigratorTest.php
index b5021dcccf9..52b0b0ff03e 100644
--- a/tests/lib/DB/MigratorTest.php
+++ b/tests/lib/DB/MigratorTest.php
@@ -13,6 +13,7 @@ use Doctrine\DBAL\DBALException;
use Doctrine\DBAL\Platforms\OraclePlatform;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\SchemaConfig;
+use OC\DB\SchemaWrapper;
use OCP\IConfig;
/**
@@ -94,6 +95,26 @@ class MigratorTest extends \Test\TestCase {
return [$startSchema, $endSchema];
}
+ /**
+ * @return \Doctrine\DBAL\Schema\Schema[]
+ */
+ private function getChangedTypeSchema($from, $to) {
+ $startSchema = new Schema([], [], $this->getSchemaConfig());
+ $table = $startSchema->createTable($this->tableName);
+ $table->addColumn('id', $from);
+ $table->addColumn('name', 'string');
+ $table->addIndex(['id'], $this->tableName . '_id');
+
+ $endSchema = new Schema([], [], $this->getSchemaConfig());
+ $table = $endSchema->createTable($this->tableName);
+ $table->addColumn('id', $to);
+ $table->addColumn('name', 'string');
+ $table->addIndex(['id'], $this->tableName . '_id');
+
+ return [$startSchema, $endSchema];
+ }
+
+
private function getSchemaConfig() {
$config = new SchemaConfig();
$config->setName($this->connection->getDatabase());
@@ -123,6 +144,34 @@ class MigratorTest extends \Test\TestCase {
$this->fail('checkMigrate should have failed');
}
+ public function testChangeToString() {
+ list($startSchema, $endSchema) = $this->getChangedTypeSchema('integer', 'string');
+ $migrator = $this->manager->getMigrator();
+ $migrator->migrate($startSchema);
+ $schema = new SchemaWrapper($this->connection);
+ $table = $schema->getTable(substr($this->tableName, 3));
+ $this->assertEquals('integer', $table->getColumn('id')->getType()->getName());
+
+ $this->connection->insert($this->tableName, ['id' => 1, 'name' => 'foo']);
+ $this->connection->insert($this->tableName, ['id' => 2, 'name' => 'bar']);
+ $this->connection->insert($this->tableName, ['id' => 3, 'name' => 'qwerty']);
+
+ $migrator->checkMigrate($endSchema);
+ $migrator->migrate($endSchema);
+ $this->addToAssertionCount(1);
+
+ $qb = $this->connection->getQueryBuilder();
+ $result = $qb->select('*')->from(substr($this->tableName, 3))->execute();
+ $this->assertEquals([
+ ['id' => 1, 'name' => 'foo'],
+ ['id' => 2, 'name' => 'bar'],
+ ['id' => 3, 'name' => 'qwerty']
+ ], $result->fetchAll());
+ $schema = new SchemaWrapper($this->connection);
+ $table = $schema->getTable(substr($this->tableName, 3));
+ $this->assertEquals('string', $table->getColumn('id')->getType()->getName());
+ }
+
public function testUpgrade() {
list($startSchema, $endSchema) = $this->getDuplicateKeySchemas();
$migrator = $this->manager->getMigrator();