mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Split command tests out to indavidual test files
This commit is contained in:
29
tests/Commands/ClearViewsCommandTest.php
Normal file
29
tests/Commands/ClearViewsCommandTest.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php namespace Tests\Commands;
|
||||
|
||||
use BookStack\Entities\Models\Page;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ClearViewsCommandTest extends TestCase
|
||||
{
|
||||
|
||||
public function test_clear_views_command()
|
||||
{
|
||||
$this->asEditor();
|
||||
$page = Page::first();
|
||||
|
||||
$this->get($page->getUrl());
|
||||
|
||||
$this->assertDatabaseHas('views', [
|
||||
'user_id' => $this->getEditor()->id,
|
||||
'viewable_id' => $page->id,
|
||||
'views' => 1
|
||||
]);
|
||||
|
||||
$exitCode = \Artisan::call('bookstack:clear-views');
|
||||
$this->assertTrue($exitCode === 0, 'Command executed successfully');
|
||||
|
||||
$this->assertDatabaseMissing('views', [
|
||||
'user_id' => $this->getEditor()->id
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user