2013-11-14 10:54:09 +01:00
|
|
|
require 'test_helper'
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# Test moderator management controller
|
2013-11-14 10:54:09 +01:00
|
|
|
class UsersControllerTest < ActionController::TestCase
|
2014-07-18 23:20:30 +02:00
|
|
|
include Devise::TestHelpers
|
|
|
|
|
2013-11-14 10:54:09 +01:00
|
|
|
setup do
|
|
|
|
@user = users(:one)
|
2014-07-18 23:20:30 +02:00
|
|
|
|
|
|
|
sign_in users(:one)
|
2013-11-14 10:54:09 +01:00
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should get index' do
|
2013-11-14 10:54:09 +01:00
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
assert_not_nil assigns(:users)
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should get new' do
|
2013-11-14 10:54:09 +01:00
|
|
|
get :new
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should create user' do
|
2013-11-14 10:54:09 +01:00
|
|
|
assert_difference('User.count') do
|
2014-01-10 16:35:58 +01:00
|
|
|
post :create, user: {
|
|
|
|
email: 'original@example.com',
|
|
|
|
firstname: @user.firstname,
|
|
|
|
lastname: @user.lastname,
|
|
|
|
login: @user.login,
|
|
|
|
password: 'abcdefghijklmnopqrstuvwxyz'
|
|
|
|
}
|
2013-11-14 10:54:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to user_path(assigns(:user))
|
|
|
|
end
|
|
|
|
|
2014-09-03 02:14:21 +02:00
|
|
|
test 'should not create user' do
|
|
|
|
assert_no_difference('User.count') do
|
|
|
|
post :create, user: {
|
|
|
|
login: nil
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should show user' do
|
2013-11-14 10:54:09 +01:00
|
|
|
get :show, id: @user
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should get edit' do
|
2013-11-14 10:54:09 +01:00
|
|
|
get :edit, id: @user
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should update user' do
|
2014-01-10 16:35:58 +01:00
|
|
|
patch :update, id: @user, user: {
|
|
|
|
email: @user.email,
|
|
|
|
firstname: @user.firstname,
|
|
|
|
lastname: @user.lastname,
|
|
|
|
login: @user.login
|
|
|
|
}
|
2013-11-14 10:54:09 +01:00
|
|
|
assert_redirected_to user_path(assigns(:user))
|
|
|
|
end
|
|
|
|
|
2014-09-03 02:14:21 +02:00
|
|
|
test 'should not update user' do
|
|
|
|
patch :update, id: @user, user: {
|
|
|
|
login: nil
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_not_empty assigns(:user).errors
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
test 'should destroy user' do
|
2013-11-14 10:54:09 +01:00
|
|
|
assert_difference('User.count', -1) do
|
|
|
|
delete :destroy, id: @user
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to users_path
|
|
|
|
end
|
|
|
|
end
|