|
|
@ -11,10 +11,33 @@ describe ApplicationController, type: :controller do
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
around do |example|
|
|
|
|
|
|
|
|
registrations_mode = Setting.registrations_mode
|
|
|
|
|
|
|
|
example.run
|
|
|
|
|
|
|
|
Setting.registrations_mode = registrations_mode
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
before do
|
|
|
|
routes.draw { get 'success' => 'anonymous#success' }
|
|
|
|
routes.draw { get 'success' => 'anonymous#success' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
context 'when account is suspended' do
|
|
|
|
context 'when account is suspended' do
|
|
|
|
it 'returns http gone' do
|
|
|
|
it 'returns http gone' do
|
|
|
|
account = Fabricate(:account, suspended: true)
|
|
|
|
account = Fabricate(:account, suspended: true)
|
|
|
|