From 0359e2490a347c2bc245b21535e6939254493767 Mon Sep 17 00:00:00 2001 From: Dan Brown <ssddanbrown@googlemail.com> Date: Wed, 19 Jul 2023 10:09:08 +0100 Subject: [PATCH] Comments: Updated testing to check for new activities --- tests/Entity/CommentTest.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/Entity/CommentTest.php b/tests/Entity/CommentTest.php index b3e9f3cd0..0a71bb6ef 100644 --- a/tests/Entity/CommentTest.php +++ b/tests/Entity/CommentTest.php @@ -2,6 +2,7 @@ namespace Tests\Entity; +use BookStack\Activity\ActivityType; use BookStack\Activity\Models\Comment; use BookStack\Entities\Models\Page; use Tests\TestCase; @@ -29,6 +30,8 @@ class CommentTest extends TestCase 'text' => $comment->text, 'parent_id' => 2, ]); + + $this->assertActivityExists(ActivityType::COMMENT_CREATE); } public function test_comment_edit() @@ -53,6 +56,8 @@ class CommentTest extends TestCase 'text' => $newText, 'entity_id' => $page->id, ]); + + $this->assertActivityExists(ActivityType::COMMENT_UPDATE); } public function test_comment_delete() @@ -71,6 +76,8 @@ class CommentTest extends TestCase $this->assertDatabaseMissing('comments', [ 'id' => $comment->id, ]); + + $this->assertActivityExists(ActivityType::COMMENT_DELETE); } public function test_comments_converts_markdown_input_to_html()