mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 00:36:01 +01:00
fix source indent of AuthSourcesControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20222 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -42,15 +42,20 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_new_with_invalid_type_should_respond_with_404
|
def test_new_with_invalid_type_should_respond_with_404
|
||||||
get :new, :params => {
|
get(
|
||||||
|
:new,
|
||||||
|
:params => {
|
||||||
:type => 'foo'
|
:type => 'foo'
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response 404
|
assert_response 404
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_create
|
def test_create
|
||||||
assert_difference 'AuthSourceLdap.count' do
|
assert_difference 'AuthSourceLdap.count' do
|
||||||
post :create, :params => {
|
post(
|
||||||
|
:create,
|
||||||
|
:params => {
|
||||||
:type => 'AuthSourceLdap',
|
:type => 'AuthSourceLdap',
|
||||||
:auth_source => {
|
:auth_source => {
|
||||||
:name => 'Test',
|
:name => 'Test',
|
||||||
@@ -59,6 +64,7 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
:attr_login => 'cn'
|
:attr_login => 'cn'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -71,7 +77,9 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
|
|
||||||
def test_create_with_failure
|
def test_create_with_failure
|
||||||
assert_no_difference 'AuthSourceLdap.count' do
|
assert_no_difference 'AuthSourceLdap.count' do
|
||||||
post :create, :params => {
|
post(
|
||||||
|
:create,
|
||||||
|
:params => {
|
||||||
:type => 'AuthSourceLdap',
|
:type => 'AuthSourceLdap',
|
||||||
:auth_source => {
|
:auth_source => {
|
||||||
:name => 'Test',
|
:name => 'Test',
|
||||||
@@ -80,15 +88,19 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
:attr_login => 'cn'
|
:attr_login => 'cn'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response :success
|
assert_response :success
|
||||||
end
|
end
|
||||||
assert_select_error /host cannot be blank/i
|
assert_select_error /host cannot be blank/i
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_edit
|
def test_edit
|
||||||
get :edit, :params => {
|
get(
|
||||||
|
:edit,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response :success
|
assert_response :success
|
||||||
|
|
||||||
assert_select 'form#auth_source_form' do
|
assert_select 'form#auth_source_form' do
|
||||||
@@ -99,23 +111,31 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
def test_edit_should_not_contain_password
|
def test_edit_should_not_contain_password
|
||||||
AuthSource.find(1).update_column :account_password, 'secret'
|
AuthSource.find(1).update_column :account_password, 'secret'
|
||||||
|
|
||||||
get :edit, :params => {
|
get(
|
||||||
|
:edit,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select 'input[value=secret]', 0
|
assert_select 'input[value=secret]', 0
|
||||||
assert_select 'input[name=dummy_password][value^=xxxxxx]'
|
assert_select 'input[name=dummy_password][value^=xxxxxx]'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_edit_invalid_should_respond_with_404
|
def test_edit_invalid_should_respond_with_404
|
||||||
get :edit, :params => {
|
get(
|
||||||
|
:edit,
|
||||||
|
:params => {
|
||||||
:id => 99
|
:id => 99
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response 404
|
assert_response 404
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update
|
def test_update
|
||||||
put :update, :params => {
|
put(
|
||||||
|
:update,
|
||||||
|
:params => {
|
||||||
:id => 1,
|
:id => 1,
|
||||||
:auth_source => {
|
:auth_source => {
|
||||||
:name => 'Renamed',
|
:name => 'Renamed',
|
||||||
@@ -124,6 +144,7 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
:attr_login => 'uid'
|
:attr_login => 'uid'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
source = AuthSourceLdap.find(1)
|
source = AuthSourceLdap.find(1)
|
||||||
assert_equal 'Renamed', source.name
|
assert_equal 'Renamed', source.name
|
||||||
@@ -131,7 +152,9 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_update_with_failure
|
def test_update_with_failure
|
||||||
put :update, :params => {
|
put(
|
||||||
|
:update,
|
||||||
|
:params => {
|
||||||
:id => 1,
|
:id => 1,
|
||||||
:auth_source => {
|
:auth_source => {
|
||||||
:name => 'Renamed',
|
:name => 'Renamed',
|
||||||
@@ -140,15 +163,19 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
:attr_login => 'uid'
|
:attr_login => 'uid'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select_error /host cannot be blank/i
|
assert_select_error /host cannot be blank/i
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_destroy
|
def test_destroy
|
||||||
assert_difference 'AuthSourceLdap.count', -1 do
|
assert_difference 'AuthSourceLdap.count', -1 do
|
||||||
delete :destroy, :params => {
|
delete(
|
||||||
|
:destroy,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -157,9 +184,12 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
User.find(2).update_attribute :auth_source_id, 1
|
User.find(2).update_attribute :auth_source_id, 1
|
||||||
|
|
||||||
assert_no_difference 'AuthSourceLdap.count' do
|
assert_no_difference 'AuthSourceLdap.count' do
|
||||||
delete :destroy, :params => {
|
delete(
|
||||||
|
:destroy,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
assert_equal 'This authentication mode is in use and cannot be deleted.', flash[:error]
|
assert_equal 'This authentication mode is in use and cannot be deleted.', flash[:error]
|
||||||
end
|
end
|
||||||
@@ -168,9 +198,12 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
def test_test_connection
|
def test_test_connection
|
||||||
AuthSourceLdap.any_instance.stubs(:test_connection).returns(true)
|
AuthSourceLdap.any_instance.stubs(:test_connection).returns(true)
|
||||||
|
|
||||||
get :test_connection, :params => {
|
get(
|
||||||
|
:test_connection,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
assert_not_nil flash[:notice]
|
assert_not_nil flash[:notice]
|
||||||
assert_match /successful/i, flash[:notice]
|
assert_match /successful/i, flash[:notice]
|
||||||
@@ -179,9 +212,12 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
def test_test_connection_with_failure
|
def test_test_connection_with_failure
|
||||||
AuthSourceLdap.any_instance.stubs(:initialize_ldap_con).raises(Net::LDAP::Error.new("Something went wrong"))
|
AuthSourceLdap.any_instance.stubs(:initialize_ldap_con).raises(Net::LDAP::Error.new("Something went wrong"))
|
||||||
|
|
||||||
get :test_connection, :params => {
|
get(
|
||||||
|
:test_connection,
|
||||||
|
:params => {
|
||||||
:id => 1
|
:id => 1
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_redirected_to '/auth_sources'
|
assert_redirected_to '/auth_sources'
|
||||||
assert_not_nil flash[:error]
|
assert_not_nil flash[:error]
|
||||||
assert_include 'Something went wrong', flash[:error]
|
assert_include 'Something went wrong', flash[:error]
|
||||||
@@ -196,9 +232,12 @@ class AuthSourcesControllerTest < Redmine::ControllerTest
|
|||||||
:mail => 'foo2@example.net', :auth_source_id => 1}
|
:mail => 'foo2@example.net', :auth_source_id => 1}
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
get :autocomplete_for_new_user, :params => {
|
get(
|
||||||
|
:autocomplete_for_new_user,
|
||||||
|
:params => {
|
||||||
:term => 'foo'
|
:term => 'foo'
|
||||||
}
|
}
|
||||||
|
)
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_equal 'application/json', response.media_type
|
assert_equal 'application/json', response.media_type
|
||||||
json = ActiveSupport::JSON.decode(response.body)
|
json = ActiveSupport::JSON.decode(response.body)
|
||||||
|
|||||||
Reference in New Issue
Block a user