2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Entity;
|
2017-11-17 02:02:36 +08:00
|
|
|
|
2021-05-30 06:42:21 +08:00
|
|
|
use Tests\TestCase;
|
2017-11-17 02:02:36 +08:00
|
|
|
|
2021-05-30 06:42:21 +08:00
|
|
|
class CommentSettingTest extends TestCase
|
2020-04-04 08:16:05 +08:00
|
|
|
{
|
|
|
|
public function test_comment_disable()
|
|
|
|
{
|
2022-09-30 05:11:16 +08:00
|
|
|
$page = $this->entities->page();
|
2020-04-04 08:16:05 +08:00
|
|
|
$this->setSettings(['app-disable-comments' => 'true']);
|
2021-05-30 06:42:21 +08:00
|
|
|
$this->asAdmin();
|
2017-11-17 02:02:36 +08:00
|
|
|
|
2022-09-30 05:11:16 +08:00
|
|
|
$resp = $this->asAdmin()->get($page->getUrl());
|
2022-07-23 22:10:18 +08:00
|
|
|
$this->withHtml($resp)->assertElementNotExists('.comments-list');
|
2020-04-04 08:16:05 +08:00
|
|
|
}
|
2017-11-17 02:02:36 +08:00
|
|
|
|
2020-04-04 08:16:05 +08:00
|
|
|
public function test_comment_enable()
|
|
|
|
{
|
2022-09-30 05:11:16 +08:00
|
|
|
$page = $this->entities->page();
|
2020-04-04 08:16:05 +08:00
|
|
|
$this->setSettings(['app-disable-comments' => 'false']);
|
2021-05-30 06:42:21 +08:00
|
|
|
$this->asAdmin();
|
2020-04-04 08:16:05 +08:00
|
|
|
|
2022-09-30 05:11:16 +08:00
|
|
|
$resp = $this->asAdmin()->get($page->getUrl());
|
2022-07-23 22:10:18 +08:00
|
|
|
$this->withHtml($resp)->assertElementExists('.comments-list');
|
2020-04-04 08:16:05 +08:00
|
|
|
}
|
2021-06-26 23:23:15 +08:00
|
|
|
}
|