forked from opf/openproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
spec/features/work_packages/custom_actions/custom_actions_link_value_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#-- copyright | ||
# OpenProject is an open source project management software. | ||
# Copyright (C) 2012-2024 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 COPYRIGHT and LICENSE files for more details. | ||
#++ | ||
|
||
require "spec_helper" | ||
|
||
RSpec.describe "Custom actions link cf value", :js, :with_cuprite, with_ee: %i[custom_actions] do | ||
shared_let(:admin) { create(:admin) } | ||
|
||
let(:permissions) { %i(view_work_packages edit_work_packages) } | ||
let(:role) { create(:project_role, permissions:) } | ||
let(:user) do | ||
create(:user, member_with_roles: { project => role }) | ||
end | ||
let(:type) { create(:type_task) } | ||
let(:project) { create(:project, types: [type], name: "This project") } | ||
let!(:custom_field) { create(:link_wp_custom_field, types: [type], projects: [project]) } | ||
let!(:work_package) do | ||
create(:work_package, | ||
type:, | ||
project:) | ||
end | ||
|
||
let(:wp_page) { Pages::FullWorkPackage.new(work_package) } | ||
let(:default_priority) do | ||
create(:default_priority, name: "Normal") | ||
end | ||
let(:new_ca_page) { Pages::Admin::CustomActions::New.new } | ||
|
||
before do | ||
login_as(admin) | ||
end | ||
|
||
it "can set link field value" do | ||
new_ca_page.visit! | ||
|
||
new_ca_page.set_name("Set Link CF") | ||
new_ca_page.add_action(custom_field.name, "https://example.com") | ||
|
||
new_ca_page.create | ||
|
||
assign = CustomAction.last | ||
expect(assign.actions.length).to eq(1) | ||
expect(assign.conditions.length).to eq(0) | ||
expect(assign.actions.first.values).to eq(["https://example.com"]) | ||
|
||
login_as user | ||
wp_page.visit! | ||
|
||
wp_page.expect_custom_action("Set Link CF") | ||
wp_page.click_custom_action("Set Link CF") | ||
wp_page.expect_attributes "customField#{custom_field.id}": "https://example.com" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters