-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX Ensure files can be removed from elemental blocks (#1267)
- Loading branch information
1 parent
13f6a3f
commit 23af9c0
Showing
3 changed files
with
51 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
@retry @job2 | ||
Feature: Files can be saved in and removed from elemental blocks | ||
As a CMS user | ||
I want to attach and remove files from elemental blocks | ||
|
||
Background: | ||
Given I add an extension "DNADesign\Elemental\Extensions\ElementalPageExtension" to the "Page" class | ||
And I add an extension "SilverStripe\FrameworkTest\Elemental\Extension\FileElementalExtension" to the "DNADesign\Elemental\Models\ElementContent" class | ||
And I go to "/dev/build?flush" | ||
And a "image" "file1.jpg" | ||
And a "page" "Blocks Page" with a "My title" content element with "My content" content | ||
And the "group" "EDITOR" has permissions "Access to 'Pages' section" | ||
And I am logged in as a member of "EDITOR" group | ||
And I go to "/admin/pages" | ||
And I follow "Blocks Page" | ||
|
||
Scenario: Add a file and save the block, then remove the file and save the block | ||
# Add a file to the block | ||
Given I click on the caret button for block 1 | ||
Then I should not see "file1" | ||
Given I take a screenshot after every step | ||
When I click "Choose existing" in the "#Form_ElementForm_1 .uploadfield" element | ||
And I press the "Back" HTML field button | ||
And I click on the file named "file1" in the gallery | ||
And I press the "Insert" button | ||
And I press the "View actions" button | ||
And I click on the ".element-editor__actions-save" element | ||
Then I should see a "Saved 'My title' successfully" success toast | ||
# Check we see the file both in the current page load (react state is correct) and after reloading the form | ||
Then I should see "file1" | ||
When I go to "/admin/pages" | ||
And I follow "Blocks Page" | ||
And I click on the caret button for block 1 | ||
Then I should see "file1" | ||
# Then remove the file from the block | ||
And I click on the "#Form_ElementForm_1 .uploadfield-item__remove-btn" element | ||
And I press the "View actions" button | ||
And I click on the ".element-editor__actions-save" element | ||
Then I should see a "Saved 'My title' successfully" success toast | ||
# Check we don't see the file anymore | ||
Then I should not see "file1" | ||
When I go to "/admin/pages" | ||
And I follow "Blocks Page" | ||
And I click on the caret button for block 1 | ||
Then I should not see "file1" |