mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	* Started mass-refactoring of the current entity repos * Rewrote book tree logic - Now does two simple queries instead of one really complex one. - Extracted logic into its own class. - Remove model-level akward union field listing. - Logic now more readable than being large separate query and compilation functions. * Extracted and split book sort logic * Finished up Book controller/repo organisation * Refactored bookshelves controllers and repo parts * Fixed issues found via phpunit * Refactored Chapter controller * Updated Chapter export controller * Started Page controller/repo refactor * Refactored another chunk of PageController * Completed initial pagecontroller refactor pass * Fixed tests and continued reduction of old repos * Removed old page remove and further reduced entity repo * Removed old entity repo, split out page controller * Ran phpcbf and split out some page content methods * Tidied up some EntityProvider elements * Fixed issued caused by viewservice change
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace Tests;
 | |
| 
 | |
| use BookStack\Entities\Repos\PageRepo;
 | |
| 
 | |
| class PageDraftTest extends BrowserKitTest
 | |
| {
 | |
|     protected $page;
 | |
| 
 | |
|     /**
 | |
|      * @var PageRepo
 | |
|      */
 | |
|     protected $pageRepo;
 | |
| 
 | |
|     public function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
|         $this->page = \BookStack\Entities\Page::first();
 | |
|         $this->pageRepo = app(PageRepo::class);
 | |
|     }
 | |
| 
 | |
|     public function test_draft_content_shows_if_available()
 | |
|     {
 | |
|         $addedContent = '<p>test message content</p>';
 | |
|         $this->asAdmin()->visit($this->page->getUrl('/edit'))
 | |
|             ->dontSeeInField('html', $addedContent);
 | |
| 
 | |
|         $newContent = $this->page->html . $addedContent;
 | |
|         $this->pageRepo->updatePageDraft($this->page, ['html' => $newContent]);
 | |
|         $this->asAdmin()->visit($this->page->getUrl('/edit'))
 | |
|             ->seeInField('html', $newContent);
 | |
|     }
 | |
| 
 | |
|     public function test_draft_not_visible_by_others()
 | |
|     {
 | |
|         $addedContent = '<p>test message content</p>';
 | |
|         $this->asAdmin()->visit($this->page->getUrl('/edit'))
 | |
|             ->dontSeeInField('html', $addedContent);
 | |
| 
 | |
|         $newContent = $this->page->html . $addedContent;
 | |
|         $newUser = $this->getEditor();
 | |
|         $this->pageRepo->updatePageDraft($this->page, ['html' => $newContent]);
 | |
| 
 | |
|         $this->actingAs($newUser)->visit($this->page->getUrl('/edit'))
 | |
|             ->dontSeeInField('html', $newContent);
 | |
|     }
 | |
| 
 | |
|     public function test_alert_message_shows_if_editing_draft()
 | |
|     {
 | |
|         $this->asAdmin();
 | |
|         $this->pageRepo->updatePageDraft($this->page, ['html' => 'test content']);
 | |
|         $this->asAdmin()->visit($this->page->getUrl('/edit'))
 | |
|             ->see('You are currently editing a draft');
 | |
|     }
 | |
| 
 | |
|     public function test_alert_message_shows_if_someone_else_editing()
 | |
|     {
 | |
|         $nonEditedPage = \BookStack\Entities\Page::take(10)->get()->last();
 | |
|         $addedContent = '<p>test message content</p>';
 | |
|         $this->asAdmin()->visit($this->page->getUrl('/edit'))
 | |
|             ->dontSeeInField('html', $addedContent);
 | |
| 
 | |
|         $newContent = $this->page->html . $addedContent;
 | |
|         $newUser = $this->getEditor();
 | |
|         $this->pageRepo->updatePageDraft($this->page, ['html' => $newContent]);
 | |
| 
 | |
|         $this->actingAs($newUser)
 | |
|             ->visit($this->page->getUrl('/edit'))
 | |
|             ->see('Admin has started editing this page');
 | |
|             $this->flushSession();
 | |
|         $this->visit($nonEditedPage->getUrl() . '/edit')
 | |
|             ->dontSeeInElement('.notification', 'Admin has started editing this page');
 | |
|     }
 | |
| 
 | |
|     public function test_draft_pages_show_on_homepage()
 | |
|     {
 | |
|         $book = \BookStack\Entities\Book::first();
 | |
|         $this->asAdmin()->visit('/')
 | |
|             ->dontSeeInElement('#recent-drafts', 'New Page')
 | |
|             ->visit($book->getUrl() . '/create-page')
 | |
|             ->visit('/')
 | |
|             ->seeInElement('#recent-drafts', 'New Page');
 | |
|     }
 | |
| 
 | |
|     public function test_draft_pages_not_visible_by_others()
 | |
|     {
 | |
|         $book = \BookStack\Entities\Book::first();
 | |
|         $chapter = $book->chapters->first();
 | |
|         $newUser = $this->getEditor();
 | |
| 
 | |
|         $this->actingAs($newUser)->visit('/')
 | |
|             ->visit($book->getUrl('/create-page'))
 | |
|             ->visit($chapter->getUrl('/create-page'))
 | |
|             ->visit($book->getUrl())
 | |
|             ->seeInElement('.book-contents', 'New Page');
 | |
| 
 | |
|         $this->asAdmin()
 | |
|             ->visit($book->getUrl())
 | |
|             ->dontSeeInElement('.book-contents', 'New Page')
 | |
|             ->visit($chapter->getUrl())
 | |
|             ->dontSeeInElement('.book-contents', 'New Page');
 | |
|     }
 | |
| 
 | |
| }
 |