-<?php namespace Tests\Commands;
+<?php
-use BookStack\Actions\ActivityType;
-use BookStack\Entities\Models\Page;
+namespace Tests\Commands;
+
+use BookStack\Activity\ActivityType;
+use BookStack\Facades\Activity;
+use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\DB;
use Tests\TestCase;
public function test_clear_activity_command()
{
$this->asEditor();
- $page = Page::first();
- \Activity::addForEntity($page, ActivityType::PAGE_UPDATE);
+ $page = $this->entities->page();
+ Activity::add(ActivityType::PAGE_UPDATE, $page);
$this->assertDatabaseHas('activities', [
- 'type' => 'page_update',
- 'entity_id' => $page->id,
- 'user_id' => $this->getEditor()->id
+ 'type' => 'page_update',
+ 'loggable_id' => $page->id,
+ 'user_id' => $this->users->editor()->id,
]);
-
DB::rollBack();
- $exitCode = \Artisan::call('bookstack:clear-activity');
+ $exitCode = Artisan::call('bookstack:clear-activity');
DB::beginTransaction();
$this->assertTrue($exitCode === 0, 'Command executed successfully');
-
$this->assertDatabaseMissing('activities', [
- 'type' => 'page_update'
+ 'type' => 'page_update',
]);
}
-}
\ No newline at end of file
+}