mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	- 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
		
			
				
	
	
		
			32 lines
		
	
	
		
			804 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			804 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace Tests\Commands;
 | 
						|
 | 
						|
use BookStack\Entities\Models\Page;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
class ClearViewsCommandTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
    public function test_clear_views_command()
 | 
						|
    {
 | 
						|
        $this->asEditor();
 | 
						|
        $page = Page::first();
 | 
						|
 | 
						|
        $this->get($page->getUrl());
 | 
						|
 | 
						|
        $this->assertDatabaseHas('views', [
 | 
						|
            'user_id' => $this->getEditor()->id,
 | 
						|
            'viewable_id' => $page->id,
 | 
						|
            'views' => 1
 | 
						|
        ]);
 | 
						|
 | 
						|
        DB::rollBack();
 | 
						|
        $exitCode = \Artisan::call('bookstack:clear-views');
 | 
						|
        DB::beginTransaction();
 | 
						|
        $this->assertTrue($exitCode === 0, 'Command executed successfully');
 | 
						|
 | 
						|
        $this->assertDatabaseMissing('views', [
 | 
						|
            'user_id' => $this->getEditor()->id
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
} |