Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -1,5 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# Redmine - project management software
|
||||
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
||||
# Copyright (C) 2006-2019 Jean-Philippe Lang
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
|
@ -20,6 +22,9 @@ require File.expand_path('../../../../test_helper', __FILE__)
|
|||
class Redmine::PluginTest < ActiveSupport::TestCase
|
||||
def setup
|
||||
@klass = Redmine::Plugin
|
||||
# Change plugin directory for testing to default
|
||||
# plugins/foo => test/fixtures/plugins/foo
|
||||
@klass.directory = Rails.root.join('test/fixtures/plugins')
|
||||
# In case some real plugins are installed
|
||||
@klass.clear
|
||||
end
|
||||
|
@ -29,7 +34,7 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
end
|
||||
|
||||
def test_register
|
||||
@klass.register :foo do
|
||||
@klass.register :foo_plugin do
|
||||
name 'Foo plugin'
|
||||
url 'http://example.net/plugins/foo'
|
||||
author 'John Smith'
|
||||
|
@ -41,9 +46,9 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
|
||||
assert_equal 1, @klass.all.size
|
||||
|
||||
plugin = @klass.find('foo')
|
||||
plugin = @klass.find('foo_plugin')
|
||||
assert plugin.is_a?(Redmine::Plugin)
|
||||
assert_equal :foo, plugin.id
|
||||
assert_equal :foo_plugin, plugin.id
|
||||
assert_equal 'Foo plugin', plugin.name
|
||||
assert_equal 'http://example.net/plugins/foo', plugin.url
|
||||
assert_equal 'John Smith', plugin.author
|
||||
|
@ -52,15 +57,23 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
assert_equal '0.0.1', plugin.version
|
||||
end
|
||||
|
||||
def test_register_should_raise_error_if_plugin_directory_does_not_exist
|
||||
e = assert_raises Redmine::PluginNotFound do
|
||||
@klass.register(:bar_plugin) {}
|
||||
end
|
||||
|
||||
assert_equal "Plugin not found. The directory for plugin bar_plugin should be #{Rails.root.join('test/fixtures/plugins/bar_plugin')}.", e.message
|
||||
end
|
||||
|
||||
def test_installed
|
||||
@klass.register(:foo) {}
|
||||
assert_equal true, @klass.installed?(:foo)
|
||||
@klass.register(:foo_plugin) {}
|
||||
assert_equal true, @klass.installed?(:foo_plugin)
|
||||
assert_equal false, @klass.installed?(:bar)
|
||||
end
|
||||
|
||||
def test_menu
|
||||
assert_difference 'Redmine::MenuManager.items(:project_menu).size' do
|
||||
@klass.register :foo do
|
||||
@klass.register :foo_plugin do
|
||||
menu :project_menu, :foo_menu_item, '/foo', :caption => 'Foo'
|
||||
end
|
||||
end
|
||||
|
@ -75,7 +88,7 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
def test_delete_menu_item
|
||||
Redmine::MenuManager.map(:project_menu).push(:foo_menu_item, '/foo', :caption => 'Foo')
|
||||
assert_difference 'Redmine::MenuManager.items(:project_menu).size', -1 do
|
||||
@klass.register :foo do
|
||||
@klass.register :foo_plugin do
|
||||
delete_menu_item :project_menu, :foo_menu_item
|
||||
end
|
||||
end
|
||||
|
@ -86,18 +99,18 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
|
||||
def test_directory_with_override
|
||||
@klass.register(:foo) do
|
||||
directory '/path/to/foo'
|
||||
directory 'test/fixtures/plugins/foo_plugin'
|
||||
end
|
||||
assert_equal '/path/to/foo', @klass.find('foo').directory
|
||||
assert_equal 'test/fixtures/plugins/foo_plugin', @klass.find('foo').directory
|
||||
end
|
||||
|
||||
def test_directory_without_override
|
||||
@klass.register(:foo) {}
|
||||
assert_equal File.join(@klass.directory, 'foo'), @klass.find('foo').directory
|
||||
@klass.register(:other_plugin) {}
|
||||
assert_equal File.join(@klass.directory, 'other_plugin'), @klass.find('other_plugin').directory
|
||||
end
|
||||
|
||||
def test_requires_redmine
|
||||
plugin = Redmine::Plugin.register(:foo) {}
|
||||
plugin = Redmine::Plugin.register(:foo_plugin) {}
|
||||
Redmine::VERSION.stubs(:to_a).returns([2, 1, 3, "stable", 10817])
|
||||
# Specific version without hash
|
||||
assert plugin.requires_redmine('2.1.3')
|
||||
|
@ -146,41 +159,50 @@ class Redmine::PluginTest < ActiveSupport::TestCase
|
|||
def test_requires_redmine_plugin
|
||||
test = self
|
||||
other_version = '0.5.0'
|
||||
@klass.register :other do
|
||||
@klass.register :other_plugin do
|
||||
name 'Other'
|
||||
version other_version
|
||||
end
|
||||
@klass.register :foo do
|
||||
test.assert requires_redmine_plugin(:other, :version_or_higher => '0.1.0')
|
||||
test.assert requires_redmine_plugin(:other, :version_or_higher => other_version)
|
||||
test.assert requires_redmine_plugin(:other, other_version)
|
||||
@klass.register :foo_plugin do
|
||||
test.assert requires_redmine_plugin(:other_plugin, :version_or_higher => '0.1.0')
|
||||
test.assert requires_redmine_plugin(:other_plugin, :version_or_higher => other_version)
|
||||
test.assert requires_redmine_plugin(:other_plugin, other_version)
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:other, :version_or_higher => '99.0.0')
|
||||
requires_redmine_plugin(:other_plugin, :version_or_higher => '99.0.0')
|
||||
end
|
||||
test.assert requires_redmine_plugin(:other, :version => other_version)
|
||||
test.assert requires_redmine_plugin(:other, :version => [other_version, '99.0.0'])
|
||||
test.assert requires_redmine_plugin(:other_plugin, :version => other_version)
|
||||
test.assert requires_redmine_plugin(:other_plugin, :version => [other_version, '99.0.0'])
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:other, :version => '99.0.0')
|
||||
requires_redmine_plugin(:other_plugin, :version => '99.0.0')
|
||||
end
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:other, :version => ['98.0.0', '99.0.0'])
|
||||
requires_redmine_plugin(:other_plugin, :version => ['98.0.0', '99.0.0'])
|
||||
end
|
||||
# Missing plugin
|
||||
test.assert_raise Redmine::PluginNotFound do
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:missing, :version_or_higher => '0.1.0')
|
||||
end
|
||||
test.assert_raise Redmine::PluginNotFound do
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:missing, '0.1.0')
|
||||
end
|
||||
test.assert_raise Redmine::PluginNotFound do
|
||||
test.assert_raise Redmine::PluginRequirementError do
|
||||
requires_redmine_plugin(:missing, :version => '0.1.0')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_settings_warns_about_possible_partial_collision
|
||||
@klass.register(:foo) { settings :partial => 'foo/settings' }
|
||||
@klass.register(:foo_plugin) { settings :partial => 'foo/settings' }
|
||||
Rails.logger.expects(:warn)
|
||||
@klass.register(:bar) { settings :partial => 'foo/settings' }
|
||||
@klass.register(:other_plugin) { settings :partial => 'foo/settings' }
|
||||
end
|
||||
|
||||
def test_migrate_redmine_plugin
|
||||
@klass.register :foo_plugin do
|
||||
name 'Foo plugin'
|
||||
version '0.0.1'
|
||||
end
|
||||
|
||||
assert Redmine::Plugin.migrate('foo_plugin')
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue