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/custom_fields/edit_bool.feature

46 lines
1.9 KiB

Feature: Editing a bool custom field
Background:
Given I am admin
And the following languages are active:
| en |
| de |
| fr |
And the following issue custom fields are defined:
| name | type |
| IssueCustomField | bool |
When I go to the custom fields page
@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 add the french localization of the "name" attribute as "Lorem"
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 |
| fr | Lorem | 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"