X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/pull/3068/head:/tests/Entity/CommentTest.php diff --git a/tests/Entity/CommentTest.php b/tests/Entity/CommentTest.php index 63d1a29a2..1e8ecbcac 100644 --- a/tests/Entity/CommentTest.php +++ b/tests/Entity/CommentTest.php @@ -1,18 +1,19 @@ -asAdmin(); $page = Page::first(); - $comment = factory(Comment::class)->make(['parent_id' => 2]); + $comment = Comment::factory()->make(['parent_id' => 2]); $resp = $this->postJson("/comment/$page->id", $comment->getAttributes()); $resp->assertStatus(200); @@ -22,11 +23,11 @@ class CommentTest extends TestCase $pageResp->assertSee($comment->text); $this->assertDatabaseHas('comments', [ - 'local_id' => 1, - 'entity_id' => $page->id, + 'local_id' => 1, + 'entity_id' => $page->id, 'entity_type' => Page::newModelInstance()->getMorphClass(), - 'text' => $comment->text, - 'parent_id' => 2 + 'text' => $comment->text, + 'parent_id' => 2, ]); } @@ -35,7 +36,7 @@ class CommentTest extends TestCase $this->asAdmin(); $page = Page::first(); - $comment = factory(Comment::class)->make(); + $comment = Comment::factory()->make(); $this->postJson("/comment/$page->id", $comment->getAttributes()); $comment = $page->comments()->first(); @@ -49,8 +50,8 @@ class CommentTest extends TestCase $resp->assertDontSee($comment->text); $this->assertDatabaseHas('comments', [ - 'text' => $newText, - 'entity_id' => $page->id + 'text' => $newText, + 'entity_id' => $page->id, ]); } @@ -59,7 +60,7 @@ class CommentTest extends TestCase $this->asAdmin(); $page = Page::first(); - $comment = factory(Comment::class)->make(); + $comment = Comment::factory()->make(); $this->postJson("/comment/$page->id", $comment->getAttributes()); $comment = $page->comments()->first(); @@ -68,7 +69,7 @@ class CommentTest extends TestCase $resp->assertStatus(200); $this->assertDatabaseMissing('comments', [ - 'id' => $comment->id + 'id' => $comment->id, ]); } @@ -80,14 +81,14 @@ class CommentTest extends TestCase ]); $this->assertDatabaseHas('comments', [ - 'entity_id' => $page->id, + 'entity_id' => $page->id, 'entity_type' => $page->getMorphClass(), - 'text' => '# My Title', - 'html' => "