mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
57 lines
2.1 KiB
Gherkin
57 lines
2.1 KiB
Gherkin
@javascript @assets
|
|
Feature: Manage files
|
|
As a cms author
|
|
I want to upload and manage files within the CMS
|
|
So that I can insert them into my content efficiently
|
|
|
|
Background:
|
|
Given a "file" "assets/folder1/file1.jpg"
|
|
And a "file" "assets/folder1/folder1.1/file2.jpg"
|
|
And a "folder" "assets/folder2"
|
|
And I am logged in with "ADMIN" permissions
|
|
And I go to "/admin/assets"
|
|
|
|
@modal
|
|
Scenario: I can add a new folder
|
|
Given I press the "Add folder" button
|
|
And I type "newfolder" into the dialog
|
|
And I confirm the dialog
|
|
Then the "Files" table should contain "newfolder"
|
|
|
|
Scenario: I can list files in a folder
|
|
Given I click on "folder1" in the "Files" table
|
|
Then the "folder1" table should contain "file1"
|
|
And the "folder1" table should not contain "file1.1"
|
|
|
|
Scenario: I can upload a file to a folder
|
|
Given I click on "folder1" in the "Files" table
|
|
And I press the "Upload" button
|
|
And I attach the file "testfile.jpg" to "AssetUploadField" with HTML5
|
|
And I wait for 5 seconds
|
|
And I press the "Back to folder" button
|
|
Then the "folder1" table should contain "testfile"
|
|
|
|
Scenario: I can edit a file
|
|
Given I click on "folder1" in the "Files" table
|
|
And I click on "file1" in the "folder1" table
|
|
And I fill in "renamedfile" for "Title"
|
|
And I press the "Save" button
|
|
And I press the "Back" button
|
|
Then the "folder1" table should not contain "testfile"
|
|
And the "folder1" table should contain "renamedfile"
|
|
|
|
Scenario: I can delete a file
|
|
Given I click on "folder1" in the "Files" table
|
|
And I click on "file1" in the "folder1" table
|
|
And I press the "Delete" button
|
|
Then the "folder1" table should not contain "file1"
|
|
|
|
Scenario: I can change the folder of a file
|
|
Given I click on "folder1" in the "Files" table
|
|
And I click on "file1" in the "folder1" table
|
|
And I fill in "folder2" for "ParentID" dropdown
|
|
And I press the "Save" button
|
|
# /show/0 is to ensure that we are on top level folder
|
|
And I go to "/admin/assets/show/0"
|
|
And I click on "folder2" in the "Files" table
|
|
And the "folder2" table should contain "file1" |