52 lines
1.7 KiB
Gherkin
52 lines
1.7 KiB
Gherkin
|
Feature: Manage Theme Assets
|
||
|
In order to manage theme assets
|
||
|
As an administrator
|
||
|
I want to add/edit/delete theme assets of my site
|
||
|
|
||
|
Background:
|
||
|
Given I have the site: "test site" set up
|
||
|
And I am an authenticated user
|
||
|
|
||
|
Scenario: Theme assets list is not accessible for non authenticated accounts
|
||
|
Given I am not authenticated
|
||
|
When I go to theme assets
|
||
|
Then I should see "Log in"
|
||
|
|
||
|
Scenario: Uploading a valid image
|
||
|
When I go to theme assets
|
||
|
And I follow "new file"
|
||
|
And I attach the file "spec/fixtures/assets/5k.png" to "File"
|
||
|
And I press "Create"
|
||
|
Then I should see "File was successfully created."
|
||
|
And I should not see "Code"
|
||
|
And I should see "images/5k.png"
|
||
|
|
||
|
Scenario: Uploading a stylesheet
|
||
|
When I go to theme assets
|
||
|
And I follow "new file"
|
||
|
And I attach the file "spec/fixtures/assets/main.css" to "File"
|
||
|
And I press "Create"
|
||
|
Then I should see "File was successfully created."
|
||
|
And I should see "Code"
|
||
|
And I should see "stylesheets/main.css"
|
||
|
|
||
|
Scenario: Uploading a javascript
|
||
|
When I go to theme assets
|
||
|
And I follow "new file"
|
||
|
And I fill in "Folder" with "javascripts/test"
|
||
|
And I attach the file "spec/fixtures/assets/application.js" to "File"
|
||
|
And I press "Create"
|
||
|
Then I should see "File was successfully created."
|
||
|
And I should see "Code"
|
||
|
And I should see "javascripts/test/application.js"
|
||
|
|
||
|
Scenario: Uploading an image which already exists
|
||
|
When I go to theme assets
|
||
|
And I follow "new file"
|
||
|
And I attach the file "spec/fixtures/assets/5k.png" to "File"
|
||
|
And I press "Create"
|
||
|
And I follow "new file"
|
||
|
And I attach the file "spec/fixtures/assets/5k.png" to "File"
|
||
|
And I press "Create"
|
||
|
Then I should see "File was not created."
|