mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8e5067ee91
- Commands that run a truncate DB action failed due to messing up the test transations so we mnaully work around that now to ensure a transaction exists for the test to cleanup afterwards. - Updated dompdf lib version
33 lines
886 B
PHP
33 lines
886 B
PHP
<?php namespace Tests\Commands;
|
|
|
|
use BookStack\Actions\ActivityType;
|
|
use BookStack\Entities\Models\Page;
|
|
use Illuminate\Support\Facades\DB;
|
|
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
|
|
]);
|
|
|
|
|
|
DB::rollBack();
|
|
$exitCode = \Artisan::call('bookstack:clear-activity');
|
|
DB::beginTransaction();
|
|
$this->assertTrue($exitCode === 0, 'Command executed successfully');
|
|
|
|
|
|
$this->assertDatabaseMissing('activities', [
|
|
'type' => 'page_update'
|
|
]);
|
|
}
|
|
} |