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.
69 lines
2.4 KiB
69 lines
2.4 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 the OpenProject GmbH
|
|
#
|
|
# 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-2013 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 docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'support/pages/page'
|
|
|
|
module Pages
|
|
module My
|
|
class PasswordPage < ::Pages::Page
|
|
def path
|
|
'/my/password'
|
|
end
|
|
|
|
def change_password(old_password, new_password, confirmation = new_password)
|
|
SeleniumHubWaiter.wait
|
|
page.fill_in('password', with: old_password, match: :prefer_exact)
|
|
page.fill_in('new_password', with: new_password)
|
|
page.fill_in('new_password_confirmation', with: confirmation)
|
|
|
|
page.click_link_or_button 'Save'
|
|
end
|
|
|
|
def expect_password_reuse_error_message(count)
|
|
expect_notification(type: :error,
|
|
message: I18n.t(:'activerecord.errors.models.user.attributes.password.reused', count: count))
|
|
end
|
|
|
|
def expect_password_weak_error_message
|
|
expect_notification(type: :error,
|
|
message: "Password Must contain characters of the following classes (at least 2 of 3): lowercase (e.g. 'a'), uppercase (e.g. 'A'), numeric (e.g. '1').")
|
|
end
|
|
|
|
def expect_password_updated_message
|
|
expect(page)
|
|
.to have_selector('.flash.notice', text: I18n.t(:notice_account_password_updated))
|
|
end
|
|
|
|
private
|
|
|
|
def notification_type
|
|
:rails
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|