Redmine 3.4.4

This commit is contained in:
Manuel Cillero 2018-02-02 22:19:29 +01:00
commit 64924a6376
2112 changed files with 259028 additions and 0 deletions

View file

@ -0,0 +1,225 @@
# Redmine - project management software
# Copyright (C) 2006-2017 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
# 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 GroupsControllerTest < Redmine::ControllerTest
fixtures :projects, :users, :members, :member_roles, :roles, :groups_users
def setup
@request.session[:user_id] = 1
end
def test_index
get :index
assert_response :success
assert_select 'table.groups'
end
def test_index_should_show_user_count
get :index
assert_response :success
assert_select 'tr#group-11 td.user_count', :text => '1'
end
def test_index_with_name_filter
Group.generate!(:name => "Clients")
get :index, :params => {
:name => "cli"
}
assert_response :success
assert_select 'table.groups tbody tr', 1
assert_select 'table.groups tbody td.name', :text => 'Clients'
end
def test_show
get :show, :params => {
:id => 10
}
assert_response :success
end
def test_show_invalid_should_return_404
get :show, :params => {
:id => 99
}
assert_response 404
end
def test_new
get :new
assert_response :success
assert_select 'input[name=?]', 'group[name]'
end
def test_create
assert_difference 'Group.count' do
post :create, :params => {
:group => {
:name => 'New group'
}
}
end
assert_redirected_to '/groups'
group = Group.order('id DESC').first
assert_equal 'New group', group.name
assert_equal [], group.users
end
def test_create_and_continue
assert_difference 'Group.count' do
post :create, :params => {
:group => {
:name => 'New group'
},
:continue => 'Create and continue'
}
end
assert_redirected_to '/groups/new'
group = Group.order('id DESC').first
assert_equal 'New group', group.name
end
def test_create_with_failure
assert_no_difference 'Group.count' do
post :create, :params => {
:group => {
:name => ''
}
}
end
assert_response :success
assert_select_error /Name cannot be blank/i
end
def test_edit
get :edit, :params => {
:id => 10
}
assert_response :success
assert_select 'div#tab-content-users'
assert_select 'div#tab-content-memberships' do
assert_select 'a', :text => 'Private child of eCookbook'
end
end
def test_update
new_name = 'New name'
put :update, :params => {
:id => 10,
:group => {
:name => new_name
}
}
assert_redirected_to '/groups'
group = Group.find(10)
assert_equal new_name, group.name
end
def test_update_with_failure
put :update, :params => {
:id => 10,
:group => {
:name => ''
}
}
assert_response :success
assert_select_error /Name cannot be blank/i
end
def test_destroy
assert_difference 'Group.count', -1 do
post :destroy, :params => {
:id => 10
}
end
assert_redirected_to '/groups'
end
def test_new_users
get :new_users, :params => {
:id => 10
}
assert_response :success
assert_select 'input[name=?]', 'user_search'
end
def test_xhr_new_users
get :new_users, :params => {
:id => 10
},
:xhr => true
assert_response :success
assert_equal 'text/javascript', response.content_type
end
def test_add_users
assert_difference 'Group.find(10).users.count', 2 do
post :add_users, :params => {
:id => 10,
:user_ids => ['2', '3']
}
end
end
def test_xhr_add_users
assert_difference 'Group.find(10).users.count', 2 do
post :add_users, :params => {
:id => 10,
:user_ids => ['2', '3']
},
:xhr => true
assert_response :success
assert_equal 'text/javascript', response.content_type
end
assert_match /John Smith/, response.body
end
def test_remove_user
assert_difference 'Group.find(10).users.count', -1 do
delete :remove_user, :params => {
:id => 10,
:user_id => '8'
}
end
end
def test_xhr_remove_user
assert_difference 'Group.find(10).users.count', -1 do
delete :remove_user, :params => {
:id => 10,
:user_id => '8'
},
:xhr => true
assert_response :success
assert_equal 'text/javascript', response.content_type
end
end
def test_autocomplete_for_user
get :autocomplete_for_user, :params => {
:id => 10,
:q => 'smi',
:format => 'js'
},
:xhr => true
assert_response :success
assert_include 'John Smith', response.body
end
end