123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250 |
- <?php
- namespace Illuminate\Tests\Database;
- use DateTimeInterface;
- use Exception;
- use Illuminate\Database\Capsule\Manager as DB;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Collection;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Model as Eloquent;
- use Illuminate\Database\Eloquent\ModelNotFoundException;
- use Illuminate\Database\Eloquent\Relations\MorphPivot;
- use Illuminate\Database\Eloquent\Relations\Pivot;
- use Illuminate\Database\Eloquent\Relations\Relation;
- use Illuminate\Database\Eloquent\SoftDeletes;
- use Illuminate\Database\Eloquent\SoftDeletingScope;
- use Illuminate\Database\QueryException;
- use Illuminate\Pagination\AbstractPaginator as Paginator;
- use Illuminate\Pagination\Cursor;
- use Illuminate\Pagination\CursorPaginator;
- use Illuminate\Pagination\LengthAwarePaginator;
- use Illuminate\Support\Carbon;
- use Illuminate\Support\Facades\Date;
- use Illuminate\Tests\Integration\Database\Fixtures\Post;
- use Illuminate\Tests\Integration\Database\Fixtures\User;
- use PHPUnit\Framework\TestCase;
- class DatabaseEloquentIntegrationTest extends TestCase
- {
- /**
- * Setup the database schema.
- *
- * @return void
- */
- protected function setUp(): void
- {
- $db = new DB;
- $db->addConnection([
- 'driver' => 'sqlite',
- 'database' => ':memory:',
- ]);
- $db->addConnection([
- 'driver' => 'sqlite',
- 'database' => ':memory:',
- ], 'second_connection');
- $db->bootEloquent();
- $db->setAsGlobal();
- $this->createSchema();
- }
- protected function createSchema()
- {
- $this->schema('default')->create('test_orders', function ($table) {
- $table->increments('id');
- $table->string('item_type');
- $table->integer('item_id');
- $table->timestamps();
- });
- $this->schema('default')->create('with_json', function ($table) {
- $table->increments('id');
- $table->text('json')->default(json_encode([]));
- });
- $this->schema('second_connection')->create('test_items', function ($table) {
- $table->increments('id');
- $table->timestamps();
- });
- $this->schema('default')->create('users_with_space_in_colum_name', function ($table) {
- $table->increments('id');
- $table->string('name')->nullable();
- $table->string('email address');
- $table->timestamps();
- });
- foreach (['default', 'second_connection'] as $connection) {
- $this->schema($connection)->create('users', function ($table) {
- $table->increments('id');
- $table->string('name')->nullable();
- $table->string('email');
- $table->timestamp('birthday', 6)->nullable();
- $table->timestamps();
- });
- $this->schema($connection)->create('friends', function ($table) {
- $table->integer('user_id');
- $table->integer('friend_id');
- $table->integer('friend_level_id')->nullable();
- });
- $this->schema($connection)->create('posts', function ($table) {
- $table->increments('id');
- $table->integer('user_id');
- $table->integer('parent_id')->nullable();
- $table->string('name');
- $table->timestamps();
- });
- $this->schema($connection)->create('comments', function ($table) {
- $table->increments('id');
- $table->integer('post_id');
- $table->string('content');
- $table->timestamps();
- });
- $this->schema($connection)->create('friend_levels', function ($table) {
- $table->increments('id');
- $table->string('level');
- $table->timestamps();
- });
- $this->schema($connection)->create('photos', function ($table) {
- $table->increments('id');
- $table->morphs('imageable');
- $table->string('name');
- $table->timestamps();
- });
- $this->schema($connection)->create('soft_deleted_users', function ($table) {
- $table->increments('id');
- $table->string('name')->nullable();
- $table->string('email');
- $table->timestamps();
- $table->softDeletes();
- });
- $this->schema($connection)->create('tags', function ($table) {
- $table->increments('id');
- $table->string('name');
- $table->timestamps();
- });
- $this->schema($connection)->create('taggables', function ($table) {
- $table->integer('tag_id');
- $table->morphs('taggable');
- $table->string('taxonomy')->nullable();
- });
- }
- $this->schema($connection)->create('non_incrementing_users', function ($table) {
- $table->string('name')->nullable();
- });
- }
- /**
- * Tear down the database schema.
- *
- * @return void
- */
- protected function tearDown(): void
- {
- foreach (['default', 'second_connection'] as $connection) {
- $this->schema($connection)->drop('users');
- $this->schema($connection)->drop('friends');
- $this->schema($connection)->drop('posts');
- $this->schema($connection)->drop('friend_levels');
- $this->schema($connection)->drop('photos');
- }
- Relation::morphMap([], false);
- Eloquent::unsetConnectionResolver();
- }
- /**
- * Tests...
- */
- public function testBasicModelRetrieval()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $this->assertEquals(2, EloquentTestUser::count());
- $this->assertFalse(EloquentTestUser::where('email', 'taylorotwell@gmail.com')->doesntExist());
- $this->assertTrue(EloquentTestUser::where('email', 'mohamed@laravel.com')->doesntExist());
- $model = EloquentTestUser::where('email', 'taylorotwell@gmail.com')->first();
- $this->assertSame('taylorotwell@gmail.com', $model->email);
- $this->assertTrue(isset($model->email));
- $this->assertTrue(isset($model->friends));
- $model = EloquentTestUser::find(1);
- $this->assertInstanceOf(EloquentTestUser::class, $model);
- $this->assertEquals(1, $model->id);
- $model = EloquentTestUser::find(2);
- $this->assertInstanceOf(EloquentTestUser::class, $model);
- $this->assertEquals(2, $model->id);
- $missing = EloquentTestUser::find(3);
- $this->assertNull($missing);
- $collection = EloquentTestUser::find([]);
- $this->assertInstanceOf(Collection::class, $collection);
- $this->assertCount(0, $collection);
- $collection = EloquentTestUser::find([1, 2, 3]);
- $this->assertInstanceOf(Collection::class, $collection);
- $this->assertCount(2, $collection);
- $models = EloquentTestUser::where('id', 1)->cursor();
- foreach ($models as $model) {
- $this->assertEquals(1, $model->id);
- $this->assertSame('default', $model->getConnectionName());
- }
- $records = DB::table('users')->where('id', 1)->cursor();
- foreach ($records as $record) {
- $this->assertEquals(1, $record->id);
- }
- $records = DB::cursor('select * from users where id = ?', [1]);
- foreach ($records as $record) {
- $this->assertEquals(1, $record->id);
- }
- }
- public function testBasicModelCollectionRetrieval()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $models = EloquentTestUser::oldest('id')->get();
- $this->assertCount(2, $models);
- $this->assertInstanceOf(Collection::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertInstanceOf(EloquentTestUser::class, $models[1]);
- $this->assertSame('taylorotwell@gmail.com', $models[0]->email);
- $this->assertSame('abigailotwell@gmail.com', $models[1]->email);
- }
- public function testPaginatedModelCollectionRetrieval()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::create(['id' => 3, 'email' => 'foo@gmail.com']);
- Paginator::currentPageResolver(function () {
- return 1;
- });
- $models = EloquentTestUser::oldest('id')->paginate(2);
- $this->assertCount(2, $models);
- $this->assertInstanceOf(LengthAwarePaginator::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertInstanceOf(EloquentTestUser::class, $models[1]);
- $this->assertSame('taylorotwell@gmail.com', $models[0]->email);
- $this->assertSame('abigailotwell@gmail.com', $models[1]->email);
- Paginator::currentPageResolver(function () {
- return 2;
- });
- $models = EloquentTestUser::oldest('id')->paginate(2);
- $this->assertCount(1, $models);
- $this->assertInstanceOf(LengthAwarePaginator::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertSame('foo@gmail.com', $models[0]->email);
- }
- public function testPaginatedModelCollectionRetrievalWhenNoElements()
- {
- Paginator::currentPageResolver(function () {
- return 1;
- });
- $models = EloquentTestUser::oldest('id')->paginate(2);
- $this->assertCount(0, $models);
- $this->assertInstanceOf(LengthAwarePaginator::class, $models);
- Paginator::currentPageResolver(function () {
- return 2;
- });
- $models = EloquentTestUser::oldest('id')->paginate(2);
- $this->assertCount(0, $models);
- }
- public function testPaginatedModelCollectionRetrievalWhenNoElementsAndDefaultPerPage()
- {
- $models = EloquentTestUser::oldest('id')->paginate();
- $this->assertCount(0, $models);
- $this->assertInstanceOf(LengthAwarePaginator::class, $models);
- }
- public function testCountForPaginationWithGrouping()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::create(['id' => 3, 'email' => 'foo@gmail.com']);
- EloquentTestUser::create(['id' => 4, 'email' => 'foo@gmail.com']);
- $query = EloquentTestUser::groupBy('email')->getQuery();
- $this->assertEquals(3, $query->getCountForPagination());
- }
- public function testCountForPaginationWithGroupingAndSubSelects()
- {
- $user1 = EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::create(['id' => 3, 'email' => 'foo@gmail.com']);
- EloquentTestUser::create(['id' => 4, 'email' => 'foo@gmail.com']);
- $user1->friends()->create(['id' => 5, 'email' => 'friend@gmail.com']);
- $query = EloquentTestUser::select([
- 'id',
- 'friends_count' => EloquentTestUser::whereColumn('friend_id', 'user_id')->count(),
- ])->groupBy('email')->getQuery();
- $this->assertEquals(4, $query->getCountForPagination());
- }
- public function testCursorPaginatedModelCollectionRetrieval()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create($secondParams = ['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::create(['id' => 3, 'email' => 'foo@gmail.com']);
- CursorPaginator::currentCursorResolver(function () {
- return null;
- });
- $models = EloquentTestUser::oldest('id')->cursorPaginate(2);
- $this->assertCount(2, $models);
- $this->assertInstanceOf(CursorPaginator::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertInstanceOf(EloquentTestUser::class, $models[1]);
- $this->assertSame('taylorotwell@gmail.com', $models[0]->email);
- $this->assertSame('abigailotwell@gmail.com', $models[1]->email);
- $this->assertTrue($models->hasMorePages());
- $this->assertTrue($models->hasPages());
- CursorPaginator::currentCursorResolver(function () use ($secondParams) {
- return new Cursor($secondParams);
- });
- $models = EloquentTestUser::oldest('id')->cursorPaginate(2);
- $this->assertCount(1, $models);
- $this->assertInstanceOf(CursorPaginator::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertSame('foo@gmail.com', $models[0]->email);
- $this->assertFalse($models->hasMorePages());
- $this->assertTrue($models->hasPages());
- }
- public function testPreviousCursorPaginatedModelCollectionRetrieval()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::create($thirdParams = ['id' => 3, 'email' => 'foo@gmail.com']);
- CursorPaginator::currentCursorResolver(function () use ($thirdParams) {
- return new Cursor($thirdParams, false);
- });
- $models = EloquentTestUser::oldest('id')->cursorPaginate(2);
- $this->assertCount(2, $models);
- $this->assertInstanceOf(CursorPaginator::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertInstanceOf(EloquentTestUser::class, $models[1]);
- $this->assertSame('taylorotwell@gmail.com', $models[0]->email);
- $this->assertSame('abigailotwell@gmail.com', $models[1]->email);
- $this->assertTrue($models->hasMorePages());
- $this->assertTrue($models->hasPages());
- }
- public function testCursorPaginatedModelCollectionRetrievalWhenNoElements()
- {
- CursorPaginator::currentCursorResolver(function () {
- return null;
- });
- $models = EloquentTestUser::oldest('id')->cursorPaginate(2);
- $this->assertCount(0, $models);
- $this->assertInstanceOf(CursorPaginator::class, $models);
- Paginator::currentPageResolver(function () {
- return new Cursor(['id' => 1]);
- });
- $models = EloquentTestUser::oldest('id')->cursorPaginate(2);
- $this->assertCount(0, $models);
- }
- public function testCursorPaginatedModelCollectionRetrievalWhenNoElementsAndDefaultPerPage()
- {
- $models = EloquentTestUser::oldest('id')->cursorPaginate();
- $this->assertCount(0, $models);
- $this->assertInstanceOf(CursorPaginator::class, $models);
- }
- public function testFirstOrNew()
- {
- $user1 = EloquentTestUser::firstOrNew(
- ['name' => 'Dries Vints'],
- ['name' => 'Nuno Maduro']
- );
- $this->assertSame('Nuno Maduro', $user1->name);
- }
- public function testFirstOrCreate()
- {
- $user1 = EloquentTestUser::firstOrCreate(['email' => 'taylorotwell@gmail.com']);
- $this->assertSame('taylorotwell@gmail.com', $user1->email);
- $this->assertNull($user1->name);
- $user2 = EloquentTestUser::firstOrCreate(
- ['email' => 'taylorotwell@gmail.com'],
- ['name' => 'Taylor Otwell']
- );
- $this->assertEquals($user1->id, $user2->id);
- $this->assertSame('taylorotwell@gmail.com', $user2->email);
- $this->assertNull($user2->name);
- $user3 = EloquentTestUser::firstOrCreate(
- ['email' => 'abigailotwell@gmail.com'],
- ['name' => 'Abigail Otwell']
- );
- $this->assertNotEquals($user3->id, $user1->id);
- $this->assertSame('abigailotwell@gmail.com', $user3->email);
- $this->assertSame('Abigail Otwell', $user3->name);
- $user4 = EloquentTestUser::firstOrCreate(
- ['name' => 'Dries Vints'],
- ['name' => 'Nuno Maduro', 'email' => 'nuno@laravel.com']
- );
- $this->assertSame('Nuno Maduro', $user4->name);
- }
- public function testUpdateOrCreate()
- {
- $user1 = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user2 = EloquentTestUser::updateOrCreate(
- ['email' => 'taylorotwell@gmail.com'],
- ['name' => 'Taylor Otwell']
- );
- $this->assertEquals($user1->id, $user2->id);
- $this->assertSame('taylorotwell@gmail.com', $user2->email);
- $this->assertSame('Taylor Otwell', $user2->name);
- $user3 = EloquentTestUser::updateOrCreate(
- ['email' => 'themsaid@gmail.com'],
- ['name' => 'Mohamed Said']
- );
- $this->assertSame('Mohamed Said', $user3->name);
- $this->assertEquals(2, EloquentTestUser::count());
- }
- public function testUpdateOrCreateOnDifferentConnection()
- {
- EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::on('second_connection')->updateOrCreate(
- ['email' => 'taylorotwell@gmail.com'],
- ['name' => 'Taylor Otwell']
- );
- EloquentTestUser::on('second_connection')->updateOrCreate(
- ['email' => 'themsaid@gmail.com'],
- ['name' => 'Mohamed Said']
- );
- $this->assertEquals(1, EloquentTestUser::count());
- $this->assertEquals(2, EloquentTestUser::on('second_connection')->count());
- }
- public function testCheckAndCreateMethodsOnMultiConnections()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::on('second_connection')->find(
- EloquentTestUser::on('second_connection')->insert(['id' => 2, 'email' => 'themsaid@gmail.com'])
- );
- $user1 = EloquentTestUser::on('second_connection')->findOrNew(1);
- $user2 = EloquentTestUser::on('second_connection')->findOrNew(2);
- $this->assertFalse($user1->exists);
- $this->assertTrue($user2->exists);
- $this->assertSame('second_connection', $user1->getConnectionName());
- $this->assertSame('second_connection', $user2->getConnectionName());
- $user1 = EloquentTestUser::on('second_connection')->firstOrNew(['email' => 'taylorotwell@gmail.com']);
- $user2 = EloquentTestUser::on('second_connection')->firstOrNew(['email' => 'themsaid@gmail.com']);
- $this->assertFalse($user1->exists);
- $this->assertTrue($user2->exists);
- $this->assertSame('second_connection', $user1->getConnectionName());
- $this->assertSame('second_connection', $user2->getConnectionName());
- $this->assertEquals(1, EloquentTestUser::on('second_connection')->count());
- $user1 = EloquentTestUser::on('second_connection')->firstOrCreate(['email' => 'taylorotwell@gmail.com']);
- $user2 = EloquentTestUser::on('second_connection')->firstOrCreate(['email' => 'themsaid@gmail.com']);
- $this->assertSame('second_connection', $user1->getConnectionName());
- $this->assertSame('second_connection', $user2->getConnectionName());
- $this->assertEquals(2, EloquentTestUser::on('second_connection')->count());
- }
- public function testCreatingModelWithEmptyAttributes()
- {
- $model = EloquentTestNonIncrementing::create([]);
- $this->assertFalse($model->exists);
- $this->assertFalse($model->wasRecentlyCreated);
- }
- public function testChunkByIdWithNonIncrementingKey()
- {
- EloquentTestNonIncrementingSecond::create(['name' => ' First']);
- EloquentTestNonIncrementingSecond::create(['name' => ' Second']);
- EloquentTestNonIncrementingSecond::create(['name' => ' Third']);
- $i = 0;
- EloquentTestNonIncrementingSecond::query()->chunkById(2, function (Collection $users) use (&$i) {
- if (! $i) {
- $this->assertSame(' First', $users[0]->name);
- $this->assertSame(' Second', $users[1]->name);
- } else {
- $this->assertSame(' Third', $users[0]->name);
- }
- $i++;
- }, 'name');
- $this->assertEquals(2, $i);
- }
- public function testEachByIdWithNonIncrementingKey()
- {
- EloquentTestNonIncrementingSecond::create(['name' => ' First']);
- EloquentTestNonIncrementingSecond::create(['name' => ' Second']);
- EloquentTestNonIncrementingSecond::create(['name' => ' Third']);
- $users = [];
- EloquentTestNonIncrementingSecond::query()->eachById(
- function (EloquentTestNonIncrementingSecond $user, $i) use (&$users) {
- $users[] = [$user->name, $i];
- }, 2, 'name');
- $this->assertSame([[' First', 0], [' Second', 1], [' Third', 2]], $users);
- }
- public function testPluck()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $simple = EloquentTestUser::oldest('id')->pluck('users.email')->all();
- $keyed = EloquentTestUser::oldest('id')->pluck('users.email', 'users.id')->all();
- $this->assertEquals(['taylorotwell@gmail.com', 'abigailotwell@gmail.com'], $simple);
- $this->assertEquals([1 => 'taylorotwell@gmail.com', 2 => 'abigailotwell@gmail.com'], $keyed);
- }
- public function testPluckWithJoin()
- {
- $user1 = EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $user2 = EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $user2->posts()->create(['id' => 1, 'name' => 'First post']);
- $user1->posts()->create(['id' => 2, 'name' => 'Second post']);
- $query = EloquentTestUser::join('posts', 'users.id', '=', 'posts.user_id');
- $this->assertEquals([1 => 'First post', 2 => 'Second post'], $query->pluck('posts.name', 'posts.id')->all());
- $this->assertEquals([2 => 'First post', 1 => 'Second post'], $query->pluck('posts.name', 'users.id')->all());
- $this->assertEquals(['abigailotwell@gmail.com' => 'First post', 'taylorotwell@gmail.com' => 'Second post'], $query->pluck('posts.name', 'users.email AS user_email')->all());
- }
- public function testPluckWithColumnNameContainingASpace()
- {
- EloquentTestUserWithSpaceInColumnName::create(['id' => 1, 'email address' => 'taylorotwell@gmail.com']);
- EloquentTestUserWithSpaceInColumnName::create(['id' => 2, 'email address' => 'abigailotwell@gmail.com']);
- $simple = EloquentTestUserWithSpaceInColumnName::oldest('id')->pluck('users_with_space_in_colum_name.email address')->all();
- $keyed = EloquentTestUserWithSpaceInColumnName::oldest('id')->pluck('email address', 'id')->all();
- $this->assertEquals(['taylorotwell@gmail.com', 'abigailotwell@gmail.com'], $simple);
- $this->assertEquals([1 => 'taylorotwell@gmail.com', 2 => 'abigailotwell@gmail.com'], $keyed);
- }
- public function testFindOrFail()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $single = EloquentTestUser::findOrFail(1);
- $multiple = EloquentTestUser::findOrFail([1, 2]);
- $this->assertInstanceOf(EloquentTestUser::class, $single);
- $this->assertSame('taylorotwell@gmail.com', $single->email);
- $this->assertInstanceOf(Collection::class, $multiple);
- $this->assertInstanceOf(EloquentTestUser::class, $multiple[0]);
- $this->assertInstanceOf(EloquentTestUser::class, $multiple[1]);
- }
- public function testFindOrFailWithSingleIdThrowsModelNotFoundException()
- {
- $this->expectException(ModelNotFoundException::class);
- $this->expectExceptionMessage('No query results for model [Illuminate\Tests\Database\EloquentTestUser] 1');
- EloquentTestUser::findOrFail(1);
- }
- public function testFindOrFailWithMultipleIdsThrowsModelNotFoundException()
- {
- $this->expectException(ModelNotFoundException::class);
- $this->expectExceptionMessage('No query results for model [Illuminate\Tests\Database\EloquentTestUser] 1, 2');
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::findOrFail([1, 2]);
- }
- public function testFindOrFailWithMultipleIdsUsingCollectionThrowsModelNotFoundException()
- {
- $this->expectException(ModelNotFoundException::class);
- $this->expectExceptionMessage('No query results for model [Illuminate\Tests\Database\EloquentTestUser] 1, 2');
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::findOrFail(new Collection([1, 2]));
- }
- public function testOneToOneRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->post()->create(['name' => 'First Post']);
- $post = $user->post;
- $user = $post->user;
- $this->assertTrue(isset($user->post->name));
- $this->assertInstanceOf(EloquentTestUser::class, $user);
- $this->assertInstanceOf(EloquentTestPost::class, $post);
- $this->assertSame('taylorotwell@gmail.com', $user->email);
- $this->assertSame('First Post', $post->name);
- }
- public function testIssetLoadsInRelationshipIfItIsntLoadedAlready()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->post()->create(['name' => 'First Post']);
- $this->assertTrue(isset($user->post->name));
- }
- public function testOneToManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->posts()->create(['name' => 'First Post']);
- $user->posts()->create(['name' => 'Second Post']);
- $posts = $user->posts;
- $post2 = $user->posts()->where('name', 'Second Post')->first();
- $this->assertInstanceOf(Collection::class, $posts);
- $this->assertCount(2, $posts);
- $this->assertInstanceOf(EloquentTestPost::class, $posts[0]);
- $this->assertInstanceOf(EloquentTestPost::class, $posts[1]);
- $this->assertInstanceOf(EloquentTestPost::class, $post2);
- $this->assertSame('Second Post', $post2->name);
- $this->assertInstanceOf(EloquentTestUser::class, $post2->user);
- $this->assertSame('taylorotwell@gmail.com', $post2->user->email);
- }
- public function testBasicModelHydration()
- {
- $user = new EloquentTestUser(['email' => 'taylorotwell@gmail.com']);
- $user->setConnection('second_connection');
- $user->save();
- $user = new EloquentTestUser(['email' => 'abigailotwell@gmail.com']);
- $user->setConnection('second_connection');
- $user->save();
- $models = EloquentTestUser::on('second_connection')->fromQuery('SELECT * FROM users WHERE email = ?', ['abigailotwell@gmail.com']);
- $this->assertInstanceOf(Collection::class, $models);
- $this->assertInstanceOf(EloquentTestUser::class, $models[0]);
- $this->assertSame('abigailotwell@gmail.com', $models[0]->email);
- $this->assertSame('second_connection', $models[0]->getConnectionName());
- $this->assertCount(1, $models);
- }
- public function testFirstOrNewOnHasOneRelationShip()
- {
- $user1 = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $post1 = $user1->post()->firstOrNew(['name' => 'First Post'], ['name' => 'New Post']);
- $this->assertSame('New Post', $post1->name);
- $user2 = EloquentTestUser::create(['email' => 'abigailotwell@gmail.com']);
- $post = $user2->post()->create(['name' => 'First Post']);
- $post2 = $user2->post()->firstOrNew(['name' => 'First Post'], ['name' => 'New Post']);
- $this->assertSame('First Post', $post2->name);
- $this->assertSame($post->id, $post2->id);
- }
- public function testFirstOrCreateOnHasOneRelationShip()
- {
- $user1 = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $post1 = $user1->post()->firstOrCreate(['name' => 'First Post'], ['name' => 'New Post']);
- $this->assertSame('New Post', $post1->name);
- $user2 = EloquentTestUser::create(['email' => 'abigailotwell@gmail.com']);
- $post = $user2->post()->create(['name' => 'First Post']);
- $post2 = $user2->post()->firstOrCreate(['name' => 'First Post'], ['name' => 'New Post']);
- $this->assertSame('First Post', $post2->name);
- $this->assertSame($post->id, $post2->id);
- }
- public function testHasOnSelfReferencingBelongsToManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $this->assertTrue(isset($user->friends[0]->id));
- $results = EloquentTestUser::has('friends')->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testWhereHasOnSelfReferencingBelongsToManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $results = EloquentTestUser::whereHas('friends', function ($query) {
- $query->where('email', 'abigailotwell@gmail.com');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testHasOnNestedSelfReferencingBelongsToManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $friend->friends()->create(['email' => 'foo@gmail.com']);
- $results = EloquentTestUser::has('friends.friends')->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testWhereHasOnNestedSelfReferencingBelongsToManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $friend->friends()->create(['email' => 'foo@gmail.com']);
- $results = EloquentTestUser::whereHas('friends.friends', function ($query) {
- $query->where('email', 'foo@gmail.com');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testHasOnSelfReferencingBelongsToManyRelationshipWithWherePivot()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $results = EloquentTestUser::has('friendsOne')->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testHasOnNestedSelfReferencingBelongsToManyRelationshipWithWherePivot()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $friend->friends()->create(['email' => 'foo@gmail.com']);
- $results = EloquentTestUser::has('friendsOne.friendsTwo')->get();
- $this->assertCount(1, $results);
- $this->assertSame('taylorotwell@gmail.com', $results->first()->email);
- }
- public function testHasOnSelfReferencingBelongsToRelationship()
- {
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 2]);
- $results = EloquentTestPost::has('parentPost')->get();
- $this->assertCount(1, $results);
- $this->assertSame('Child Post', $results->first()->name);
- }
- public function testAggregatedValuesOfDatetimeField()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'test1@test.test', 'created_at' => '2016-08-10 09:21:00', 'updated_at' => Carbon::now()]);
- EloquentTestUser::create(['id' => 2, 'email' => 'test2@test.test', 'created_at' => '2016-08-01 12:00:00', 'updated_at' => Carbon::now()]);
- $this->assertSame('2016-08-10 09:21:00', EloquentTestUser::max('created_at'));
- $this->assertSame('2016-08-01 12:00:00', EloquentTestUser::min('created_at'));
- }
- public function testWhereHasOnSelfReferencingBelongsToRelationship()
- {
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 2]);
- $results = EloquentTestPost::whereHas('parentPost', function ($query) {
- $query->where('name', 'Parent Post');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('Child Post', $results->first()->name);
- }
- public function testHasOnNestedSelfReferencingBelongsToRelationship()
- {
- $grandParentPost = EloquentTestPost::create(['name' => 'Grandparent Post', 'user_id' => 1]);
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'parent_id' => $grandParentPost->id, 'user_id' => 2]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 3]);
- $results = EloquentTestPost::has('parentPost.parentPost')->get();
- $this->assertCount(1, $results);
- $this->assertSame('Child Post', $results->first()->name);
- }
- public function testWhereHasOnNestedSelfReferencingBelongsToRelationship()
- {
- $grandParentPost = EloquentTestPost::create(['name' => 'Grandparent Post', 'user_id' => 1]);
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'parent_id' => $grandParentPost->id, 'user_id' => 2]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 3]);
- $results = EloquentTestPost::whereHas('parentPost.parentPost', function ($query) {
- $query->where('name', 'Grandparent Post');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('Child Post', $results->first()->name);
- }
- public function testHasOnSelfReferencingHasManyRelationship()
- {
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 2]);
- $results = EloquentTestPost::has('childPosts')->get();
- $this->assertCount(1, $results);
- $this->assertSame('Parent Post', $results->first()->name);
- }
- public function testWhereHasOnSelfReferencingHasManyRelationship()
- {
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 2]);
- $results = EloquentTestPost::whereHas('childPosts', function ($query) {
- $query->where('name', 'Child Post');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('Parent Post', $results->first()->name);
- }
- public function testHasOnNestedSelfReferencingHasManyRelationship()
- {
- $grandParentPost = EloquentTestPost::create(['name' => 'Grandparent Post', 'user_id' => 1]);
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'parent_id' => $grandParentPost->id, 'user_id' => 2]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 3]);
- $results = EloquentTestPost::has('childPosts.childPosts')->get();
- $this->assertCount(1, $results);
- $this->assertSame('Grandparent Post', $results->first()->name);
- }
- public function testWhereHasOnNestedSelfReferencingHasManyRelationship()
- {
- $grandParentPost = EloquentTestPost::create(['name' => 'Grandparent Post', 'user_id' => 1]);
- $parentPost = EloquentTestPost::create(['name' => 'Parent Post', 'parent_id' => $grandParentPost->id, 'user_id' => 2]);
- EloquentTestPost::create(['name' => 'Child Post', 'parent_id' => $parentPost->id, 'user_id' => 3]);
- $results = EloquentTestPost::whereHas('childPosts.childPosts', function ($query) {
- $query->where('name', 'Child Post');
- })->get();
- $this->assertCount(1, $results);
- $this->assertSame('Grandparent Post', $results->first()->name);
- }
- public function testHasWithNonWhereBindings()
- {
- $user = EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $user->posts()->create(['name' => 'Post 2'])
- ->photos()->create(['name' => 'photo.jpg']);
- $query = EloquentTestUser::has('postWithPhotos');
- $bindingsCount = count($query->getBindings());
- $questionMarksCount = substr_count($query->toSql(), '?');
- $this->assertEquals($questionMarksCount, $bindingsCount);
- }
- public function testHasOnMorphToRelationship()
- {
- $post = EloquentTestPost::create(['name' => 'Morph Post', 'user_id' => 1]);
- (new EloquentTestPhoto)->imageable()->associate($post)->fill(['name' => 'Morph Photo'])->save();
- $photos = EloquentTestPhoto::has('imageable')->get();
- $this->assertEquals(1, $photos->count());
- }
- public function testBelongsToManyRelationshipModelsAreProperlyHydratedWithSoleQuery()
- {
- $user = EloquentTestUserWithCustomFriendPivot::create(['email' => 'taylorotwell@gmail.com']);
- $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- $user->friends()->get()->each(function ($friend) {
- $this->assertInstanceOf(EloquentTestFriendPivot::class, $friend->pivot);
- });
- $soleFriend = $user->friends()->where('email', 'abigailotwell@gmail.com')->sole();
- $this->assertInstanceOf(EloquentTestFriendPivot::class, $soleFriend->pivot);
- }
- public function testBelongsToManyRelationshipMissingModelExceptionWithSoleQueryWorks()
- {
- $this->expectException(ModelNotFoundException::class);
- $user = EloquentTestUserWithCustomFriendPivot::create(['email' => 'taylorotwell@gmail.com']);
- $user->friends()->where('email', 'abigailotwell@gmail.com')->sole();
- }
- public function testBelongsToManyRelationshipModelsAreProperlyHydratedOverChunkedRequest()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::first()->friends()->chunk(2, function ($friends) use ($user, $friend) {
- $this->assertCount(1, $friends);
- $this->assertSame('abigailotwell@gmail.com', $friends->first()->email);
- $this->assertEquals($user->id, $friends->first()->pivot->user_id);
- $this->assertEquals($friend->id, $friends->first()->pivot->friend_id);
- });
- }
- public function testBelongsToManyRelationshipModelsAreProperlyHydratedOverEachRequest()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- EloquentTestUser::first()->friends()->each(function ($result) use ($user, $friend) {
- $this->assertSame('abigailotwell@gmail.com', $result->email);
- $this->assertEquals($user->id, $result->pivot->user_id);
- $this->assertEquals($friend->id, $result->pivot->friend_id);
- });
- }
- public function testBelongsToManyRelationshipModelsAreProperlyHydratedOverCursorRequest()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $friend = $user->friends()->create(['email' => 'abigailotwell@gmail.com']);
- foreach (EloquentTestUser::first()->friends()->cursor() as $result) {
- $this->assertSame('abigailotwell@gmail.com', $result->email);
- $this->assertEquals($user->id, $result->pivot->user_id);
- $this->assertEquals($friend->id, $result->pivot->friend_id);
- }
- }
- public function testBasicHasManyEagerLoading()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->posts()->create(['name' => 'First Post']);
- $user = EloquentTestUser::with('posts')->where('email', 'taylorotwell@gmail.com')->first();
- $this->assertSame('First Post', $user->posts->first()->name);
- $post = EloquentTestPost::with('user')->where('name', 'First Post')->get();
- $this->assertSame('taylorotwell@gmail.com', $post->first()->user->email);
- }
- public function testBasicNestedSelfReferencingHasManyEagerLoading()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $post = $user->posts()->create(['name' => 'First Post']);
- $post->childPosts()->create(['name' => 'Child Post', 'user_id' => $user->id]);
- $user = EloquentTestUser::with('posts.childPosts')->where('email', 'taylorotwell@gmail.com')->first();
- $this->assertNotNull($user->posts->first());
- $this->assertSame('First Post', $user->posts->first()->name);
- $this->assertNotNull($user->posts->first()->childPosts->first());
- $this->assertSame('Child Post', $user->posts->first()->childPosts->first()->name);
- $post = EloquentTestPost::with('parentPost.user')->where('name', 'Child Post')->get();
- $this->assertNotNull($post->first()->parentPost);
- $this->assertNotNull($post->first()->parentPost->user);
- $this->assertSame('taylorotwell@gmail.com', $post->first()->parentPost->user->email);
- }
- public function testBasicMorphManyRelationship()
- {
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->photos()->create(['name' => 'Avatar 1']);
- $user->photos()->create(['name' => 'Avatar 2']);
- $post = $user->posts()->create(['name' => 'First Post']);
- $post->photos()->create(['name' => 'Hero 1']);
- $post->photos()->create(['name' => 'Hero 2']);
- $this->assertInstanceOf(Collection::class, $user->photos);
- $this->assertInstanceOf(EloquentTestPhoto::class, $user->photos[0]);
- $this->assertInstanceOf(Collection::class, $post->photos);
- $this->assertInstanceOf(EloquentTestPhoto::class, $post->photos[0]);
- $this->assertCount(2, $user->photos);
- $this->assertCount(2, $post->photos);
- $this->assertSame('Avatar 1', $user->photos[0]->name);
- $this->assertSame('Avatar 2', $user->photos[1]->name);
- $this->assertSame('Hero 1', $post->photos[0]->name);
- $this->assertSame('Hero 2', $post->photos[1]->name);
- $photos = EloquentTestPhoto::orderBy('name')->get();
- $this->assertInstanceOf(Collection::class, $photos);
- $this->assertCount(4, $photos);
- $this->assertInstanceOf(EloquentTestUser::class, $photos[0]->imageable);
- $this->assertInstanceOf(EloquentTestPost::class, $photos[2]->imageable);
- $this->assertSame('taylorotwell@gmail.com', $photos[1]->imageable->email);
- $this->assertSame('First Post', $photos[3]->imageable->name);
- }
- public function testMorphMapIsUsedForCreatingAndFetchingThroughRelation()
- {
- Relation::morphMap([
- 'user' => EloquentTestUser::class,
- 'post' => EloquentTestPost::class,
- ]);
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->photos()->create(['name' => 'Avatar 1']);
- $user->photos()->create(['name' => 'Avatar 2']);
- $post = $user->posts()->create(['name' => 'First Post']);
- $post->photos()->create(['name' => 'Hero 1']);
- $post->photos()->create(['name' => 'Hero 2']);
- $this->assertInstanceOf(Collection::class, $user->photos);
- $this->assertInstanceOf(EloquentTestPhoto::class, $user->photos[0]);
- $this->assertInstanceOf(Collection::class, $post->photos);
- $this->assertInstanceOf(EloquentTestPhoto::class, $post->photos[0]);
- $this->assertCount(2, $user->photos);
- $this->assertCount(2, $post->photos);
- $this->assertSame('Avatar 1', $user->photos[0]->name);
- $this->assertSame('Avatar 2', $user->photos[1]->name);
- $this->assertSame('Hero 1', $post->photos[0]->name);
- $this->assertSame('Hero 2', $post->photos[1]->name);
- $this->assertSame('user', $user->photos[0]->imageable_type);
- $this->assertSame('user', $user->photos[1]->imageable_type);
- $this->assertSame('post', $post->photos[0]->imageable_type);
- $this->assertSame('post', $post->photos[1]->imageable_type);
- }
- public function testMorphMapIsUsedWhenFetchingParent()
- {
- Relation::morphMap([
- 'user' => EloquentTestUser::class,
- 'post' => EloquentTestPost::class,
- ]);
- $user = EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user->photos()->create(['name' => 'Avatar 1']);
- $photo = EloquentTestPhoto::first();
- $this->assertSame('user', $photo->imageable_type);
- $this->assertInstanceOf(EloquentTestUser::class, $photo->imageable);
- }
- public function testMorphMapIsMergedByDefault()
- {
- $map1 = [
- 'user' => EloquentTestUser::class,
- ];
- $map2 = [
- 'post' => EloquentTestPost::class,
- ];
- Relation::morphMap($map1);
- Relation::morphMap($map2);
- $this->assertEquals(array_merge($map1, $map2), Relation::morphMap());
- }
- public function testMorphMapOverwritesCurrentMap()
- {
- $map1 = [
- 'user' => EloquentTestUser::class,
- ];
- $map2 = [
- 'post' => EloquentTestPost::class,
- ];
- Relation::morphMap($map1, false);
- $this->assertEquals($map1, Relation::morphMap());
- Relation::morphMap($map2, false);
- $this->assertEquals($map2, Relation::morphMap());
- }
- public function testEmptyMorphToRelationship()
- {
- $photo = new EloquentTestPhoto;
- $this->assertNull($photo->imageable);
- }
- public function testSaveOrFail()
- {
- $date = '1970-01-01';
- $post = new EloquentTestPost([
- 'user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date,
- ]);
- $this->assertTrue($post->saveOrFail());
- $this->assertEquals(1, EloquentTestPost::count());
- }
- public function testSavingJSONFields()
- {
- $model = EloquentTestWithJSON::create(['json' => ['x' => 0]]);
- $this->assertEquals(['x' => 0], $model->json);
- $model->fillable(['json->y', 'json->a->b']);
- $model->update(['json->y' => '1']);
- $this->assertArrayNotHasKey('json->y', $model->toArray());
- $this->assertEquals(['x' => 0, 'y' => 1], $model->json);
- $model->update(['json->a->b' => '3']);
- $this->assertArrayNotHasKey('json->a->b', $model->toArray());
- $this->assertEquals(['x' => 0, 'y' => 1, 'a' => ['b' => 3]], $model->json);
- }
- public function testSaveOrFailWithDuplicatedEntry()
- {
- $this->expectException(QueryException::class);
- $this->expectExceptionMessage('SQLSTATE[23000]:');
- $date = '1970-01-01';
- EloquentTestPost::create([
- 'id' => 1, 'user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date,
- ]);
- $post = new EloquentTestPost([
- 'id' => 1, 'user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date,
- ]);
- $post->saveOrFail();
- }
- public function testMultiInsertsWithDifferentValues()
- {
- $date = '1970-01-01';
- $result = EloquentTestPost::insert([
- ['user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date],
- ['user_id' => 2, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date],
- ]);
- $this->assertTrue($result);
- $this->assertEquals(2, EloquentTestPost::count());
- }
- public function testMultiInsertsWithSameValues()
- {
- $date = '1970-01-01';
- $result = EloquentTestPost::insert([
- ['user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date],
- ['user_id' => 1, 'name' => 'Post', 'created_at' => $date, 'updated_at' => $date],
- ]);
- $this->assertTrue($result);
- $this->assertEquals(2, EloquentTestPost::count());
- }
- public function testNestedTransactions()
- {
- $user = EloquentTestUser::create(['email' => 'taylor@laravel.com']);
- $this->connection()->transaction(function () use ($user) {
- try {
- $this->connection()->transaction(function () use ($user) {
- $user->email = 'otwell@laravel.com';
- $user->save();
- throw new Exception;
- });
- } catch (Exception $e) {
- // ignore the exception
- }
- $user = EloquentTestUser::first();
- $this->assertSame('taylor@laravel.com', $user->email);
- });
- }
- public function testNestedTransactionsUsingSaveOrFailWillSucceed()
- {
- $user = EloquentTestUser::create(['email' => 'taylor@laravel.com']);
- $this->connection()->transaction(function () use ($user) {
- try {
- $user->email = 'otwell@laravel.com';
- $user->saveOrFail();
- } catch (Exception $e) {
- // ignore the exception
- }
- $user = EloquentTestUser::first();
- $this->assertSame('otwell@laravel.com', $user->email);
- $this->assertEquals(1, $user->id);
- });
- }
- public function testNestedTransactionsUsingSaveOrFailWillFails()
- {
- $user = EloquentTestUser::create(['email' => 'taylor@laravel.com']);
- $this->connection()->transaction(function () use ($user) {
- try {
- $user->id = 'invalid';
- $user->email = 'otwell@laravel.com';
- $user->saveOrFail();
- } catch (Exception $e) {
- // ignore the exception
- }
- $user = EloquentTestUser::first();
- $this->assertSame('taylor@laravel.com', $user->email);
- $this->assertEquals(1, $user->id);
- });
- }
- public function testToArrayIncludesDefaultFormattedTimestamps()
- {
- $model = new EloquentTestUser;
- $model->setRawAttributes([
- 'created_at' => '2012-12-04',
- 'updated_at' => '2012-12-05',
- ]);
- $array = $model->toArray();
- $this->assertSame('2012-12-04T00:00:00.000000Z', $array['created_at']);
- $this->assertSame('2012-12-05T00:00:00.000000Z', $array['updated_at']);
- }
- public function testToArrayIncludesCustomFormattedTimestamps()
- {
- $model = new EloquentTestUserWithCustomDateSerialization;
- $model->setRawAttributes([
- 'created_at' => '2012-12-04',
- 'updated_at' => '2012-12-05',
- ]);
- $array = $model->toArray();
- $this->assertSame('04-12-12', $array['created_at']);
- $this->assertSame('05-12-12', $array['updated_at']);
- }
- public function testIncrementingPrimaryKeysAreCastToIntegersByDefault()
- {
- EloquentTestUser::create(['email' => 'taylorotwell@gmail.com']);
- $user = EloquentTestUser::first();
- $this->assertIsInt($user->id);
- }
- public function testDefaultIncrementingPrimaryKeyIntegerCastCanBeOverwritten()
- {
- EloquentTestUserWithStringCastId::create(['email' => 'taylorotwell@gmail.com']);
- $user = EloquentTestUserWithStringCastId::first();
- $this->assertIsString($user->id);
- }
- public function testRelationsArePreloadedInGlobalScope()
- {
- $user = EloquentTestUserWithGlobalScope::create(['email' => 'taylorotwell@gmail.com']);
- $user->posts()->create(['name' => 'My Post']);
- $result = EloquentTestUserWithGlobalScope::first();
- $this->assertCount(1, $result->getRelations());
- }
- public function testModelIgnoredByGlobalScopeCanBeRefreshed()
- {
- $user = EloquentTestUserWithOmittingGlobalScope::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $this->assertNotNull($user->fresh());
- }
- public function testGlobalScopeCanBeRemovedByOtherGlobalScope()
- {
- $user = EloquentTestUserWithGlobalScopeRemovingOtherScope::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $user->delete();
- $this->assertNotNull(EloquentTestUserWithGlobalScopeRemovingOtherScope::find($user->id));
- }
- public function testForPageBeforeIdCorrectlyPaginates()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $results = EloquentTestUser::forPageBeforeId(15, 2);
- $this->assertInstanceOf(Builder::class, $results);
- $this->assertEquals(1, $results->first()->id);
- $results = EloquentTestUser::orderBy('id', 'desc')->forPageBeforeId(15, 2);
- $this->assertInstanceOf(Builder::class, $results);
- $this->assertEquals(1, $results->first()->id);
- }
- public function testForPageAfterIdCorrectlyPaginates()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'abigailotwell@gmail.com']);
- $results = EloquentTestUser::forPageAfterId(15, 1);
- $this->assertInstanceOf(Builder::class, $results);
- $this->assertEquals(2, $results->first()->id);
- $results = EloquentTestUser::orderBy('id', 'desc')->forPageAfterId(15, 1);
- $this->assertInstanceOf(Builder::class, $results);
- $this->assertEquals(2, $results->first()->id);
- }
- public function testMorphToRelationsAcrossDatabaseConnections()
- {
- $item = null;
- EloquentTestItem::create(['id' => 1]);
- EloquentTestOrder::create(['id' => 1, 'item_type' => EloquentTestItem::class, 'item_id' => 1]);
- try {
- $item = EloquentTestOrder::first()->item;
- } catch (Exception $e) {
- // ignore the exception
- }
- $this->assertInstanceOf(EloquentTestItem::class, $item);
- }
- public function testEagerLoadedMorphToRelationsOnAnotherDatabaseConnection()
- {
- EloquentTestPost::create(['id' => 1, 'name' => 'Default Connection Post', 'user_id' => 1]);
- EloquentTestPhoto::create(['id' => 1, 'imageable_type' => EloquentTestPost::class, 'imageable_id' => 1, 'name' => 'Photo']);
- EloquentTestPost::on('second_connection')
- ->create(['id' => 1, 'name' => 'Second Connection Post', 'user_id' => 1]);
- EloquentTestPhoto::on('second_connection')
- ->create(['id' => 1, 'imageable_type' => EloquentTestPost::class, 'imageable_id' => 1, 'name' => 'Photo']);
- $defaultConnectionPost = EloquentTestPhoto::with('imageable')->first()->imageable;
- $secondConnectionPost = EloquentTestPhoto::on('second_connection')->with('imageable')->first()->imageable;
- $this->assertSame('Default Connection Post', $defaultConnectionPost->name);
- $this->assertSame('Second Connection Post', $secondConnectionPost->name);
- }
- public function testBelongsToManyCustomPivot()
- {
- $john = EloquentTestUserWithCustomFriendPivot::create(['id' => 1, 'name' => 'John Doe', 'email' => 'johndoe@example.com']);
- $jane = EloquentTestUserWithCustomFriendPivot::create(['id' => 2, 'name' => 'Jane Doe', 'email' => 'janedoe@example.com']);
- $jack = EloquentTestUserWithCustomFriendPivot::create(['id' => 3, 'name' => 'Jack Doe', 'email' => 'jackdoe@example.com']);
- $jule = EloquentTestUserWithCustomFriendPivot::create(['id' => 4, 'name' => 'Jule Doe', 'email' => 'juledoe@example.com']);
- EloquentTestFriendLevel::create(['id' => 1, 'level' => 'acquaintance']);
- EloquentTestFriendLevel::create(['id' => 2, 'level' => 'friend']);
- EloquentTestFriendLevel::create(['id' => 3, 'level' => 'bff']);
- $john->friends()->attach($jane, ['friend_level_id' => 1]);
- $john->friends()->attach($jack, ['friend_level_id' => 2]);
- $john->friends()->attach($jule, ['friend_level_id' => 3]);
- $johnWithFriends = EloquentTestUserWithCustomFriendPivot::with('friends')->find(1);
- $this->assertCount(3, $johnWithFriends->friends);
- $this->assertSame('friend', $johnWithFriends->friends->find(3)->pivot->level->level);
- $this->assertSame('Jule Doe', $johnWithFriends->friends->find(4)->pivot->friend->name);
- }
- public function testIsAfterRetrievingTheSameModel()
- {
- $saved = EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $retrieved = EloquentTestUser::find(1);
- $this->assertTrue($saved->is($retrieved));
- }
- public function testFreshMethodOnModel()
- {
- $now = Carbon::now();
- $nowSerialized = $now->startOfSecond()->toJSON();
- $nowWithFractionsSerialized = $now->toJSON();
- Carbon::setTestNow($now);
- $storedUser1 = EloquentTestUser::create([
- 'id' => 1,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $now,
- ]);
- $storedUser1->newQuery()->update([
- 'email' => 'dev@mathieutu.ovh',
- 'name' => 'Mathieu TUDISCO',
- ]);
- $freshStoredUser1 = $storedUser1->fresh();
- $storedUser2 = EloquentTestUser::create([
- 'id' => 2,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $now,
- ]);
- $storedUser2->newQuery()->update(['email' => 'dev@mathieutu.ovh']);
- $freshStoredUser2 = $storedUser2->fresh();
- $notStoredUser = new EloquentTestUser([
- 'id' => 3,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $now,
- ]);
- $freshNotStoredUser = $notStoredUser->fresh();
- $this->assertEquals([
- 'id' => 1,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $nowWithFractionsSerialized,
- 'created_at' => $nowSerialized,
- 'updated_at' => $nowSerialized,
- ], $storedUser1->toArray());
- $this->assertEquals([
- 'id' => 1,
- 'name' => 'Mathieu TUDISCO',
- 'email' => 'dev@mathieutu.ovh',
- 'birthday' => $nowWithFractionsSerialized,
- 'created_at' => $nowSerialized,
- 'updated_at' => $nowSerialized,
- ], $freshStoredUser1->toArray());
- $this->assertInstanceOf(EloquentTestUser::class, $storedUser1);
- $this->assertEquals([
- 'id' => 2,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $nowWithFractionsSerialized,
- 'created_at' => $nowSerialized,
- 'updated_at' => $nowSerialized,
- ], $storedUser2->toArray());
- $this->assertEquals([
- 'id' => 2,
- 'name' => null,
- 'email' => 'dev@mathieutu.ovh',
- 'birthday' => $nowWithFractionsSerialized,
- 'created_at' => $nowSerialized,
- 'updated_at' => $nowSerialized,
- ], $freshStoredUser2->toArray());
- $this->assertInstanceOf(EloquentTestUser::class, $storedUser2);
- $this->assertEquals([
- 'id' => 3,
- 'email' => 'taylorotwell@gmail.com',
- 'birthday' => $nowWithFractionsSerialized,
- ], $notStoredUser->toArray());
- $this->assertNull($freshNotStoredUser);
- }
- public function testFreshMethodOnCollection()
- {
- EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- EloquentTestUser::create(['id' => 2, 'email' => 'taylorotwell@gmail.com']);
- $users = EloquentTestUser::all()
- ->add(new EloquentTestUser(['id' => 3, 'email' => 'taylorotwell@gmail.com']));
- EloquentTestUser::find(1)->update(['name' => 'Mathieu TUDISCO']);
- EloquentTestUser::find(2)->update(['email' => 'dev@mathieutu.ovh']);
- $this->assertCount(3, $users);
- $this->assertNotSame('Mathieu TUDISCO', $users[0]->name);
- $this->assertNotSame('dev@mathieutu.ovh', $users[1]->email);
- $refreshedUsers = $users->fresh();
- $this->assertCount(2, $refreshedUsers);
- $this->assertSame('Mathieu TUDISCO', $refreshedUsers[0]->name);
- $this->assertSame('dev@mathieutu.ovh', $refreshedUsers[1]->email);
- }
- public function testTimestampsUsingDefaultDateFormat()
- {
- $model = new EloquentTestUser;
- $model->setDateFormat('Y-m-d H:i:s'); // Default MySQL/PostgreSQL/SQLite date format
- $model->setRawAttributes([
- 'created_at' => '2017-11-14 08:23:19',
- ]);
- $this->assertSame('2017-11-14 08:23:19', $model->fromDateTime($model->getAttribute('created_at')));
- }
- public function testTimestampsUsingDefaultSqlServerDateFormat()
- {
- $model = new EloquentTestUser;
- $model->setDateFormat('Y-m-d H:i:s.v'); // Default SQL Server date format
- $model->setRawAttributes([
- 'created_at' => '2017-11-14 08:23:19.000',
- 'updated_at' => '2017-11-14 08:23:19.734',
- ]);
- $this->assertSame('2017-11-14 08:23:19.000', $model->fromDateTime($model->getAttribute('created_at')));
- $this->assertSame('2017-11-14 08:23:19.734', $model->fromDateTime($model->getAttribute('updated_at')));
- }
- public function testTimestampsUsingCustomDateFormat()
- {
- // Simulating using custom precisions with timestamps(4)
- $model = new EloquentTestUser;
- $model->setDateFormat('Y-m-d H:i:s.u'); // Custom date format
- $model->setRawAttributes([
- 'created_at' => '2017-11-14 08:23:19.0000',
- 'updated_at' => '2017-11-14 08:23:19.7348',
- ]);
- // Note: when storing databases would truncate the value to the given precision
- $this->assertSame('2017-11-14 08:23:19.000000', $model->fromDateTime($model->getAttribute('created_at')));
- $this->assertSame('2017-11-14 08:23:19.734800', $model->fromDateTime($model->getAttribute('updated_at')));
- }
- public function testTimestampsUsingOldSqlServerDateFormat()
- {
- $model = new EloquentTestUser;
- $model->setDateFormat('Y-m-d H:i:s.000'); // Old SQL Server date format
- $model->setRawAttributes([
- 'created_at' => '2017-11-14 08:23:19.000',
- ]);
- $this->assertSame('2017-11-14 08:23:19.000', $model->fromDateTime($model->getAttribute('created_at')));
- }
- public function testTimestampsUsingOldSqlServerDateFormatFallbackToDefaultParsing()
- {
- $model = new EloquentTestUser;
- $model->setDateFormat('Y-m-d H:i:s.000'); // Old SQL Server date format
- $model->setRawAttributes([
- 'updated_at' => '2017-11-14 08:23:19.734',
- ]);
- $date = $model->getAttribute('updated_at');
- $this->assertSame('2017-11-14 08:23:19.734', $date->format('Y-m-d H:i:s.v'), 'the date should contains the precision');
- $this->assertSame('2017-11-14 08:23:19.000', $model->fromDateTime($date), 'the format should trims it');
- // No longer throwing exception since Laravel 7,
- // but Date::hasFormat() can be used instead to check date formatting:
- $this->assertTrue(Date::hasFormat('2017-11-14 08:23:19.000', $model->getDateFormat()));
- $this->assertFalse(Date::hasFormat('2017-11-14 08:23:19.734', $model->getDateFormat()));
- }
- public function testSpecialFormats()
- {
- $model = new EloquentTestUser;
- $model->setDateFormat('!Y-d-m \\Y');
- $model->setRawAttributes([
- 'updated_at' => '2017-05-11 Y',
- ]);
- $date = $model->getAttribute('updated_at');
- $this->assertSame('2017-11-05 00:00:00.000000', $date->format('Y-m-d H:i:s.u'), 'the date should respect the whole format');
- $model->setDateFormat('Y d m|');
- $model->setRawAttributes([
- 'updated_at' => '2020 11 09',
- ]);
- $date = $model->getAttribute('updated_at');
- $this->assertSame('2020-09-11 00:00:00.000000', $date->format('Y-m-d H:i:s.u'), 'the date should respect the whole format');
- $model->setDateFormat('Y d m|*');
- $model->setRawAttributes([
- 'updated_at' => '2020 11 09 foo',
- ]);
- $date = $model->getAttribute('updated_at');
- $this->assertSame('2020-09-11 00:00:00.000000', $date->format('Y-m-d H:i:s.u'), 'the date should respect the whole format');
- }
- public function testUpdatingChildModelTouchesParent()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- $post->update(['name' => 'Updated']);
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is not touching model own timestamps.');
- $this->assertTrue($future->isSameDay($user->fresh()->updated_at), 'It is not touching models related timestamps.');
- Carbon::setTestNow($before);
- }
- public function testMultiLevelTouchingWorks()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingComment::create(['content' => 'Comment content', 'post_id' => 1]);
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is not touching models related timestamps.');
- $this->assertTrue($future->isSameDay($user->fresh()->updated_at), 'It is not touching models related timestamps.');
- Carbon::setTestNow($before);
- }
- public function testDeletingChildModelTouchesParentTimestamps()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- $post->delete();
- $this->assertTrue($future->isSameDay($user->fresh()->updated_at), 'It is not touching models related timestamps.');
- Carbon::setTestNow($before);
- }
- public function testTouchingChildModelUpdatesParentsTimestamps()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- $post->touch();
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is not touching model own timestamps.');
- $this->assertTrue($future->isSameDay($user->fresh()->updated_at), 'It is not touching models related timestamps.');
- Carbon::setTestNow($before);
- }
- public function testTouchingChildModelRespectsParentNoTouching()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingUser::withoutTouching(function () use ($post) {
- $post->touch();
- });
- $this->assertTrue(
- $future->isSameDay($post->fresh()->updated_at),
- 'It is not touching model own timestamps in withoutTouching scope.'
- );
- $this->assertTrue(
- $before->isSameDay($user->fresh()->updated_at),
- 'It is touching model own timestamps in withoutTouching scope, when it should not.'
- );
- Carbon::setTestNow($before);
- }
- public function testUpdatingChildPostRespectsNoTouchingDefinition()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingUser::withoutTouching(function () use ($post) {
- $post->update(['name' => 'Updated']);
- });
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is not touching model own timestamps when it should.');
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models relationships when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testUpdatingModelInTheDisabledScopeTouchesItsOwnTimestamps()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- Model::withoutTouching(function () use ($post) {
- $post->update(['name' => 'Updated']);
- });
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is touching models when it should be disabled.');
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testDeletingChildModelRespectsTheNoTouchingRule()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingUser::withoutTouching(function () use ($post) {
- $post->delete();
- });
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testRespectedMultiLevelTouchingChain()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingUser::withoutTouching(function () {
- EloquentTouchingComment::create(['content' => 'Comment content', 'post_id' => 1]);
- });
- $this->assertTrue($future->isSameDay($post->fresh()->updated_at), 'It is touching models when it should be disabled.');
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testTouchesGreatParentEvenWhenParentIsInNoTouchScope()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingPost::withoutTouching(function () {
- EloquentTouchingComment::create(['content' => 'Comment content', 'post_id' => 1]);
- });
- $this->assertTrue($before->isSameDay($post->fresh()->updated_at), 'It is touching models when it should be disabled.');
- $this->assertTrue($future->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testCanNestCallsOfNoTouching()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- EloquentTouchingUser::withoutTouching(function () {
- EloquentTouchingPost::withoutTouching(function () {
- EloquentTouchingComment::create(['content' => 'Comment content', 'post_id' => 1]);
- });
- });
- $this->assertTrue($before->isSameDay($post->fresh()->updated_at), 'It is touching models when it should be disabled.');
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testCanPassArrayOfModelsToIgnore()
- {
- $before = Carbon::now();
- $user = EloquentTouchingUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $post = EloquentTouchingPost::create(['id' => 1, 'name' => 'Parent Post', 'user_id' => 1]);
- $this->assertTrue($before->isSameDay($user->updated_at));
- $this->assertTrue($before->isSameDay($post->updated_at));
- Carbon::setTestNow($future = $before->copy()->addDays(3));
- Model::withoutTouchingOn([EloquentTouchingUser::class, EloquentTouchingPost::class], function () {
- EloquentTouchingComment::create(['content' => 'Comment content', 'post_id' => 1]);
- });
- $this->assertTrue($before->isSameDay($post->fresh()->updated_at), 'It is touching models when it should be disabled.');
- $this->assertTrue($before->isSameDay($user->fresh()->updated_at), 'It is touching models when it should be disabled.');
- Carbon::setTestNow($before);
- }
- public function testWhenBaseModelIsIgnoredAllChildModelsAreIgnored()
- {
- $this->assertFalse(Model::isIgnoringTouch());
- $this->assertFalse(User::isIgnoringTouch());
- Model::withoutTouching(function () {
- $this->assertTrue(Model::isIgnoringTouch());
- $this->assertTrue(User::isIgnoringTouch());
- });
- $this->assertFalse(User::isIgnoringTouch());
- $this->assertFalse(Model::isIgnoringTouch());
- }
- public function testChildModelsAreIgnored()
- {
- $this->assertFalse(Model::isIgnoringTouch());
- $this->assertFalse(User::isIgnoringTouch());
- $this->assertFalse(Post::isIgnoringTouch());
- User::withoutTouching(function () {
- $this->assertFalse(Model::isIgnoringTouch());
- $this->assertFalse(Post::isIgnoringTouch());
- $this->assertTrue(User::isIgnoringTouch());
- });
- $this->assertFalse(Post::isIgnoringTouch());
- $this->assertFalse(User::isIgnoringTouch());
- $this->assertFalse(Model::isIgnoringTouch());
- }
- public function testPivotsCanBeRefreshed()
- {
- EloquentTestFriendLevel::create(['id' => 1, 'level' => 'acquaintance']);
- EloquentTestFriendLevel::create(['id' => 2, 'level' => 'friend']);
- $user = EloquentTestUser::create(['id' => 1, 'email' => 'taylorotwell@gmail.com']);
- $user->friends()->create(['id' => 2, 'email' => 'abigailotwell@gmail.com'], ['friend_level_id' => 1]);
- $pivot = $user->friends[0]->pivot;
- // Simulate a change that happened externally
- DB::table('friends')->where('user_id', 1)->where('friend_id', 2)->update([
- 'friend_level_id' => 2,
- ]);
- $this->assertInstanceOf(Pivot::class, $freshPivot = $pivot->fresh());
- $this->assertEquals(2, $freshPivot->friend_level_id);
- $this->assertSame($pivot, $pivot->refresh());
- $this->assertEquals(2, $pivot->friend_level_id);
- }
- public function testMorphPivotsCanBeRefreshed()
- {
- $post = EloquentTestPost::create(['name' => 'MorphToMany Post', 'user_id' => 1]);
- $post->tags()->create(['id' => 1, 'name' => 'News']);
- $pivot = $post->tags[0]->pivot;
- // Simulate a change that happened externally
- DB::table('taggables')
- ->where([
- 'taggable_type' => EloquentTestPost::class,
- 'taggable_id' => 1,
- 'tag_id' => 1,
- ])
- ->update([
- 'taxonomy' => 'primary',
- ]);
- $this->assertInstanceOf(MorphPivot::class, $freshPivot = $pivot->fresh());
- $this->assertSame('primary', $freshPivot->taxonomy);
- $this->assertSame($pivot, $pivot->refresh());
- $this->assertSame('primary', $pivot->taxonomy);
- }
- /**
- * Helpers...
- */
- /**
- * Get a database connection instance.
- *
- * @return \Illuminate\Database\Connection
- */
- protected function connection($connection = 'default')
- {
- return Eloquent::getConnectionResolver()->connection($connection);
- }
- /**
- * Get a schema builder instance.
- *
- * @return \Illuminate\Database\Schema\Builder
- */
- protected function schema($connection = 'default')
- {
- return $this->connection($connection)->getSchemaBuilder();
- }
- }
- /**
- * Eloquent Models...
- */
- class EloquentTestUser extends Eloquent
- {
- protected $table = 'users';
- protected $casts = ['birthday' => 'datetime'];
- protected $guarded = [];
- public function friends()
- {
- return $this->belongsToMany(self::class, 'friends', 'user_id', 'friend_id');
- }
- public function friendsOne()
- {
- return $this->belongsToMany(self::class, 'friends', 'user_id', 'friend_id')->wherePivot('user_id', 1);
- }
- public function friendsTwo()
- {
- return $this->belongsToMany(self::class, 'friends', 'user_id', 'friend_id')->wherePivot('user_id', 2);
- }
- public function posts()
- {
- return $this->hasMany(EloquentTestPost::class, 'user_id');
- }
- public function post()
- {
- return $this->hasOne(EloquentTestPost::class, 'user_id');
- }
- public function photos()
- {
- return $this->morphMany(EloquentTestPhoto::class, 'imageable');
- }
- public function postWithPhotos()
- {
- return $this->post()->join('photo', function ($join) {
- $join->on('photo.imageable_id', 'post.id');
- $join->where('photo.imageable_type', 'EloquentTestPost');
- });
- }
- }
- class EloquentTestUserWithCustomFriendPivot extends EloquentTestUser
- {
- public function friends()
- {
- return $this->belongsToMany(EloquentTestUser::class, 'friends', 'user_id', 'friend_id')
- ->using(EloquentTestFriendPivot::class)->withPivot('user_id', 'friend_id', 'friend_level_id');
- }
- }
- class EloquentTestUserWithSpaceInColumnName extends EloquentTestUser
- {
- protected $table = 'users_with_space_in_colum_name';
- }
- class EloquentTestNonIncrementing extends Eloquent
- {
- protected $table = 'non_incrementing_users';
- protected $guarded = [];
- public $incrementing = false;
- public $timestamps = false;
- }
- class EloquentTestNonIncrementingSecond extends EloquentTestNonIncrementing
- {
- protected $connection = 'second_connection';
- }
- class EloquentTestUserWithGlobalScope extends EloquentTestUser
- {
- public static function boot()
- {
- parent::boot();
- static::addGlobalScope(function ($builder) {
- $builder->with('posts');
- });
- }
- }
- class EloquentTestUserWithOmittingGlobalScope extends EloquentTestUser
- {
- public static function boot()
- {
- parent::boot();
- static::addGlobalScope(function ($builder) {
- $builder->where('email', '!=', 'taylorotwell@gmail.com');
- });
- }
- }
- class EloquentTestUserWithGlobalScopeRemovingOtherScope extends Eloquent
- {
- use SoftDeletes;
- protected $table = 'soft_deleted_users';
- protected $guarded = [];
- public static function boot()
- {
- static::addGlobalScope(function ($builder) {
- $builder->withoutGlobalScope(SoftDeletingScope::class);
- });
- parent::boot();
- }
- }
- class EloquentTestPost extends Eloquent
- {
- protected $table = 'posts';
- protected $guarded = [];
- public function user()
- {
- return $this->belongsTo(EloquentTestUser::class, 'user_id');
- }
- public function photos()
- {
- return $this->morphMany(EloquentTestPhoto::class, 'imageable');
- }
- public function childPosts()
- {
- return $this->hasMany(self::class, 'parent_id');
- }
- public function parentPost()
- {
- return $this->belongsTo(self::class, 'parent_id');
- }
- public function tags()
- {
- return $this->morphToMany(EloquentTestTag::class, 'taggable', null, null, 'tag_id')->withPivot('taxonomy');
- }
- }
- class EloquentTestTag extends Eloquent
- {
- protected $table = 'tags';
- protected $guarded = [];
- }
- class EloquentTestFriendLevel extends Eloquent
- {
- protected $table = 'friend_levels';
- protected $guarded = [];
- }
- class EloquentTestPhoto extends Eloquent
- {
- protected $table = 'photos';
- protected $guarded = [];
- public function imageable()
- {
- return $this->morphTo();
- }
- }
- class EloquentTestUserWithStringCastId extends EloquentTestUser
- {
- protected $casts = [
- 'id' => 'string',
- ];
- }
- class EloquentTestUserWithCustomDateSerialization extends EloquentTestUser
- {
- protected function serializeDate(DateTimeInterface $date)
- {
- return $date->format('d-m-y');
- }
- }
- class EloquentTestOrder extends Eloquent
- {
- protected $guarded = [];
- protected $table = 'test_orders';
- protected $with = ['item'];
- public function item()
- {
- return $this->morphTo();
- }
- }
- class EloquentTestItem extends Eloquent
- {
- protected $guarded = [];
- protected $table = 'test_items';
- protected $connection = 'second_connection';
- }
- class EloquentTestWithJSON extends Eloquent
- {
- protected $guarded = [];
- protected $table = 'with_json';
- public $timestamps = false;
- protected $casts = [
- 'json' => 'array',
- ];
- }
- class EloquentTestFriendPivot extends Pivot
- {
- protected $table = 'friends';
- protected $guarded = [];
- public function user()
- {
- return $this->belongsTo(EloquentTestUser::class);
- }
- public function friend()
- {
- return $this->belongsTo(EloquentTestUser::class);
- }
- public function level()
- {
- return $this->belongsTo(EloquentTestFriendLevel::class, 'friend_level_id');
- }
- }
- class EloquentTouchingUser extends Eloquent
- {
- protected $table = 'users';
- protected $guarded = [];
- }
- class EloquentTouchingPost extends Eloquent
- {
- protected $table = 'posts';
- protected $guarded = [];
- protected $touches = [
- 'user',
- ];
- public function user()
- {
- return $this->belongsTo(EloquentTouchingUser::class, 'user_id');
- }
- }
- class EloquentTouchingComment extends Eloquent
- {
- protected $table = 'comments';
- protected $guarded = [];
- protected $touches = [
- 'post',
- ];
- public function post()
- {
- return $this->belongsTo(EloquentTouchingPost::class, 'post_id');
- }
- }
|