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/ClearActivityCommandTest.php
Normal file
29
tests/Commands/ClearActivityCommandTest.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php namespace Tests\Commands;
|
||||
|
||||
use BookStack\Actions\ActivityType;
|
||||
use BookStack\Entities\Models\Page;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ClearActivityCommandTest extends TestCase
|
||||
{
|
||||
public function test_clear_activity_command()
|
||||
{
|
||||
$this->asEditor();
|
||||
$page = Page::first();
|
||||
\Activity::addForEntity($page, ActivityType::PAGE_UPDATE);
|
||||
|
||||
$this->assertDatabaseHas('activities', [
|
||||
'type' => 'page_update',
|
||||
'entity_id' => $page->id,
|
||||
'user_id' => $this->getEditor()->id
|
||||
]);
|
||||
|
||||
$exitCode = \Artisan::call('bookstack:clear-activity');
|
||||
$this->assertTrue($exitCode === 0, 'Command executed successfully');
|
||||
|
||||
|
||||
$this->assertDatabaseMissing('activities', [
|
||||
'type' => 'page_update'
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user