2009-12-06 13:28:20 +03:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2009-12-06 13:28:20 +03:00
|
|
|
#
|
|
|
|
# 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.
|
2011-08-22 11:09:10 +04:00
|
|
|
#
|
2009-12-06 13:28:20 +03:00
|
|
|
# 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.
|
2011-08-22 11:09:10 +04:00
|
|
|
#
|
2009-12-06 13:28:20 +03:00
|
|
|
# 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.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../../test_helper', __FILE__)
|
2009-12-06 13:28:20 +03:00
|
|
|
|
2011-06-22 07:55:20 +04:00
|
|
|
class ProjectsHelperTest < ActionView::TestCase
|
2009-12-06 13:28:20 +03:00
|
|
|
include ApplicationHelper
|
|
|
|
include ProjectsHelper
|
2012-03-04 17:53:38 +04:00
|
|
|
include ERB::Util
|
2011-08-22 11:09:10 +04:00
|
|
|
|
2011-09-24 03:57:36 +04:00
|
|
|
fixtures :projects, :trackers, :issue_statuses, :issues,
|
|
|
|
:enumerations, :users, :issue_categories,
|
|
|
|
:versions,
|
|
|
|
:projects_trackers,
|
|
|
|
:member_roles,
|
|
|
|
:members,
|
|
|
|
:groups_users,
|
|
|
|
:enabled_modules,
|
|
|
|
:workflows
|
2009-12-06 13:28:20 +03:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
set_language_if_valid('en')
|
|
|
|
User.current = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_version_within_project
|
|
|
|
@project = Project.find(2)
|
|
|
|
User.current = User.find(1)
|
2011-07-06 20:28:48 +04:00
|
|
|
assert_equal '<a href="/versions/5">Alpha</a>', link_to_version(Version.find(5))
|
2009-12-06 13:28:20 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_version
|
|
|
|
User.current = User.find(1)
|
2011-07-06 20:28:48 +04:00
|
|
|
assert_equal '<a href="/versions/5">OnlineStore - Alpha</a>', link_to_version(Version.find(5))
|
2009-12-06 13:28:20 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_private_version
|
|
|
|
assert_equal 'OnlineStore - Alpha', link_to_version(Version.find(5))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_version_invalid_version
|
|
|
|
assert_equal '', link_to_version(Object)
|
|
|
|
end
|
2011-08-22 11:09:10 +04:00
|
|
|
|
2009-12-06 13:28:20 +03:00
|
|
|
def test_format_version_name_within_project
|
|
|
|
@project = Project.find(1)
|
|
|
|
assert_equal "0.1", format_version_name(Version.find(1))
|
|
|
|
end
|
2011-08-22 11:09:10 +04:00
|
|
|
|
2009-12-06 13:28:20 +03:00
|
|
|
def test_format_version_name
|
|
|
|
assert_equal "eCookbook - 0.1", format_version_name(Version.find(1))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_format_version_name_for_system_version
|
|
|
|
assert_equal "OnlineStore - Systemwide visible version", format_version_name(Version.find(7))
|
|
|
|
end
|
2011-08-22 11:09:10 +04:00
|
|
|
|
2009-12-09 12:22:16 +03:00
|
|
|
def test_version_options_for_select_with_no_versions
|
|
|
|
assert_equal '', version_options_for_select([])
|
2012-07-27 23:41:36 +04:00
|
|
|
assert_equal '', version_options_for_select([], Version.find(1))
|
2009-12-09 12:22:16 +03:00
|
|
|
end
|
2009-12-06 13:28:20 +03:00
|
|
|
end
|