Browse Source

Make sure that Repository#extra_info returns a Hash or nil (#16032).

git-svn-id: http://svn.redmine.org/redmine/trunk@12848 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.5.0
Jean-Philippe Lang 10 years ago
parent
commit
09b95905dc
2 changed files with 12 additions and 0 deletions
  1. 6
    0
      app/models/repository.rb
  2. 6
    0
      test/unit/repository_test.rb

+ 6
- 0
app/models/repository.rb View File

@@ -153,6 +153,12 @@ class Repository < ActiveRecord::Base
end
end

# TODO: should return an empty hash instead of nil to avoid many ||{}
def extra_info
h = read_attribute(:extra_info)
h.is_a?(Hash) ? h : nil
end

def merge_extra_info(arg)
h = extra_info || {}
return h if arg.nil?

+ 6
- 0
test/unit/repository_test.rb View File

@@ -348,6 +348,12 @@ class RepositoryTest < ActiveSupport::TestCase
assert_equal true, klass.scm_available
end

def test_extra_info_should_not_return_non_hash_value
repo = Repository.new
repo.extra_info = "foo"
assert_nil repo.extra_info
end

def test_merge_extra_info
repo = Repository::Subversion.new(:project => Project.find(3))
assert !repo.save

Loading…
Cancel
Save