2017-05-29 18:12:54 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe AccountControllerConcern do
|
2023-07-27 14:27:21 +02:00
|
|
|
controller(ApplicationController) do
|
2017-05-29 18:12:54 +02:00
|
|
|
include AccountControllerConcern
|
|
|
|
|
|
|
|
def success
|
2024-09-03 17:23:16 +02:00
|
|
|
render plain: @account.username # rubocop:disable RSpec/InstanceVariable
|
2017-05-29 18:12:54 +02:00
|
|
|
end
|
|
|
|
end
|
2022-01-28 14:24:37 +01:00
|
|
|
|
2017-05-29 18:12:54 +02:00
|
|
|
before do
|
|
|
|
routes.draw { get 'success' => 'anonymous#success' }
|
|
|
|
end
|
|
|
|
|
2022-01-28 14:24:37 +01:00
|
|
|
context 'when account is unconfirmed' do
|
|
|
|
it 'returns http not found' do
|
|
|
|
account = Fabricate(:user, confirmed_at: nil).account
|
|
|
|
get 'success', params: { account_username: account.username }
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is not approved' do
|
|
|
|
it 'returns http not found' do
|
|
|
|
Setting.registrations_mode = 'approved'
|
|
|
|
account = Fabricate(:user, approved: false).account
|
|
|
|
get 'success', params: { account_username: account.username }
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-29 18:12:54 +02:00
|
|
|
context 'when account is suspended' do
|
|
|
|
it 'returns http gone' do
|
2022-01-28 00:46:42 +01:00
|
|
|
account = Fabricate(:account, suspended: true)
|
2019-03-14 05:28:30 +01:00
|
|
|
get 'success', params: { account_username: account.username }
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is deleted by owner' do
|
|
|
|
it 'returns http gone' do
|
|
|
|
account = Fabricate(:account, suspended: true, user: nil)
|
2017-05-29 18:12:54 +02:00
|
|
|
get 'success', params: { account_username: account.username }
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is not suspended' do
|
2024-01-30 16:32:20 +01:00
|
|
|
let(:account) { Fabricate(:account, username: 'username') }
|
|
|
|
|
2024-09-03 17:23:16 +02:00
|
|
|
it 'Prepares the account, returns success, and sets link headers' do
|
2017-05-29 18:12:54 +02:00
|
|
|
get 'success', params: { account_username: account.username }
|
|
|
|
|
2024-09-05 22:05:38 +02:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and have_http_link_header('http://test.host/.well-known/webfinger?resource=acct%3Ausername%40cb6e6126.ngrok.io').for(rel: 'lrdd', type: 'application/jrd+json')
|
|
|
|
.and have_http_link_header('https://cb6e6126.ngrok.io/users/username').for(rel: 'alternate', type: 'application/activity+json')
|
2024-09-03 17:23:16 +02:00
|
|
|
expect(response.body)
|
|
|
|
.to include(account.username)
|
2017-05-29 18:12:54 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|