Sha256: 86c512ea324a264990df3c1cbfcb054da52c1bf221a585958543f5eeb15c34df
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
require "test_helper" class SessionsControllerTest < ActionDispatch::IntegrationTest setup do @<%= singular_table_name %>, @token = sign_in_as(<%= table_name %>(:lazaro_nixon)) end test "should get index" do get sessions_url, headers: { "Authorization" => "Bearer #{@token}" } assert_response :success end test "should show session" do get session_url(@<%= singular_table_name %>.sessions.last), headers: { "Authorization" => "Bearer #{@token}" } assert_response :success end test "should sign in" do post sign_in_url, params: { email: @<%= singular_table_name %>.email, password: "secret123" } assert_enqueued_email_with SessionMailer, :signed_in_notification, args: { session: @<%= singular_table_name %>.sessions.last } assert_response :created end test "should not sign in with wrong credentials" do post sign_in_url, params: { email: @<%= singular_table_name %>.email, password: "wrong_password" } assert_response :unauthorized end test "should sign out" do delete session_url(@<%= singular_table_name %>.sessions.last), headers: { "Authorization" => "Bearer #{@token}" } assert_response :no_content end def sign_in_as(<%= singular_table_name %>) post(sign_in_url, params: { email: <%= singular_table_name %>.email, password: "secret123" }); [<%= singular_table_name %>, response.headers["X-Session-Token"]] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
authentication-zero-2.2.8 | lib/generators/authentication/templates/test_unit/controllers/api/sessions_controller_test.rb.tt |