validates_presence_of :name, :field_format
validates_uniqueness_of :name, :scope => :type
validates_length_of :name, :maximum => 30
- validates_inclusion_of :field_format, :in => Redmine::CustomFieldFormat.available_formats
+ validates_inclusion_of :field_format, :in => Proc.new { Redmine::CustomFieldFormat.available_formats }
validate :validate_custom_field
before_validation :set_searchable
@@available[custom_field_format.name] = custom_field_format unless @@available.keys.include?(custom_field_format.name)
end
+ def delete(format)
+ if format.is_a?(Redmine::CustomFieldFormat)
+ format = format.name
+ end
+ @@available.delete(format)
+ end
+
def available_formats
@@available.keys
end
assert field.valid?
end
+ def test_field_format_should_be_validated
+ field = CustomField.new(:name => 'Test', :field_format => 'foo')
+ assert !field.valid?
+ end
+
+ def test_field_format_validation_should_accept_formats_added_at_runtime
+ Redmine::CustomFieldFormat.register 'foobar'
+
+ field = CustomField.new(:name => 'Some Custom Field', :field_format => 'foobar')
+ assert field.valid?, 'field should be valid'
+ ensure
+ Redmine::CustomFieldFormat.delete 'foobar'
+ end
+
def test_should_not_change_field_format_of_existing_custom_field
field = CustomField.find(1)
field.field_format = 'int'