Sha256: 83d42d8bfe2f096e98d21b40656443c8725abe5ed4adfc7bdb04fc439c2e1b93

Contents?: true

Size: 764 Bytes

Versions: 41

Compression:

Stored size: 764 Bytes

Contents

require "test_helper"

class Identity::EmailsControllerTest < ActionDispatch::IntegrationTest
  setup do
    @user, @token = sign_in_as(users(:lazaro_nixon))
  end

  def default_headers
    { "Authorization" => "Bearer #{@token}" }
  end

  test "should update email" do
    patch identity_email_url, params: { email: "new_email@hey.com", current_password: "Secret1*3*5*" }, headers: default_headers
    assert_response :success
  end

  test "should not update email with wrong current password" do
    patch identity_email_url, params: { email: "new_email@hey.com", current_password: "SecretWrong1*3" }, headers: default_headers

    assert_response :bad_request
    assert_equal "The password you entered is incorrect", response.parsed_body["error"]
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
authentication-zero-2.16.36 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.35 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.34 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.33 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.32 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.31 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.30 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.29 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.28 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.27 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.26 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.25 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.24 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.23 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.22 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.21 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.20 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.19 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.18 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt
authentication-zero-2.16.17 lib/generators/authentication/templates/test_unit/controllers/api/identity/emails_controller_test.rb.tt