2019-03-16 15:03:47 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2012-02-06 10:06:32 +00:00
|
|
|
# Redmine - project management software
|
2023-01-01 06:19:35 +00:00
|
|
|
# Copyright (C) 2006-2023 Jean-Philippe Lang
|
2012-02-06 10:06:32 +00: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.
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
2023-01-01 07:13:39 +00:00
|
|
|
require_relative '../../test_helper'
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2013-01-22 18:26:04 +00:00
|
|
|
class Redmine::ApiTest::RolesTest < Redmine::ApiTest::Base
|
2012-02-06 10:06:32 +00:00
|
|
|
fixtures :roles
|
|
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
test "GET /roles.xml should return the roles" do
|
|
|
|
|
get '/roles.xml'
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'application/xml', @response.media_type
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2016-07-21 17:50:00 +00:00
|
|
|
assert_select 'roles role', 3
|
2015-01-17 17:02:55 +00:00
|
|
|
assert_select 'roles[type=array] role id', :text => '2' do
|
2014-11-22 09:38:21 +00:00
|
|
|
assert_select '~ name', :text => 'Developer'
|
|
|
|
|
end
|
2013-05-18 08:57:27 +00:00
|
|
|
end
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
test "GET /roles.json should return the roles" do
|
|
|
|
|
get '/roles.json'
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'application/json', @response.media_type
|
2012-02-06 10:06:32 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
json = ActiveSupport::JSON.decode(response.body)
|
|
|
|
|
assert_kind_of Hash, json
|
|
|
|
|
assert_kind_of Array, json['roles']
|
2016-07-21 17:50:00 +00:00
|
|
|
assert_equal 3, json['roles'].size
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_include({'id' => 2, 'name' => 'Developer'}, json['roles'])
|
2012-02-06 10:06:32 +00:00
|
|
|
end
|
2012-10-12 17:22:52 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
test "GET /roles/:id.xml should return the role" do
|
|
|
|
|
get '/roles/1.xml'
|
2012-10-12 17:22:52 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_response :success
|
2020-01-27 03:54:25 +00:00
|
|
|
assert_equal 'application/xml', @response.media_type
|
2012-10-12 17:22:52 +00:00
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_select 'role' do
|
|
|
|
|
assert_select 'name', :text => 'Manager'
|
2018-09-23 00:17:11 +00:00
|
|
|
assert_select 'assignable', :text => 'true'
|
|
|
|
|
assert_select 'issues_visibility', :text => 'all'
|
|
|
|
|
assert_select 'time_entries_visibility', :text => 'all'
|
|
|
|
|
assert_select 'users_visibility', :text => 'all'
|
|
|
|
|
|
2013-05-18 08:57:27 +00:00
|
|
|
assert_select 'role permissions[type=array]' do
|
|
|
|
|
assert_select 'permission', Role.find(1).permissions.size
|
|
|
|
|
assert_select 'permission', :text => 'view_issues'
|
2012-10-12 17:22:52 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2012-02-06 10:06:32 +00:00
|
|
|
end
|