Test comment creator name truncation

This commit is contained in:
Bajszi 2023-09-12 21:00:00 +02:00
parent f4deb13301
commit 83028f3fbe

View File

@ -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…');
}
}