2024-03-23 18:04:18 -04:00
|
|
|
<?php
|
|
|
|
|
2024-09-30 12:07:53 -04:00
|
|
|
namespace Tests\Meta;
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
2024-03-23 18:04:18 -04:00
|
|
|
|
|
|
|
class LicensesTest extends TestCase
|
|
|
|
{
|
|
|
|
public function test_licenses_endpoint()
|
|
|
|
{
|
|
|
|
$resp = $this->get('/licenses');
|
|
|
|
$resp->assertOk();
|
|
|
|
$resp->assertSee('Licenses');
|
|
|
|
$resp->assertSee('PHP Library Licenses');
|
|
|
|
$resp->assertSee('Dan Brown and the BookStack Project contributors');
|
|
|
|
$resp->assertSee('doctrine/dbal');
|
|
|
|
$resp->assertSee('@codemirror/lang-html');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_licenses_linked_to_from_settings()
|
|
|
|
{
|
|
|
|
$resp = $this->asAdmin()->get('/settings/features');
|
|
|
|
$html = $this->withHtml($resp);
|
|
|
|
$html->assertLinkExists(url('/licenses'), 'License Details');
|
|
|
|
}
|
|
|
|
}
|