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.
72 lines
3.0 KiB
72 lines
3.0 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 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: Editing a bool custom field
|
|
|
|
Background:
|
|
Given I am already admin
|
|
And the following languages are active:
|
|
| en |
|
|
| de |
|
|
And the following issue custom fields are defined:
|
|
| name | type |
|
|
| IssueCustomField | bool |
|
|
When I go to the custom fields page
|
|
|
|
@wip
|
|
@javascript
|
|
Scenario: Adding a localized name
|
|
When I follow "IssueCustomField"
|
|
And I set the english localization of the "name" attribute to "Issue Field"
|
|
And I add the german localization of the "name" attribute as "Ticket Feld"
|
|
And I press "Save"
|
|
Then I should be on the custom fields page
|
|
When I follow "Issue Field"
|
|
Then there should be the following localizations:
|
|
| locale | name | default_value |
|
|
| en | Issue Field | 0 |
|
|
| de | Ticket Feld | nil |
|
|
And I should not see "Add" within "#custom_field_name_attributes"
|
|
|
|
Scenario: Entering a long name displays an error
|
|
When I follow "IssueCustomField"
|
|
And I fill in "custom_field_translations_attributes_0_name" with "Long name which forces an error"
|
|
And I press "Save"
|
|
Then the "custom_field_translations_attributes_0_name" field should contain "Long name which forces an error"
|
|
And I should see "Name is too long" within "#errorExplanation"
|
|
|
|
Scenario: Entering an already taken name displays an error
|
|
Given the following issue custom fields are defined:
|
|
| name | type |
|
|
| Taken name | bool |
|
|
When I follow "IssueCustomField"
|
|
And I set the english localization of the "name" attribute to "Taken name"
|
|
And I press "Save"
|
|
Then I should see "Name has already been taken" within "#errorExplanation"
|
|
And the "custom_field_translations_attributes_0_name" field should contain "Taken name"
|
|
|
|
|