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.
125 lines
4.9 KiB
125 lines
4.9 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2013 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: Fields editable on work package edit
|
|
Background:
|
|
Given there is 1 user with:
|
|
| login | manager |
|
|
| firstname | the |
|
|
| lastname | manager |
|
|
And there is a role "manager"
|
|
And there is 1 project with the following:
|
|
| identifier | ecookbook |
|
|
| name | ecookbook |
|
|
And I am working in project "ecookbook"
|
|
And the user "manager" is a "manager"
|
|
And I am already logged in as "manager"
|
|
|
|
@javascript
|
|
Scenario: Going to the page and viewing all the fields
|
|
Given there are the following types:
|
|
| Name | Is Milestone | In aggregation |
|
|
| Phase | false | true |
|
|
And there are the following project types:
|
|
| Name |
|
|
| Standard Project |
|
|
And the project named "ecookbook" is of the type "Standard Project"
|
|
And there is an issuepriority with:
|
|
| name | prio1 |
|
|
And the role "manager" may have the following rights:
|
|
| edit_work_packages |
|
|
| view_work_packages |
|
|
| manage_subtasks |
|
|
And the project "ecookbook" has 1 version with:
|
|
| name | version1 |
|
|
And the following types are enabled for projects of type "Standard Project"
|
|
| Phase |
|
|
And there are the following work packages in project "ecookbook":
|
|
| subject | description | start_date | due_date | done_ratio | type | responsible | assigned_to | priority | parent | estimated_hours | fixed_version |
|
|
| parentpe | | | | 0 | Phase | | | prio1 | | | |
|
|
| pe1 | pe1 description | 2013-01-01 | 2013-12-31 | 30 | Phase | manager | manager | prio1 | parentpe | 5 | version1 |
|
|
|
|
When I go to the edit page of the work package called "pe1"
|
|
And I follow "More"
|
|
|
|
Then I should see the following fields:
|
|
| Type | Phase1 |
|
|
| Subject | pe1 |
|
|
| Description | pe1 description |
|
|
| Priority | prio1 |
|
|
| Assignee | the manager |
|
|
| Responsible | the manager |
|
|
| Target version | version1 |
|
|
| Start date | 2013-01-01 |
|
|
| Due date | 2013-12-31 |
|
|
| Estimated time | 5.00 |
|
|
| % done | 30 % |
|
|
| Notes | |
|
|
And the "Parent" field should contain the id of work package "parentpe"
|
|
|
|
|
|
Scenario: Going to the page and viewing timelog fields if this module is enabled
|
|
Given the role "manager" may have the following rights:
|
|
| edit_work_packages |
|
|
| view_work_packages |
|
|
| log_time |
|
|
|
|
And there are the following work packages in project "ecookbook":
|
|
| subject |
|
|
| pe1 |
|
|
|
|
And the project "ecookbook" uses the following modules:
|
|
| time_tracking |
|
|
|
|
And there is an activity "design"
|
|
|
|
When I go to the edit page of the work package called "pe1"
|
|
|
|
Then I should see the following fields:
|
|
| Spent time |
|
|
| Activity |
|
|
| Comment |
|
|
|
|
Scenario: Going to the page and viewing custom field fields
|
|
Given the role "manager" may have the following rights:
|
|
| edit_work_packages |
|
|
|
|
Given the following work package custom fields are defined:
|
|
| name | type |
|
|
| cf1 | int |
|
|
|
|
And there are the following work packages in project "ecookbook":
|
|
| subject |
|
|
| pe1 |
|
|
|
|
And the work package "pe1" has the custom field "cf1" set to "4"
|
|
|
|
When I go to the edit page of the work package called "pe1"
|
|
|
|
Then I should see the following fields:
|
|
| cf1 | 4 |
|
|
|