mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-11 09:25:08 +00:00
![Matt Jankowski](/assets/img/avatar_default.png)
Some checks failed
Bundler Audit / security (push) Waiting to run
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
CSS Linting / lint (push) Has been cancelled
JavaScript Linting / lint (push) Has been cancelled
JavaScript Testing / test (push) Has been cancelled
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Auth Challenges' do
|
|
let(:password) { 'foobar12345' }
|
|
let(:user) { Fabricate(:user, password: password) }
|
|
|
|
before { sign_in user }
|
|
|
|
describe 'POST #create' do
|
|
let(:return_to) { edit_user_registration_path }
|
|
|
|
context 'with correct password' do
|
|
it 'redirects back and sets challenge passed at in session' do
|
|
post '/auth/challenge', params: { form_challenge: { return_to: return_to, current_password: password } }
|
|
|
|
expect(response)
|
|
.to redirect_to(return_to)
|
|
expect(session[:challenge_passed_at])
|
|
.to_not be_nil
|
|
end
|
|
end
|
|
|
|
context 'with incorrect password' do
|
|
it 'renders challenge, displays error, does not set session' do
|
|
post '/auth/challenge', params: { form_challenge: { return_to: return_to, current_password: 'hhfggjjd562' } }
|
|
|
|
expect(response.body)
|
|
.to include(I18n.t('challenge.prompt'))
|
|
.and include('Invalid password')
|
|
expect(session[:challenge_passed_at])
|
|
.to be_nil
|
|
end
|
|
end
|
|
|
|
context 'with invalid params' do
|
|
it 'gracefully handles invalid nested params' do
|
|
post auth_challenge_path(form_challenge: 'invalid')
|
|
|
|
expect(response)
|
|
.to have_http_status(400)
|
|
end
|
|
end
|
|
end
|
|
end
|