123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942 |
- <?php
- namespace Illuminate\Tests\Database;
- use Illuminate\Database\Connection;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Schema\ForeignIdColumnDefinition;
- use Illuminate\Database\Schema\Grammars\SqlServerGrammar;
- use Mockery as m;
- use PHPUnit\Framework\TestCase;
- class DatabaseSqlServerSchemaGrammarTest extends TestCase
- {
- protected function tearDown(): void
- {
- m::close();
- }
- public function testBasicCreateTable()
- {
- $blueprint = new Blueprint('users');
- $blueprint->create();
- $blueprint->increments('id');
- $blueprint->string('email');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create table "users" ("id" int identity primary key not null, "email" nvarchar(255) not null)', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->increments('id');
- $blueprint->string('email');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" int identity primary key not null, "email" nvarchar(255) not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->create();
- $blueprint->increments('id');
- $blueprint->string('email');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar()->setTablePrefix('prefix_'));
- $this->assertCount(1, $statements);
- $this->assertSame('create table "prefix_users" ("id" int identity primary key not null, "email" nvarchar(255) not null)', $statements[0]);
- }
- public function testCreateTemporaryTable()
- {
- $blueprint = new Blueprint('users');
- $blueprint->create();
- $blueprint->temporary();
- $blueprint->increments('id');
- $blueprint->string('email');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create table "#users" ("id" int identity primary key not null, "email" nvarchar(255) not null)', $statements[0]);
- }
- public function testDropTable()
- {
- $blueprint = new Blueprint('users');
- $blueprint->drop();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('drop table "users"', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->drop();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar()->setTablePrefix('prefix_'));
- $this->assertCount(1, $statements);
- $this->assertSame('drop table "prefix_users"', $statements[0]);
- }
- public function testDropTableIfExists()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropIfExists();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('if exists (select * from sys.sysobjects where id = object_id(\'users\', \'U\')) drop table "users"', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->dropIfExists();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar()->setTablePrefix('prefix_'));
- $this->assertCount(1, $statements);
- $this->assertSame('if exists (select * from sys.sysobjects where id = object_id(\'prefix_users\', \'U\')) drop table "prefix_users"', $statements[0]);
- }
- public function testDropColumn()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropColumn('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertStringContainsString('alter table "users" drop column "foo"', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->dropColumn(['foo', 'bar']);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertStringContainsString('alter table "users" drop column "foo", "bar"', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->dropColumn('foo', 'bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertStringContainsString('alter table "users" drop column "foo", "bar"', $statements[0]);
- }
- public function testDropColumnDropsCreatesSqlToDropDefaultConstraints()
- {
- $blueprint = new Blueprint('foo');
- $blueprint->dropColumn('bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame("DECLARE @sql NVARCHAR(MAX) = '';SELECT @sql += 'ALTER TABLE [dbo].[foo] DROP CONSTRAINT ' + OBJECT_NAME([default_object_id]) + ';' FROM sys.columns WHERE [object_id] = OBJECT_ID('[dbo].[foo]') AND [name] in ('bar') AND [default_object_id] <> 0;EXEC(@sql);alter table \"foo\" drop column \"bar\"", $statements[0]);
- }
- public function testDropPrimary()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropPrimary('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" drop constraint "foo"', $statements[0]);
- }
- public function testDropUnique()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropUnique('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('drop index "foo" on "users"', $statements[0]);
- }
- public function testDropIndex()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropIndex('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('drop index "foo" on "users"', $statements[0]);
- }
- public function testDropSpatialIndex()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->dropSpatialIndex(['coordinates']);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('drop index "geo_coordinates_spatialindex" on "geo"', $statements[0]);
- }
- public function testDropForeign()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropForeign('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" drop constraint "foo"', $statements[0]);
- }
- public function testDropConstrainedForeignId()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropConstrainedForeignId('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(2, $statements);
- $this->assertSame('alter table "users" drop constraint "users_foo_foreign"', $statements[0]);
- $this->assertSame('DECLARE @sql NVARCHAR(MAX) = \'\';SELECT @sql += \'ALTER TABLE [dbo].[users] DROP CONSTRAINT \' + OBJECT_NAME([default_object_id]) + \';\' FROM sys.columns WHERE [object_id] = OBJECT_ID(\'[dbo].[users]\') AND [name] in (\'foo\') AND [default_object_id] <> 0;EXEC(@sql);alter table "users" drop column "foo"', $statements[1]);
- }
- public function testDropTimestamps()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropTimestamps();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertStringContainsString('alter table "users" drop column "created_at", "updated_at"', $statements[0]);
- }
- public function testDropTimestampsTz()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dropTimestampsTz();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertStringContainsString('alter table "users" drop column "created_at", "updated_at"', $statements[0]);
- }
- public function testDropMorphs()
- {
- $blueprint = new Blueprint('photos');
- $blueprint->dropMorphs('imageable');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(2, $statements);
- $this->assertSame('drop index "photos_imageable_type_imageable_id_index" on "photos"', $statements[0]);
- $this->assertStringContainsString('alter table "photos" drop column "imageable_type", "imageable_id"', $statements[1]);
- }
- public function testRenameTable()
- {
- $blueprint = new Blueprint('users');
- $blueprint->rename('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('sp_rename "users", "foo"', $statements[0]);
- }
- public function testRenameIndex()
- {
- $blueprint = new Blueprint('users');
- $blueprint->renameIndex('foo', 'bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('sp_rename N\'"users"."foo"\', "bar", N\'INDEX\'', $statements[0]);
- }
- public function testAddingPrimaryKey()
- {
- $blueprint = new Blueprint('users');
- $blueprint->primary('foo', 'bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add constraint "bar" primary key ("foo")', $statements[0]);
- }
- public function testAddingUniqueKey()
- {
- $blueprint = new Blueprint('users');
- $blueprint->unique('foo', 'bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create unique index "bar" on "users" ("foo")', $statements[0]);
- }
- public function testAddingIndex()
- {
- $blueprint = new Blueprint('users');
- $blueprint->index(['foo', 'bar'], 'baz');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create index "baz" on "users" ("foo", "bar")', $statements[0]);
- }
- public function testAddingSpatialIndex()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->spatialIndex('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create spatial index "geo_coordinates_spatialindex" on "geo" ("coordinates")', $statements[0]);
- }
- public function testAddingFluentSpatialIndex()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->point('coordinates')->spatialIndex();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(2, $statements);
- $this->assertSame('create spatial index "geo_coordinates_spatialindex" on "geo" ("coordinates")', $statements[1]);
- }
- public function testAddingRawIndex()
- {
- $blueprint = new Blueprint('users');
- $blueprint->rawIndex('(function(column))', 'raw_index');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('create index "raw_index" on "users" ((function(column)))', $statements[0]);
- }
- public function testAddingIncrementingID()
- {
- $blueprint = new Blueprint('users');
- $blueprint->increments('id');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" int identity primary key not null', $statements[0]);
- }
- public function testAddingSmallIncrementingID()
- {
- $blueprint = new Blueprint('users');
- $blueprint->smallIncrements('id');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" smallint identity primary key not null', $statements[0]);
- }
- public function testAddingMediumIncrementingID()
- {
- $blueprint = new Blueprint('users');
- $blueprint->mediumIncrements('id');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" int identity primary key not null', $statements[0]);
- }
- public function testAddingID()
- {
- $blueprint = new Blueprint('users');
- $blueprint->id();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" bigint identity primary key not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->id('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" bigint identity primary key not null', $statements[0]);
- }
- public function testAddingForeignID()
- {
- $blueprint = new Blueprint('users');
- $foreignId = $blueprint->foreignId('foo');
- $blueprint->foreignId('company_id')->constrained();
- $blueprint->foreignId('laravel_idea_id')->constrained();
- $blueprint->foreignId('team_id')->references('id')->on('teams');
- $blueprint->foreignId('team_column_id')->constrained('teams');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertInstanceOf(ForeignIdColumnDefinition::class, $foreignId);
- $this->assertSame([
- 'alter table "users" add "foo" bigint not null, "company_id" bigint not null, "laravel_idea_id" bigint not null, "team_id" bigint not null, "team_column_id" bigint not null',
- 'alter table "users" add constraint "users_company_id_foreign" foreign key ("company_id") references "companies" ("id")',
- 'alter table "users" add constraint "users_laravel_idea_id_foreign" foreign key ("laravel_idea_id") references "laravel_ideas" ("id")',
- 'alter table "users" add constraint "users_team_id_foreign" foreign key ("team_id") references "teams" ("id")',
- 'alter table "users" add constraint "users_team_column_id_foreign" foreign key ("team_column_id") references "teams" ("id")',
- ], $statements);
- }
- public function testAddingBigIncrementingID()
- {
- $blueprint = new Blueprint('users');
- $blueprint->bigIncrements('id');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "id" bigint identity primary key not null', $statements[0]);
- }
- public function testAddingString()
- {
- $blueprint = new Blueprint('users');
- $blueprint->string('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(255) not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->string('foo', 100);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(100) not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->string('foo', 100)->nullable()->default('bar');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(100) null default \'bar\'', $statements[0]);
- }
- public function testAddingText()
- {
- $blueprint = new Blueprint('users');
- $blueprint->text('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(max) not null', $statements[0]);
- }
- public function testAddingBigInteger()
- {
- $blueprint = new Blueprint('users');
- $blueprint->bigInteger('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" bigint not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->bigInteger('foo', true);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" bigint identity primary key not null', $statements[0]);
- }
- public function testAddingInteger()
- {
- $blueprint = new Blueprint('users');
- $blueprint->integer('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" int not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->integer('foo', true);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" int identity primary key not null', $statements[0]);
- }
- public function testAddingMediumInteger()
- {
- $blueprint = new Blueprint('users');
- $blueprint->mediumInteger('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" int not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->mediumInteger('foo', true);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" int identity primary key not null', $statements[0]);
- }
- public function testAddingTinyInteger()
- {
- $blueprint = new Blueprint('users');
- $blueprint->tinyInteger('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" tinyint not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->tinyInteger('foo', true);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" tinyint identity primary key not null', $statements[0]);
- }
- public function testAddingSmallInteger()
- {
- $blueprint = new Blueprint('users');
- $blueprint->smallInteger('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" smallint not null', $statements[0]);
- $blueprint = new Blueprint('users');
- $blueprint->smallInteger('foo', true);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" smallint identity primary key not null', $statements[0]);
- }
- public function testAddingFloat()
- {
- $blueprint = new Blueprint('users');
- $blueprint->float('foo', 5, 2);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" float not null', $statements[0]);
- }
- public function testAddingDouble()
- {
- $blueprint = new Blueprint('users');
- $blueprint->double('foo', 15, 2);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" float not null', $statements[0]);
- }
- public function testAddingDecimal()
- {
- $blueprint = new Blueprint('users');
- $blueprint->decimal('foo', 5, 2);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" decimal(5, 2) not null', $statements[0]);
- }
- public function testAddingBoolean()
- {
- $blueprint = new Blueprint('users');
- $blueprint->boolean('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" bit not null', $statements[0]);
- }
- public function testAddingEnum()
- {
- $blueprint = new Blueprint('users');
- $blueprint->enum('role', ['member', 'admin']);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "role" nvarchar(255) check ("role" in (N\'member\', N\'admin\')) not null', $statements[0]);
- }
- public function testAddingJson()
- {
- $blueprint = new Blueprint('users');
- $blueprint->json('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(max) not null', $statements[0]);
- }
- public function testAddingJsonb()
- {
- $blueprint = new Blueprint('users');
- $blueprint->jsonb('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(max) not null', $statements[0]);
- }
- public function testAddingDate()
- {
- $blueprint = new Blueprint('users');
- $blueprint->date('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" date not null', $statements[0]);
- }
- public function testAddingYear()
- {
- $blueprint = new Blueprint('users');
- $blueprint->year('birth_year');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "birth_year" int not null', $statements[0]);
- }
- public function testAddingDateTime()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dateTime('created_at');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetime not null', $statements[0]);
- }
- public function testAddingDateTimeWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dateTime('created_at', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetime2(1) not null', $statements[0]);
- }
- public function testAddingDateTimeTz()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dateTimeTz('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" datetimeoffset not null', $statements[0]);
- }
- public function testAddingDateTimeTzWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->dateTimeTz('foo', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" datetimeoffset(1) not null', $statements[0]);
- }
- public function testAddingTime()
- {
- $blueprint = new Blueprint('users');
- $blueprint->time('created_at');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" time not null', $statements[0]);
- }
- public function testAddingTimeWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->time('created_at', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" time(1) not null', $statements[0]);
- }
- public function testAddingTimeTz()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timeTz('created_at');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" time not null', $statements[0]);
- }
- public function testAddingTimeTzWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timeTz('created_at', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" time(1) not null', $statements[0]);
- }
- public function testAddingTimestamp()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestamp('created_at');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetime not null', $statements[0]);
- }
- public function testAddingTimestampWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestamp('created_at', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetime2(1) not null', $statements[0]);
- }
- public function testAddingTimestampTz()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestampTz('created_at');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetimeoffset not null', $statements[0]);
- }
- public function testAddingTimestampTzWithPrecision()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestampTz('created_at', 1);
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetimeoffset(1) not null', $statements[0]);
- }
- public function testAddingTimestamps()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestamps();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetime null, "updated_at" datetime null', $statements[0]);
- }
- public function testAddingTimestampsTz()
- {
- $blueprint = new Blueprint('users');
- $blueprint->timestampsTz();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "created_at" datetimeoffset null, "updated_at" datetimeoffset null', $statements[0]);
- }
- public function testAddingRememberToken()
- {
- $blueprint = new Blueprint('users');
- $blueprint->rememberToken();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "remember_token" nvarchar(100) null', $statements[0]);
- }
- public function testAddingBinary()
- {
- $blueprint = new Blueprint('users');
- $blueprint->binary('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" varbinary(max) not null', $statements[0]);
- }
- public function testAddingUuid()
- {
- $blueprint = new Blueprint('users');
- $blueprint->uuid('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" uniqueidentifier not null', $statements[0]);
- }
- public function testAddingForeignUuid()
- {
- $blueprint = new Blueprint('users');
- $foreignId = $blueprint->foreignUuid('foo');
- $blueprint->foreignUuid('company_id')->constrained();
- $blueprint->foreignUuid('laravel_idea_id')->constrained();
- $blueprint->foreignUuid('team_id')->references('id')->on('teams');
- $blueprint->foreignUuid('team_column_id')->constrained('teams');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertInstanceOf(ForeignIdColumnDefinition::class, $foreignId);
- $this->assertSame([
- 'alter table "users" add "foo" uniqueidentifier not null, "company_id" uniqueidentifier not null, "laravel_idea_id" uniqueidentifier not null, "team_id" uniqueidentifier not null, "team_column_id" uniqueidentifier not null',
- 'alter table "users" add constraint "users_company_id_foreign" foreign key ("company_id") references "companies" ("id")',
- 'alter table "users" add constraint "users_laravel_idea_id_foreign" foreign key ("laravel_idea_id") references "laravel_ideas" ("id")',
- 'alter table "users" add constraint "users_team_id_foreign" foreign key ("team_id") references "teams" ("id")',
- 'alter table "users" add constraint "users_team_column_id_foreign" foreign key ("team_column_id") references "teams" ("id")',
- ], $statements);
- }
- public function testAddingIpAddress()
- {
- $blueprint = new Blueprint('users');
- $blueprint->ipAddress('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(45) not null', $statements[0]);
- }
- public function testAddingMacAddress()
- {
- $blueprint = new Blueprint('users');
- $blueprint->macAddress('foo');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "users" add "foo" nvarchar(17) not null', $statements[0]);
- }
- public function testAddingGeometry()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->geometry('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingPoint()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->point('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingLineString()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->linestring('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingPolygon()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->polygon('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingGeometryCollection()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->geometrycollection('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingMultiPoint()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->multipoint('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingMultiLineString()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->multilinestring('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingMultiPolygon()
- {
- $blueprint = new Blueprint('geo');
- $blueprint->multipolygon('coordinates');
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "geo" add "coordinates" geography not null', $statements[0]);
- }
- public function testAddingGeneratedColumn()
- {
- $blueprint = new Blueprint('products');
- $blueprint->integer('price');
- $blueprint->computed('discounted_virtual', 'price - 5');
- $blueprint->computed('discounted_stored', 'price - 5')->persisted();
- $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
- $this->assertCount(1, $statements);
- $this->assertSame('alter table "products" add "price" int not null, "discounted_virtual" as (price - 5), "discounted_stored" as (price - 5) persisted', $statements[0]);
- }
- public function testGrammarsAreMacroable()
- {
- // compileReplace macro.
- $this->getGrammar()::macro('compileReplace', function () {
- return true;
- });
- $c = $this->getGrammar()::compileReplace();
- $this->assertTrue($c);
- }
- public function testQuoteString()
- {
- $this->assertSame("N'中文測試'", $this->getGrammar()->quoteString('中文測試'));
- }
- public function testQuoteStringOnArray()
- {
- $this->assertSame("N'中文', N'測試'", $this->getGrammar()->quoteString(['中文', '測試']));
- }
- public function testCreateDatabase()
- {
- $connection = $this->getConnection();
- $statement = $this->getGrammar()->compileCreateDatabase('my_database_a', $connection);
- $this->assertSame(
- 'create database "my_database_a"',
- $statement
- );
- $statement = $this->getGrammar()->compileCreateDatabase('my_database_b', $connection);
- $this->assertSame(
- 'create database "my_database_b"',
- $statement
- );
- }
- public function testDropDatabaseIfExists()
- {
- $statement = $this->getGrammar()->compileDropDatabaseIfExists('my_database_a');
- $this->assertSame(
- 'drop database if exists "my_database_a"',
- $statement
- );
- $statement = $this->getGrammar()->compileDropDatabaseIfExists('my_database_b');
- $this->assertSame(
- 'drop database if exists "my_database_b"',
- $statement
- );
- }
- protected function getConnection()
- {
- return m::mock(Connection::class);
- }
- public function getGrammar()
- {
- return new SqlServerGrammar;
- }
- }
|