51 lines
1.8 KiB
Ruby
51 lines
1.8 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 DmsfControllerTest < RedmineDmsf::Test::TestCase
|
|
|
|
fixtures :users, :dmsf_files, :dmsf_file_revisions, :dmsf_folders,
|
|
:custom_fields, :custom_values, :projects, :members, :member_roles,
|
|
:enabled_modules
|
|
|
|
def setup
|
|
@request.session[:user_id] = 2
|
|
@project = Project.find_by_id 1
|
|
@folder = DmsfFolder.find_by_id 1
|
|
@role = Role.find_by_id 1
|
|
@custom_field = CustomField.find_by_id 21
|
|
@custom_value_1 = CustomValue.find_by_id 21
|
|
end
|
|
|
|
def test_edit_folder
|
|
# Missing permissions
|
|
get :edit, :id => @project, :folder_id => @folder
|
|
assert_response 403
|
|
|
|
# Permissions OK
|
|
@role.add_permission! :view_dmsf_folders
|
|
@role.add_permission! :folder_manipulation
|
|
get :edit, :id => @project, :folder_id => @folder
|
|
assert_response :success
|
|
assert_select 'label', {:text => @custom_field.name}
|
|
assert_select 'option', {:value => @custom_value_1.value}
|
|
end
|
|
end
|
|
|