Merged LdapAuthSourceController into AuthSourceController.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9232 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-03-11 11:43:27 +00:00
parent 81185a8d93
commit bd47af098f
12 changed files with 82 additions and 258 deletions

View File

@@ -18,7 +18,7 @@
require File.expand_path('../../test_helper', __FILE__)
class AuthSourcesControllerTest < ActionController::TestCase
fixtures :users
fixtures :users, :auth_sources
def setup
@request.session[:user_id] = 1
@@ -37,54 +37,91 @@ class AuthSourcesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_kind_of AuthSource, assigns(:auth_source)
assert assigns(:auth_source).new_record?
source = assigns(:auth_source)
assert_equal AuthSourceLdap, source.class
assert source.new_record?
assert_tag 'input', :attributes => {:name => 'type', :value => 'AuthSourceLdap'}
assert_tag 'input', :attributes => {:name => 'auth_source[host]'}
end
def test_create
assert_difference 'AuthSource.count' do
post :create, :auth_source => {:name => 'Test'}
assert_difference 'AuthSourceLdap.count' do
post :create, :type => 'AuthSourceLdap', :auth_source => {:name => 'Test', :host => '127.0.0.1', :port => '389', :attr_login => 'cn'}
assert_redirected_to '/auth_sources'
end
assert_redirected_to '/auth_sources'
auth_source = AuthSource.first(:order => 'id DESC')
assert_equal 'Test', auth_source.name
source = AuthSourceLdap.first(:order => 'id DESC')
assert_equal 'Test', source.name
assert_equal '127.0.0.1', source.host
assert_equal 389, source.port
assert_equal 'cn', source.attr_login
end
def test_create_with_failure
assert_no_difference 'AuthSourceLdap.count' do
post :create, :type => 'AuthSourceLdap', :auth_source => {:name => 'Test', :host => '', :port => '389', :attr_login => 'cn'}
assert_response :success
assert_template 'new'
end
assert_error_tag :content => /host can't be blank/i
end
def test_edit
auth_source = AuthSource.create!(:name => 'TestEdit')
get :edit, :id => auth_source.id
get :edit, :id => 1
assert_response :success
assert_template 'edit'
assert_equal auth_source, assigns(:auth_source)
assert_tag 'input', :attributes => {:name => 'auth_source[host]'}
end
def test_update
auth_source = AuthSource.create!(:name => 'TestEdit')
post :update, :id => auth_source.id, :auth_source => {:name => 'TestUpdate'}
post :update, :id => 1, :auth_source => {:name => 'Renamed', :host => '192.168.0.10', :port => '389', :attr_login => 'uid'}
assert_redirected_to '/auth_sources'
assert_equal 'TestUpdate', auth_source.reload.name
source = AuthSourceLdap.find(1)
assert_equal 'Renamed', source.name
assert_equal '192.168.0.10', source.host
end
def test_destroy_without_users
auth_source = AuthSource.create!(:name => 'TestEdit')
assert_difference 'AuthSource.count', -1 do
post :destroy, :id => auth_source.id
end
assert_redirected_to '/auth_sources'
def test_update_with_failure
post :update, :id => 1, :auth_source => {:name => 'Renamed', :host => '', :port => '389', :attr_login => 'uid'}
assert_response :success
assert_template 'edit'
assert_error_tag :content => /host can't be blank/i
end
def test_destroy_with_users
auth_source = AuthSource.create!(:name => 'TestEdit')
User.find(2).update_attribute :auth_source, auth_source
assert_no_difference 'AuthSource.count' do
post :destroy, :id => auth_source.id
def test_destroy
assert_difference 'AuthSourceLdap.count', -1 do
post :destroy, :id => 1
end
end
def test_destroy_auth_source_in_use
User.find(2).update_attribute :auth_source_id, 1
assert_no_difference 'AuthSourceLdap.count' do
post :destroy, :id => 1
end
end
def test_test_connection
AuthSourceLdap.any_instance.stubs(:test_connection).returns(true)
get :test_connection, :id => 1
assert_redirected_to '/auth_sources'
assert AuthSource.find(auth_source.id)
assert_not_nil flash[:notice]
assert_match /successful/i, flash[:notice]
end
def test_test_connection_with_failure
AuthSourceLdap.any_instance.stubs(:test_connection).raises(Exception.new("Something went wrong"))
get :test_connection, :id => 1
assert_redirected_to '/auth_sources'
assert_not_nil flash[:error]
assert_include '(Something went wrong)', flash[:error]
end
end