BookStack/tests/Commands/ClearActivityCommandTest.php

37 lines
996 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace Tests\Commands;
use BookStack\Actions\ActivityType;
use BookStack\Entities\Models\Page;
use BookStack\Facades\Activity;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\DB;
use Tests\TestCase;
class ClearActivityCommandTest extends TestCase
{
public function test_clear_activity_command()
{
$this->asEditor();
/** @var Page $page */
$page = Page::query()->first();
Activity::add(ActivityType::PAGE_UPDATE, $page);
$this->assertDatabaseHas('activities', [
2021-06-26 15:23:15 +00:00
'type' => 'page_update',
'entity_id' => $page->id,
2021-06-26 15:23:15 +00:00
'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', [
2021-06-26 15:23:15 +00:00
'type' => 'page_update',
]);
}
2021-06-26 15:23:15 +00:00
}