2013-11-14 10:54:09 +01:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
test "should get index" do
|
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
assert_not_nil assigns(:users)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should get new" do
|
|
|
|
get :new
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should create user" do
|
|
|
|
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
|
|
|
|
|
|
|
|
test "should show user" do
|
|
|
|
get :show, id: @user
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should get edit" do
|
|
|
|
get :edit, id: @user
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
test "should destroy user" do
|
|
|
|
assert_difference('User.count', -1) do
|
|
|
|
delete :destroy, id: @user
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to users_path
|
|
|
|
end
|
|
|
|
end
|