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