71 lines
2.4 KiB
Ruby
71 lines
2.4 KiB
Ruby
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Copyright (C) 2013 Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class DmsfFilesControllerTest < RedmineDmsf::Test::TestCase
|
|
|
|
fixtures :users, :dmsf_files, :dmsf_file_revisions, :custom_fields,
|
|
:custom_values, :projects, :roles, :members, :member_roles, :enabled_modules,
|
|
:dmsf_file_revisions
|
|
|
|
def setup
|
|
@project = Project.find_by_id 1
|
|
assert_not_nil @project
|
|
@project.enable_module! :dmsf
|
|
@user = User.find_by_id 2
|
|
assert_not_nil @user
|
|
@request.session[:user_id] = @user.id
|
|
@file = DmsfFile.find_by_id 1
|
|
@role = Role.find_by_id 1
|
|
@custom_field = CustomField.find_by_id 21
|
|
@custom_value = CustomValue.find_by_id 22
|
|
end
|
|
|
|
def test_truth
|
|
assert_kind_of Project, @project
|
|
assert_kind_of User, @user
|
|
assert_kind_of DmsfFile, @file
|
|
assert_kind_of Role, @role
|
|
assert_kind_of CustomField, @custom_field
|
|
assert_kind_of CustomValue, @custom_value
|
|
end
|
|
|
|
def test_show_file
|
|
# Missing permissions
|
|
# TODO: Not working in Travis
|
|
#get :show, :id => @file.id
|
|
#assert_response 403
|
|
|
|
# Permissions OK
|
|
@role.add_permission! :view_dmsf_files
|
|
@role.add_permission! :file_manipulation
|
|
get :show, :id => @file.id
|
|
assert_response :success
|
|
|
|
# The last revision
|
|
assert_select 'label', { :text => @custom_field.name }
|
|
assert_select '.customfield', { :text => "#{@custom_field.name}: #{@custom_value.value}" }
|
|
|
|
# A new revision
|
|
assert_select 'label', { :text => @custom_field.name }
|
|
assert_select 'option', { :value => @custom_value.value }
|
|
end
|
|
end
|
|
|