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.
108 lines
4.8 KiB
108 lines
4.8 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2014 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-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 doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
Feature: Timeline Comparison View Tests
|
|
Background:
|
|
Given there is 1 user with:
|
|
| login | manager |
|
|
And there is a role "manager"
|
|
And the role "manager" may have the following rights:
|
|
| view_timelines |
|
|
| edit_timelines |
|
|
| view_work_packages |
|
|
| edit_work_packages |
|
|
| delete_work_packages |
|
|
| view_reportings |
|
|
| view_project_associations |
|
|
|
|
And there is a project named "Volatile Planning"
|
|
And I am working in project "Volatile Planning"
|
|
And the user "manager" is a "manager"
|
|
And I am logged in as "manager"
|
|
|
|
And there are the following status:
|
|
| name | default |
|
|
| new | true |
|
|
| in progress | true |
|
|
| closed | true |
|
|
And the project "Volatile Planning" has the following types:
|
|
| name | position |
|
|
| Bug | 1 |
|
|
| Feature | 2 |
|
|
And the type "Bug" has the default workflow for the role "manager"
|
|
|
|
And the project uses the following modules:
|
|
| timelines |
|
|
And there are the following work packages were added "three weeks ago":
|
|
| Subject | Start date | Due date | type | status |
|
|
| January | 2014-01-01 | 2014-01-31 | Bug | new |
|
|
| February | 2014-02-01 | 2014-02-28 | Bug | new |
|
|
| March | 2014-03-01 | 2014-03-31 | Bug | new |
|
|
| April | 2014-04-01 | 2014-04-30 | Bug | new |
|
|
And the work package "February" was changed "two weeks ago" to:
|
|
| Subject | Start date | Due date | status id |
|
|
| May | 2014-05-01 | 2014-05-31 | 3 |
|
|
And the work package "January" was changed "one week ago" to:
|
|
| Subject | Start date | Due date | status id |
|
|
| February | 2014-02-01 | 2014-02-28 | 3 |
|
|
|
|
@javascript
|
|
Scenario: nine days comparison
|
|
Given I am working in the timeline "Changes" of the project called "Volatile Planning"
|
|
When there is a timeline "Changes" for project "Volatile Planning"
|
|
And I set the timeline to compare "now" to "9 days ago"
|
|
And I set the columns shown in the timeline to:
|
|
| start_date |
|
|
| due_date |
|
|
| status |
|
|
And I go to the page of the timeline "Changes" of the project called "Volatile Planning"
|
|
And I wait for timeline to load table
|
|
Then I should see the work package "May" has not moved
|
|
And I should see the work package "February" has moved
|
|
And I should see the work package "May" has not changed "Status"
|
|
|
|
And I should see the work package "February" has changed "Status"
|
|
And I should not see the work package "January" in the timeline
|
|
|
|
@javascript
|
|
Scenario: sixteen days comparison
|
|
Given I am working in the timeline "Changes" of the project called "Volatile Planning"
|
|
When there is a timeline "Changes" for project "Volatile Planning"
|
|
And I set the timeline to compare "now" to "16 days ago"
|
|
And I set the columns shown in the timeline to:
|
|
| start_date |
|
|
| due_date |
|
|
| status |
|
|
And I go to the page of the timeline "Changes" of the project called "Volatile Planning"
|
|
And I wait for timeline to load table
|
|
Then I should see the work package "May" has moved
|
|
And I should see the work package "February" has moved
|
|
And I should see the work package "May" has changed "Status"
|
|
And I should see the work package "February" has changed "Status"
|
|
And I should not see the work package "January" in the timeline
|
|
|
|
|