forked from BookStackApp/BookStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added maintenance action to regenerate references
- Loading branch information
1 parent
d134639
commit 6edf2c1
Showing
7 changed files
with
103 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
|
||
namespace Tests\Settings; | ||
|
||
use BookStack\Actions\ActivityType; | ||
use BookStack\References\ReferenceStore; | ||
use Tests\TestCase; | ||
|
||
class RegenerateReferencesTest extends TestCase | ||
{ | ||
public function test_option_visible_on_maintenance_page() | ||
{ | ||
$pageView = $this->asAdmin()->get('/settings/maintenance'); | ||
$formCssSelector = 'form[action$="/settings/maintenance/regenerate-references"]'; | ||
$html = $this->withHtml($pageView); | ||
$html->assertElementExists('#regenerate-references'); | ||
$html->assertElementExists($formCssSelector); | ||
$html->assertElementContains($formCssSelector . ' button', 'Regenerate References'); | ||
} | ||
|
||
public function test_action_runs_reference_regen() | ||
{ | ||
$this->mock(ReferenceStore::class) | ||
->shouldReceive('updateForAllPages') | ||
->once(); | ||
|
||
$resp = $this->asAdmin()->post('/settings/maintenance/regenerate-references'); | ||
$resp->assertRedirect('/settings/maintenance#regenerate-references'); | ||
$this->assertSessionHas('success', 'Reference index has been regenerated!'); | ||
$this->assertActivityExists(ActivityType::MAINTENANCE_ACTION_RUN, null, 'regenerate-references'); | ||
} | ||
|
||
public function test_settings_manage_permission_required() | ||
{ | ||
$editor = $this->getEditor(); | ||
$resp = $this->actingAs($editor)->post('/settings/maintenance/regenerate-references'); | ||
$this->assertPermissionError($resp); | ||
|
||
$this->giveUserPermissions($editor, ['settings-manage']); | ||
|
||
$resp = $this->actingAs($editor)->post('/settings/maintenance/regenerate-references'); | ||
$this->assertNotPermissionError($resp); | ||
} | ||
|
||
public function test_action_failed_shown_as_error_notification() | ||
{ | ||
$this->mock(ReferenceStore::class) | ||
->shouldReceive('updateForAllPages') | ||
->andThrow(\Exception::class, 'A badger stopped the task'); | ||
|
||
$resp = $this->asAdmin()->post('/settings/maintenance/regenerate-references'); | ||
$resp->assertRedirect('/settings/maintenance#regenerate-references'); | ||
$this->assertSessionError('A badger stopped the task'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters