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/features/timelines/planning_element_management...

133 lines
5.8 KiB

Feature: Planning Element Management
As a Project Member
I want to view and edit planning elements within a project
So that I can plan the project's progress and report it to other projects
Background:
Given there are the following planning element types:
| Name | Is Milestone | In aggregation |
| Phase | false | true |
| Milestone | true | true |
And there are the following project types:
| Name |
| Standard Project |
| Extraordinary Project |
And the following planning element types are default for projects of type "Standard Project"
| Phase |
| Milestone |
And there is 1 user with:
| login | manager |
And there is a role "manager"
And the role "manager" may have the following rights:
| view_timelines |
| view_planning_elements |
| edit_planning_elements |
| delete_planning_elements |
And there is a project named "ecookbook" of type "Standard Project"
And I am working in project "ecookbook"
And the project uses the following modules:
| timelines |
And the user "manager" is a "manager"
And I am logged in as "manager"
Scenario: The project manager gets 'No data to display' when there are no planning elements defined
When I go to the page of the project called "ecookbook"
And I toggle the "Timelines" submenu
And I follow "Planning elements"
Then I should see "No data to display"
And I should see "New planning element"
Scenario: The project manager may create planning elements
When I go to the page of the project called "ecookbook"
And I toggle the "Timelines" submenu
And I follow "Planning elements"
And I follow "New planning element"
And I fill in "February" for "Name"
And I fill in "2012-02-01" for "Start date"
And I fill in "2012-02-29" for "End date"
And I press "Save"
Then I should see a notice flash stating "Successful creation."
And I should see "February"
When I toggle the "Timelines" submenu
And I follow "Planning elements"
Then I should see a planning element named "February"
When I follow "Activity"
Then I should see "Creation: February"
Scenario: The project manager may edit planning elements
Given there are the following planning elements:
| Name | Start date | End date |
| January | 2012-01-01 | 2012-01-31 |
| February | 2012-02-01 | 2012-02-29 |
| March | 2012-03-01 | 2012-03-31 |
When I go to the page of the planning element "February" of the project called "ecookbook"
And I follow "Update"
And I fill in "February 2012" for "Name"
And I press "Save"
Then I should see a notice flash stating "Successful update."
When I toggle the "Timelines" submenu
And I follow "Planning elements"
Then I should see a planning element named "February 2012"
When I follow "Activity"
Then I should see "Creation: February 2012"
Then I should see "Update: February 2012"
Scenario: Creating a planning element and setting the scenario at once
Given there is a scenario "Scenario 1" in project "ecookbook"
When I go to the page of the project called "ecookbook"
And I toggle the "Timelines" submenu
And I follow "Planning elements"
And I follow "New planning element"
And I fill in "February" for "Name"
And I fill in "2012-02-01" for "Current planning Start date"
And I fill in "2012-02-22" for "Current planning End date"
When I fill in "2022-12-24" for "Scenario 1 Start date"
And I fill in "2023-02-21" for "Scenario 1 End date"
And I press "Save"
Then I should see a notice flash stating "Successful creation."
And I should see "February"
Scenario: Editing a scenario
Given there are the following planning elements:
| Name | Start date | End date |
| January | 2012-01-01 | 2012-01-31 |
Given there is a scenario "worst case" in project "ecookbook"
And there are the following alternate dates for "worst case":
| Planning element name | Start date | End date |
| January | 2013-01-01 | 2013-01-31 |
When I go to the page of the planning element "January" of the project called "ecookbook"
And I follow "Update"
When I fill in "2012-02-01" for "worst case Start date"
And I fill in "2012-02-29" for "worst case End date"
And I press "Save"
Then I should see "Scenario worst case: Start date changed from 01/01/2013 to 02/01/2012"
And I should see "Scenario worst case: End date changed from 01/31/2013 to 02/29/2012"
Scenario: Deleting a scenario that is associated to a planning element
Given there are the following planning elements in project "ecookbook":
| Name | Start date | End date |
| January | 2012-01-01 | 2012-01-31 |
And there is a scenario "delete me" in project "ecookbook"
And there are the following alternate dates for "delete me":
| Planning element name | Start date | End date |
| January | 2013-01-01 | 2013-01-31 |
When I go to the page of the project called "ecookbook"
And I toggle the "Timelines" submenu
And I follow "Planning elements"
Then I should see a planning element named "January"
When I delete the scenario "delete me"
And I follow "January" within ".timelines-pe-name"
Then I should see "Scenario (deleted scenario): Start date set to 01/01/2013"
And I should see "Scenario (deleted scenario): End date set to 01/31/2013"