kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.1 KiB
73 lines
3.1 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2017 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
Feature: Forced Password Change
|
|
Background:
|
|
Given there is a user named "bob"
|
|
Given the user "bob" is forced to change his password
|
|
|
|
Scenario: A user providing invalid credentials on forced password change
|
|
When I try to log in with user "bob"
|
|
And I fill out the change password form with a wrong old password
|
|
Then there should be a flash error message
|
|
# Explicitly check for generic message, a "wrong password" message might
|
|
# reveal whether the user exists
|
|
And I should see "Invalid user or password"
|
|
And there should be a "New password" field
|
|
And I should not see "Bob Bobbit"
|
|
# password change form should show login
|
|
And I should see "bob"
|
|
|
|
Scenario: A user providing a new password failing validation
|
|
When I try to log in with user "bob"
|
|
And I fill out the change password form with a wrong password confirmation
|
|
Then there should be an error message
|
|
And I should not see "Bob Bobbit"
|
|
# password change form should show login
|
|
And I should see "bob"
|
|
|
|
Scenario: Setting forced password change for a user forces him to change password on next login
|
|
Given I am already admin
|
|
And I go to the edit page for the user called "bob"
|
|
And I check "Enforce password change on next login"
|
|
And I press "Save"
|
|
And I try to log in with user "bob"
|
|
Then there should be a flash error message
|
|
And there should be a "New password" field
|
|
And I should not see "Bob Bobbit"
|
|
# password change form should show login
|
|
And I should see "bob"
|
|
|
|
Scenario: A user is forced to change the password on the first login, but not on the second
|
|
When I try to log in with user "bob"
|
|
And I fill out the change password form
|
|
Then there should be a flash notice message
|
|
And I should see "Bob Bobbit" as being logged in
|
|
# Try again to check password change is not enforced on second login
|
|
And I try to log in with user "bob"
|
|
Then I should see "Bob Bobbit" as being logged in
|
|
|