2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Entity;
|
2017-11-16 13:02:36 -05:00
|
|
|
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Page;
|
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
|
|
|
{
|
|
|
|
protected $page;
|
2017-11-16 13:02:36 -05:00
|
|
|
|
2021-10-30 16:29:59 -04:00
|
|
|
protected function setUp(): void
|
2020-04-03 20:16:05 -04:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2021-05-29 18:42:21 -04:00
|
|
|
$this->page = Page::query()->first();
|
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_disable()
|
|
|
|
{
|
|
|
|
$this->setSettings(['app-disable-comments' => 'true']);
|
2021-05-29 18:42:21 -04:00
|
|
|
$this->asAdmin();
|
2017-11-16 13:02:36 -05:00
|
|
|
|
2021-05-29 18:42:21 -04:00
|
|
|
$this->asAdmin()->get($this->page->getUrl())
|
|
|
|
->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()
|
|
|
|
{
|
|
|
|
$this->setSettings(['app-disable-comments' => 'false']);
|
2021-05-29 18:42:21 -04:00
|
|
|
$this->asAdmin();
|
2020-04-03 20:16:05 -04:00
|
|
|
|
2021-05-29 18:42:21 -04:00
|
|
|
$this->asAdmin()->get($this->page->getUrl())
|
|
|
|
->assertElementExists('.comments-list');
|
2020-04-03 20:16:05 -04:00
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|