Sha256: ae0c289b1579384dc433b6ba2011159e598f2b22d6eadb152e5bece45e80ccd3

Contents?: true

Size: 1016 Bytes

Versions: 5

Compression:

Stored size: 1016 Bytes

Contents

require "test_helper"

class Identity::EmailsControllerTest < ActionDispatch::IntegrationTest
  setup do
    @<%= singular_table_name %>, @token = sign_in_as(<%= table_name %>(:lazaro_nixon))
  end

  test "should update email" do
    patch identity_email_url, params: { email: "new_email@hey.com" }, headers: { "Authorization" => "Bearer #{@token}" }
    assert_response :success
  end

  test "should not update email without sudo" do
    @<%= singular_table_name %>.sessions.last.update! sudo_at: 1.day.ago

    patch identity_email_url, params: { email: "new_email@hey.com" }, headers: { "Authorization" => "Bearer #{@token}" }

    assert_response :forbidden
    assert_equal "Enter your password to continue", 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

Version Path
authentication-zero-2.8.4 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.8.3 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.8.2 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.8.1 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.8.0 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt