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.
118 lines
4.4 KiB
118 lines
4.4 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2018 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 docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'backlogs onboarding tour', js: true do
|
|
let(:next_button) { find('.enjoyhint_next_btn') }
|
|
let(:user) { FactoryBot.create :admin }
|
|
let(:demo_project) do
|
|
FactoryBot.create :project,
|
|
name: 'Demo project',
|
|
identifier: 'demo-project',
|
|
is_public: true,
|
|
enabled_module_names: %w[work_package_tracking wiki]
|
|
end
|
|
let(:project) do
|
|
FactoryBot.create :project,
|
|
name: 'Scrum project',
|
|
identifier: 'your-scrum-project',
|
|
is_public: true,
|
|
enabled_module_names: %w[work_package_tracking wiki backlogs]
|
|
end
|
|
let(:sprint) { FactoryBot.create(:version, project: project, name: 'Sprint 1') }
|
|
let(:status) { FactoryBot.create(:default_status) }
|
|
let(:priority) { FactoryBot.create(:default_priority) }
|
|
|
|
let(:impediment) do
|
|
FactoryBot.build(:impediment, author: user,
|
|
fixed_version: sprint,
|
|
assigned_to: user,
|
|
project: project,
|
|
type: type_task,
|
|
status: status)
|
|
end
|
|
|
|
let(:story_type) { FactoryBot.create(:type_feature) }
|
|
let(:task_type) do
|
|
type = FactoryBot.create(:type_task)
|
|
project.types << type
|
|
|
|
type
|
|
end
|
|
|
|
let!(:existing_story) do
|
|
FactoryBot.create(:work_package,
|
|
type: story_type,
|
|
project: project,
|
|
status: status,
|
|
priority: priority,
|
|
position: 1,
|
|
story_points: 3,
|
|
fixed_version: sprint )
|
|
end
|
|
|
|
before do
|
|
login_as user
|
|
allow(Setting).to receive(:demo_projects_available).and_return(true)
|
|
allow(Setting).to receive(:plugin_openproject_backlogs).and_return('story_types' => [story_type.id.to_s],
|
|
'task_type' => task_type.id.to_s)
|
|
end
|
|
|
|
after do
|
|
# Clear session to avoid that the onboarding tour starts
|
|
page.execute_script("window.sessionStorage.clear();")
|
|
end
|
|
|
|
context 'as a new user' do
|
|
it 'I see a part of the onboarding tour in the backlogs section' do
|
|
# Set the tour parameter so that we can start on the overview page
|
|
visit "/projects/#{project.identifier}/backlogs/?start_scrum_onboarding_tour=true"
|
|
expect(page).to have_text 'Manage your work in the Backlogs view.'
|
|
|
|
next_button.click
|
|
expect(page).to have_text 'To see your Task board, open the Sprint drop-down...'
|
|
|
|
next_button.click
|
|
expect(page).to have_selector('.backlog .items', visible: true)
|
|
expect(page).to have_text '... and select the Task board entry.'
|
|
|
|
next_button.click
|
|
expect(page)
|
|
.to have_current_path backlogs_project_sprint_taskboard_path(project.identifier, sprint.id)
|
|
expect(page).to have_text 'The Task board visualizes the progress for this sprint.'
|
|
|
|
next_button.click
|
|
expect(page)
|
|
.to have_text "Now let's have a look at the Work package section, which gives you a more detailed view of your work."
|
|
|
|
next_button.click
|
|
expect(page).to have_current_path project_work_packages_path(project.identifier)
|
|
end
|
|
end
|
|
end
|
|
|