OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/modules/backlogs/spec/views/rb_master_backlogs/index.html.erb_spec.rb

127 lines
4.9 KiB

#-- copyright
# OpenProject Backlogs Plugin
#
# Copyright (C)2013-2014 the OpenProject Foundation (OPF)
# Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda
# Copyright (C)2010-2011 friflaj
# Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns
# Copyright (C)2009-2010 Mark Maglana
# Copyright (C)2009 Joe Heck, Nate Lowrie
#
# 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 Backlogs is a derivative work based on ChiliProject Backlogs.
# The copyright follows:
# Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj
# Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany
#
# 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.
#++
require File.dirname(__FILE__) + '/../../spec_helper'
describe 'rb_master_backlogs/index', type: :view do
let(:user) { FactoryBot.create(:user) }
let(:role_allowed) {
FactoryBot.create(:role,
permissions: [:view_master_backlog, :view_taskboards])
}
let(:statuses) {
[FactoryBot.create(:status, is_default: true),
FactoryBot.create(:status),
FactoryBot.create(:status)]
}
let(:type_task) { FactoryBot.create(:type_task) }
let(:type_feature) { FactoryBot.create(:type_feature) }
let(:issue_priority) { FactoryBot.create(:priority) }
let(:project) do
project = FactoryBot.create(:project, types: [type_feature, type_task])
project.members = [FactoryBot.create(:member, principal: user, project: project, roles: [role_allowed])]
project
end
let(:story_a) {
FactoryBot.create(:story, status: statuses[0],
project: project,
type: type_feature,
fixed_version: sprint,
priority: issue_priority
)
}
let(:story_b) {
FactoryBot.create(:story, status: statuses[1],
project: project,
type: type_feature,
fixed_version: sprint,
priority: issue_priority
)
}
let(:story_c) {
FactoryBot.create(:story, status: statuses[2],
project: project,
type: type_feature,
fixed_version: sprint,
priority: issue_priority
)
}
let(:stories) { [story_a, story_b, story_c] }
let(:sprint) { FactoryBot.create(:sprint, project: project) }
before :each do
allow(Setting).to receive(:plugin_openproject_backlogs).and_return({ 'story_types' => [type_feature.id], 'task_type' => type_task.id })
view.extend RbCommonHelper
view.extend RbMasterBacklogsHelper
allow(view).to receive(:current_user).and_return(user)
assign(:project, project)
assign(:sprint, sprint)
assign(:owner_backlogs, Backlog.owner_backlogs(project))
assign(:sprint_backlogs, Backlog.sprint_backlogs(project))
allow(User).to receive(:current).and_return(user)
# We directly force the creation of stories by calling the method
stories
end
it 'shows link to export with the default export card configuration' do
default_export_card_config = FactoryBot.create(:export_card_configuration)
assign(:export_card_config_meta, {
default: default_export_card_config,
count: 1 })
render
assert_select '.menu ul.items a' do |a|
url = backlogs_project_sprint_export_card_configuration_path(project.identifier, sprint.id, default_export_card_config.id, format: :pdf)
expect(a.last).to have_content 'Export'
expect(a.last).to have_css("a[href='#{url}']")
end
end
it 'shows link to display export card configuration choice modal' do
assign(:export_card_config_meta, { count: 2 })
render
assert_select '.menu ul.items a' do |a|
url = backlogs_project_sprint_export_card_configurations_path(project.id, sprint.id)
expect(a.last).to have_content 'Export'
expect(a.last).to have_css("a[href='#{url}']")
expect(a.last).to have_css('a[data-modal]')
end
end
end