2014-06-04 16:55:27 -04:00
|
|
|
@profile
|
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
|
|
|
|
|
2015-11-03 10:39:09 -05:00
|
|
|
@javascript
|
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
|
2015-08-05 03:48:16 -04:00
|
|
|
And I should see the gravatar host link
|
2013-12-02 13:03:07 -05:00
|
|
|
|
|
|
|
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
|
2015-08-05 03:48:16 -04:00
|
|
|
And I should see the gravatar host link
|
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
|
2015-07-03 07:54:50 -04:00
|
|
|
When I visit Audit Log page
|
2012-09-27 16:23:11 -04:00
|
|
|
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
|
|
|
|
|
2014-12-19 09:15:29 -05:00
|
|
|
Scenario: I can manage application
|
2014-12-25 11:46:19 -05:00
|
|
|
Given I visit profile applications page
|
2016-03-01 09:37:49 -05:00
|
|
|
Then I should see application form
|
2014-12-19 09:15:29 -05:00
|
|
|
Then I fill application form out and submit
|
|
|
|
And I see application
|
|
|
|
Then I click edit
|
|
|
|
And I see edit application form
|
|
|
|
Then I change name of application and submit
|
|
|
|
And I see that application was changed
|
2014-12-25 11:46:19 -05:00
|
|
|
Then I visit profile applications page
|
2014-12-19 09:15:29 -05:00
|
|
|
And I click to remove application
|
|
|
|
Then I see that application is removed
|