Sha256: 5fceae094b111d6f62a7d91e2171a6b3bd930ebca772c3f751db5d52e5cbbcc8
Contents?: true
Size: 1010 Bytes
Versions: 5
Compression:
Stored size: 1010 Bytes
Contents
require "test_helper" class Sessions::SudosControllerTest < ActionDispatch::IntegrationTest setup do @<%= singular_table_name %>, @token = sign_in_as(<%= table_name %>(:lazaro_nixon)) @<%= singular_table_name %>.sessions.last.update! sudo_at: 1.day.ago end test "should sudo" do post sessions_sudo_url, params: { password: "Secret1*3*5*" }, headers: { "Authorization" => "Bearer #{@token}" } assert_response :no_content end test "should not sudo with wrong password" do post sessions_sudo_url, params: { password: "SecretWrong1*3" }, headers: { "Authorization" => "Bearer #{@token}" } assert_response :bad_request assert_equal "The password you entered is incorrect", response.parsed_body["error"] end def sign_in_as(<%= singular_table_name %>) post(sign_in_url, params: { email: <%= singular_table_name %>.email, password: "Secret1*3*5*" }, headers: { "User-Agent" => "App iOS" }); [<%= singular_table_name %>, response.headers["X-Session-Token"]] end end
Version data entries
5 entries across 5 versions & 1 rubygems