1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-10-30 07:32:39 +01:00
BookStack/tests/Commands/ClearActivityCommandTest.php

35 lines
935 B
PHP
Raw Normal View History

2021-06-26 17:23:15 +02:00
<?php
namespace Tests\Commands;
2023-05-17 18:56:55 +02:00
use BookStack\Activity\ActivityType;
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();
$page = $this->entities->page();
Activity::add(ActivityType::PAGE_UPDATE, $page);
$this->assertDatabaseHas('activities', [
2021-06-26 17:23:15 +02:00
'type' => 'page_update',
'entity_id' => $page->id,
'user_id' => $this->users->editor()->id,
]);
DB::rollBack();
$exitCode = Artisan::call('bookstack:clear-activity');
DB::beginTransaction();
$this->assertTrue($exitCode === 0, 'Command executed successfully');
$this->assertDatabaseMissing('activities', [
2021-06-26 17:23:15 +02:00
'type' => 'page_update',
]);
}
2021-06-26 17:23:15 +02:00
}