Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ Feature: first login wizard
So that I can get a basic overview about ownCloud

Scenario: User logs in into ownCloud for the first time
Given user "user1" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
When user "user1" logs in using the webUI
Then the user should see the firstrunwizard popup message
And the heading of the popup should be "A safe home for all your data"

Scenario: Previously created user logs into ownCloud
Given user "user1" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
When user "user1" logs in using the webUI
And the user closes the firstrunwizard popup message
And the user re-logs in as "user1" using the webUI
Then the user should not see the firstrunwizard popup message

Scenario: User requests to show firstrunwizard popup in settings page
Given user "user1" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
And user "user1" has logged in using the webUI
And the user has closed the firstrunwizard popup message
And the user has browsed to the personal general settings page
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Feature: Customize firstrunwizard popup

Scenario: Administrator changes the default message of firstrunwizard
Given the administrator has changed the default popup message of firstrunwizard to "next default message"
And user "user1" has been created with default attributes
And user "user1" has been created with default attributes and skeleton files
When user "user1" logs in using the webUI
Then the user should see the firstrunwizard popup message
And the heading of the popup should be "next default message"

Scenario: Administrator reverts the popup message of firstrunwizard to default message
Given user "user1" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
When user "user1" logs in using the webUI
Then the user should see the firstrunwizard popup message
And the heading of the popup should be "A safe home for all your data"
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Feature: first login wizard is displayed again when the reset-all command has be
So that I can force users to be shown the first run wizard popup again

Scenario: Administrator runs reset-all occ command after all the users log into ownCloud
Given user "user1" has been created with default attributes
And user "user2" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
And user "user2" has been created with default attributes and skeleton files
And user "user1" has logged in using the webUI
And the user has closed the firstrunwizard popup message
And the user has re-logged in as "user2" using the webUI
Expand All @@ -19,8 +19,8 @@ Feature: first login wizard is displayed again when the reset-all command has be
Then the user should see the firstrunwizard popup message

Scenario: Administrator runs reset-all occ command after some users log into ownCloud
Given user "user1" has been created with default attributes
And user "user2" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
And user "user2" has been created with default attributes and skeleton files
And user "user1" has logged in using the webUI
And the user has closed the firstrunwizard popup message
And the administrator has invoked occ command "firstrunwizard:reset-all"
Expand Down