2012-06-15 00:15:28 -04:00
|
|
|
Feature: Profile
|
2012-09-10 05:40:51 -04:00
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
2012-06-15 00:15:28 -04:00
|
|
|
|
|
|
|
Scenario: I look at my profile
|
|
|
|
Given I visit profile page
|
|
|
|
Then I should see my profile info
|
|
|
|
|
2014-02-08 00:45:46 -05:00
|
|
|
Scenario: I can see groups I belong to
|
|
|
|
Given I have group with projects
|
|
|
|
When I visit profile page
|
|
|
|
And I click on my profile picture
|
|
|
|
Then I should see my user page
|
|
|
|
And I should see groups I belong to
|
|
|
|
|
2012-08-03 12:29:54 -04:00
|
|
|
Scenario: I edit profile
|
|
|
|
Given I visit profile page
|
2014-01-18 14:07:00 -05:00
|
|
|
Then I change my profile info
|
|
|
|
And I should see new profile info
|
2012-08-03 12:29:54 -04:00
|
|
|
|
2013-09-24 03:48:36 -04:00
|
|
|
Scenario: I change my password without old one
|
2013-10-09 10:01:04 -04:00
|
|
|
Given I visit profile password page
|
2013-09-24 03:48:36 -04:00
|
|
|
When I try change my password w/o old one
|
|
|
|
Then I should see a missing password error message
|
2013-10-09 10:01:04 -04:00
|
|
|
And I should be redirected to password page
|
2013-09-24 03:48:36 -04:00
|
|
|
|
2012-06-15 00:15:28 -04:00
|
|
|
Scenario: I change my password
|
2013-10-09 10:01:04 -04:00
|
|
|
Given I visit profile password page
|
2012-06-15 00:15:28 -04:00
|
|
|
Then I change my password
|
|
|
|
And I should be redirected to sign in page
|
|
|
|
|
2013-10-06 14:13:56 -04:00
|
|
|
Scenario: I edit my avatar
|
|
|
|
Given I visit profile page
|
|
|
|
Then I change my avatar
|
|
|
|
And I should see new avatar
|
2013-12-02 13:03:07 -05:00
|
|
|
And I should see the "Remove avatar" button
|
|
|
|
|
|
|
|
Scenario: I remove my avatar
|
|
|
|
Given I visit profile page
|
|
|
|
And I have an avatar
|
|
|
|
When I remove my avatar
|
|
|
|
Then I should see my gravatar
|
|
|
|
And I should not see the "Remove avatar" button
|
2013-10-06 14:13:56 -04:00
|
|
|
|
2013-06-26 14:34:20 -04:00
|
|
|
Scenario: My password is expired
|
|
|
|
Given my password is expired
|
2013-09-17 16:37:36 -04:00
|
|
|
And I am not an ldap user
|
2013-10-09 10:01:04 -04:00
|
|
|
Given I visit profile password page
|
2013-06-26 14:34:20 -04:00
|
|
|
Then I redirected to expired password page
|
|
|
|
And I submit new password
|
|
|
|
And I redirected to sign in page
|
|
|
|
|
2012-11-04 16:47:37 -05:00
|
|
|
Scenario: I unsuccessfully change my password
|
2013-10-09 10:01:04 -04:00
|
|
|
Given I visit profile password page
|
2012-11-04 16:47:37 -05:00
|
|
|
When I unsuccessfully change my password
|
|
|
|
Then I should see a password error message
|
|
|
|
|
2012-06-15 00:15:28 -04:00
|
|
|
Scenario: I reset my token
|
2012-09-14 11:58:16 -04:00
|
|
|
Given I visit profile account page
|
2012-06-15 00:15:28 -04:00
|
|
|
Then I reset my token
|
|
|
|
And I should see new token
|
2012-09-27 16:23:11 -04:00
|
|
|
|
|
|
|
Scenario: I visit history tab
|
|
|
|
Given I have activity
|
|
|
|
When I visit profile history page
|
|
|
|
Then I should see my activity
|
2012-11-21 15:01:40 -05:00
|
|
|
|
2013-06-26 14:50:47 -04:00
|
|
|
Scenario: I visit my user page
|
|
|
|
When I visit profile page
|
|
|
|
And I click on my profile picture
|
|
|
|
Then I should see my user page
|
|
|
|
|
2012-11-21 15:01:40 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I change my application theme
|
|
|
|
Given I visit profile design page
|
|
|
|
When I change my application theme
|
|
|
|
Then I should see the theme change immediately
|
|
|
|
And I should receive feedback that the changes were saved
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I change my code preview theme
|
|
|
|
Given I visit profile design page
|
|
|
|
When I change my code preview theme
|
|
|
|
Then I should receive feedback that the changes were saved
|