mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
9079700170
- Renamed to "ActivityLogger" to be more focused in usage. - Extracted out query elements to seperate "ActivityQueries" class. - Removed old 'addForEntity' activity method to limit activity record points.
37 lines
996 B
PHP
37 lines
996 B
PHP
<?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', [
|
|
'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',
|
|
]);
|
|
}
|
|
}
|