-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[9.x] Add getAllTables support for SQLite and SQLServer schema builde…
…rs (#41896) * add sqlite and sqlserver table column getters * formatting Co-authored-by: Jonathan Havens <[email protected]> Co-authored-by: Taylor Otwell <[email protected]>
- Loading branch information
1 parent
fab6107
commit 827893f
Showing
6 changed files
with
267 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
tests/Integration/Database/SqlServer/DatabaseSqlServerSchemaBuilderTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?php | ||
|
||
namespace Illuminate\Tests\Integration\Database\SqlServer; | ||
|
||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\DB; | ||
use Illuminate\Support\Facades\Schema; | ||
use stdClass; | ||
|
||
class DatabaseSqlServerSchemaBuilderTest extends SqlServerTestCase | ||
{ | ||
protected function getEnvironmentSetUp($app) | ||
{ | ||
if (getenv('DB_CONNECTION') !== 'sqlsrv') { | ||
$this->markTestSkipped('Test requires a SQLServer connection.'); | ||
} | ||
|
||
$this->driver = 'sqlsrv'; | ||
} | ||
|
||
protected function defineDatabaseMigrationsAfterDatabaseRefreshed() | ||
{ | ||
Schema::create('users', function (Blueprint $table) { | ||
$table->integer('id'); | ||
$table->string('name'); | ||
$table->string('age'); | ||
$table->enum('color', ['red', 'blue']); | ||
}); | ||
} | ||
|
||
protected function destroyDatabaseMigrations() | ||
{ | ||
Schema::drop('users'); | ||
} | ||
|
||
public function testGetAllTablesAndColumnListing() | ||
{ | ||
$tables = Schema::getAllTables(); | ||
|
||
$this->assertCount(2, $tables); | ||
$tableProperties = array_values((array) $tables[0]); | ||
$this->assertEquals(['migrations', 'U '], $tableProperties); | ||
|
||
$this->assertInstanceOf(stdClass::class, $tables[1]); | ||
|
||
$tableProperties = array_values((array) $tables[1]); | ||
$this->assertEquals(['users', 'U '], $tableProperties); | ||
|
||
$columns = Schema::getColumnListing('users'); | ||
|
||
foreach (['id', 'name', 'age', 'color'] as $column) { | ||
$this->assertContains($column, $columns); | ||
} | ||
|
||
Schema::create('posts', function (Blueprint $table) { | ||
$table->integer('id'); | ||
$table->string('title'); | ||
}); | ||
$tables = Schema::getAllTables(); | ||
$this->assertCount(3, $tables); | ||
Schema::drop('posts'); | ||
} | ||
|
||
public function testGetAllViews() | ||
{ | ||
DB::connection('sqlsrv')->statement(<<<SQL | ||
CREATE VIEW users_view | ||
AS | ||
SELECT name,age from users; | ||
SQL); | ||
|
||
$tableView = Schema::getAllViews(); | ||
|
||
$this->assertCount(1, $tableView); | ||
$this->assertInstanceOf(stdClass::class, $obj = array_values($tableView)[0]); | ||
$this->assertEquals('users_view', $obj->name); | ||
$this->assertEquals('V ', $obj->type); | ||
|
||
DB::connection('sqlsrv')->statement(<<<SQL | ||
DROP VIEW IF EXISTS users_view; | ||
SQL); | ||
|
||
$this->assertEmpty(Schema::getAllViews()); | ||
} | ||
} |
92 changes: 92 additions & 0 deletions
92
tests/Integration/Database/Sqlite/DatabaseSqliteSchemaBuilderTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
|
||
namespace Illuminate\Tests\Integration\Database\Sqlite; | ||
|
||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\DB; | ||
use Illuminate\Support\Facades\Schema; | ||
use Illuminate\Tests\Integration\Database\DatabaseTestCase; | ||
use stdClass; | ||
|
||
class DatabaseSqliteSchemaBuilderTest extends DatabaseTestCase | ||
{ | ||
protected function getEnvironmentSetUp($app) | ||
{ | ||
if (getenv('DB_CONNECTION') !== 'testing') { | ||
$this->markTestSkipped('Test requires a Sqlite connection.'); | ||
} | ||
|
||
$app['config']->set('database.default', 'conn1'); | ||
|
||
$app['config']->set('database.connections.conn1', [ | ||
'driver' => 'sqlite', | ||
'database' => ':memory:', | ||
'prefix' => '', | ||
]); | ||
} | ||
|
||
protected function defineDatabaseMigrationsAfterDatabaseRefreshed() | ||
{ | ||
Schema::create('users', function (Blueprint $table) { | ||
$table->integer('id'); | ||
$table->string('name'); | ||
$table->string('age'); | ||
$table->enum('color', ['red', 'blue']); | ||
}); | ||
} | ||
|
||
protected function destroyDatabaseMigrations() | ||
{ | ||
Schema::drop('users'); | ||
} | ||
|
||
public function testGetAllTablesAndColumnListing() | ||
{ | ||
$tables = Schema::getAllTables(); | ||
|
||
$this->assertCount(2, $tables); | ||
$tableProperties = array_values((array) $tables[0]); | ||
$this->assertEquals(['table', 'migrations'], $tableProperties); | ||
|
||
$this->assertInstanceOf(stdClass::class, $tables[1]); | ||
|
||
$tableProperties = array_values((array) $tables[1]); | ||
$this->assertEquals(['table', 'users'], $tableProperties); | ||
|
||
$columns = Schema::getColumnListing('users'); | ||
|
||
foreach (['id', 'name', 'age', 'color'] as $column) { | ||
$this->assertContains($column, $columns); | ||
} | ||
|
||
Schema::create('posts', function (Blueprint $table) { | ||
$table->integer('id'); | ||
$table->string('title'); | ||
}); | ||
$tables = Schema::getAllTables(); | ||
$this->assertCount(3, $tables); | ||
Schema::drop('posts'); | ||
} | ||
|
||
public function testGetAllViews() | ||
{ | ||
DB::connection('conn1')->statement(<<<SQL | ||
CREATE VIEW users_view | ||
AS | ||
SELECT name,age from users; | ||
SQL); | ||
|
||
$tableView = Schema::getAllViews(); | ||
|
||
$this->assertCount(1, $tableView); | ||
$this->assertInstanceOf(stdClass::class, $obj = array_values($tableView)[0]); | ||
$this->assertEquals('users_view', $obj->name); | ||
$this->assertEquals('view', $obj->type); | ||
|
||
DB::connection('conn1')->statement(<<<SQL | ||
DROP VIEW IF EXISTS users_view; | ||
SQL); | ||
|
||
$this->assertEmpty(Schema::getAllViews()); | ||
} | ||
} |