mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 20:11:15 +08:00
Test comment creator name truncation
This commit is contained in:
parent
f4deb13301
commit
83028f3fbe
|
@ -152,4 +152,20 @@ class CommentTest extends TestCase
|
|||
$respHtml = $this->withHtml($this->get($page->getUrl('/edit')));
|
||||
$respHtml->assertElementContains('.comment-box .content', 'My great comment to see in the editor');
|
||||
}
|
||||
|
||||
public function test_comment_creator_name_truncated()
|
||||
{
|
||||
$longNamedUser = $this->users->admin();
|
||||
$longNamedUser->name = 'Wolfeschlegelsteinhausenbergerdorff';
|
||||
$longNamedUser->save();
|
||||
$this->actingAs($longNamedUser);
|
||||
|
||||
$page = $this->entities->page();
|
||||
|
||||
$comment = Comment::factory()->make();
|
||||
$this->postJson("/comment/$page->id", $comment->getAttributes());
|
||||
|
||||
$pageResp = $this->get($page->getUrl());
|
||||
$pageResp->assertSee('Wolfeschlegel…');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user