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.
123 lines
4.7 KiB
123 lines
4.7 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2020 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-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 docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
describe 'rb_burndown_charts/show', type: :view do
|
|
let(:user1) { FactoryBot.create(:user) }
|
|
let(:user2) { FactoryBot.create(:user) }
|
|
let(:role_allowed) {
|
|
FactoryBot.create(:role,
|
|
permissions: [:add_work_packages, :manage_subtasks])
|
|
}
|
|
let(:role_forbidden) { FactoryBot.create(:role) }
|
|
# We need to create these as some view helpers access the database
|
|
let(:statuses) {
|
|
[FactoryBot.create(:status),
|
|
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: user1, project: project, roles: [role_allowed]),
|
|
FactoryBot.create(:member, principal: user2, project: project, roles: [role_forbidden])]
|
|
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, start_date: Date.today - 1.week, effective_date: Date.today + 1.week) }
|
|
let(:task) do
|
|
task = FactoryBot.create(:task, project: project, status: statuses[0], fixed_version: sprint, type: type_task)
|
|
# This is necessary as for some unknown reason passing the parent directly
|
|
# leads to the task searching for the parent with 'root_id' is NULL, which
|
|
# is not the case as the story has its own id as root_id
|
|
task.parent_id = story_a.id
|
|
task
|
|
end
|
|
|
|
before :each do
|
|
allow(Setting).to receive(:plugin_openproject_backlogs).and_return({ 'story_types' => [type_feature.id], 'task_type' => type_task.id })
|
|
view.extend BurndownChartsHelper
|
|
|
|
# We directly force the creation of stories,statuses by calling the method
|
|
stories
|
|
end
|
|
|
|
describe 'burndown chart' do
|
|
it 'renders a version with dates' do
|
|
assign(:sprint, sprint)
|
|
assign(:project, project)
|
|
assign(:burndown, sprint.burndown(project))
|
|
render
|
|
|
|
expect(view).to render_template(partial: '_burndown', count: 1)
|
|
end
|
|
|
|
it 'renders a version without dates' do
|
|
sprint.start_date = nil
|
|
sprint.effective_date = nil
|
|
sprint.save
|
|
assign(:sprint, sprint)
|
|
assign(:project, project)
|
|
assign(:burndown, sprint.burndown(project))
|
|
|
|
render
|
|
|
|
expect(view).to render_template(partial: '_burndown', count: 0)
|
|
expect(rendered).to include(I18n.translate 'backlogs.no_burndown_data')
|
|
end
|
|
end
|
|
end
|
|
|