mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-02 15:30:06 +00:00
Comments: Updated testing to check for new activities
This commit is contained in:
parent
422e50302a
commit
0359e2490a
1 changed files with 7 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
namespace Tests\Entity;
|
namespace Tests\Entity;
|
||||||
|
|
||||||
|
use BookStack\Activity\ActivityType;
|
||||||
use BookStack\Activity\Models\Comment;
|
use BookStack\Activity\Models\Comment;
|
||||||
use BookStack\Entities\Models\Page;
|
use BookStack\Entities\Models\Page;
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
@ -29,6 +30,8 @@ class CommentTest extends TestCase
|
||||||
'text' => $comment->text,
|
'text' => $comment->text,
|
||||||
'parent_id' => 2,
|
'parent_id' => 2,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->assertActivityExists(ActivityType::COMMENT_CREATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_comment_edit()
|
public function test_comment_edit()
|
||||||
|
@ -53,6 +56,8 @@ class CommentTest extends TestCase
|
||||||
'text' => $newText,
|
'text' => $newText,
|
||||||
'entity_id' => $page->id,
|
'entity_id' => $page->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->assertActivityExists(ActivityType::COMMENT_UPDATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_comment_delete()
|
public function test_comment_delete()
|
||||||
|
@ -71,6 +76,8 @@ class CommentTest extends TestCase
|
||||||
$this->assertDatabaseMissing('comments', [
|
$this->assertDatabaseMissing('comments', [
|
||||||
'id' => $comment->id,
|
'id' => $comment->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->assertActivityExists(ActivityType::COMMENT_DELETE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_comments_converts_markdown_input_to_html()
|
public function test_comments_converts_markdown_input_to_html()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue