mirror of
https://github.com/mastodon/mastodon.git
synced 2025-12-13 14:02:41 +00:00
Refactor AppSignUpService specs
This commit is contained in:
parent
5f968ca781
commit
fa50876e10
|
|
@ -10,40 +10,39 @@ RSpec.describe AppSignUpService, type: :service do
|
||||||
let(:remote_ip) { IPAddr.new('198.0.2.1') }
|
let(:remote_ip) { IPAddr.new('198.0.2.1') }
|
||||||
|
|
||||||
describe '#call' do
|
describe '#call' do
|
||||||
it 'returns nil when registrations are closed' do
|
context 'when registrations are closed' do
|
||||||
|
around do |example|
|
||||||
tmp = Setting.registrations_mode
|
tmp = Setting.registrations_mode
|
||||||
Setting.registrations_mode = 'none'
|
Setting.registrations_mode = 'none'
|
||||||
expect { subject.call(app, remote_ip, good_params) }.to raise_error Mastodon::NotPermittedError
|
|
||||||
|
example.run
|
||||||
|
|
||||||
Setting.registrations_mode = tmp
|
Setting.registrations_mode = tmp
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'raises an error', :aggregate_failures do
|
||||||
|
expect { subject.call(app, remote_ip, good_params) }.to raise_error Mastodon::NotPermittedError
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
it 'raises an error when params are missing' do
|
it 'raises an error when params are missing' do
|
||||||
expect { subject.call(app, remote_ip, {}) }.to raise_error ActiveRecord::RecordInvalid
|
expect { subject.call(app, remote_ip, {}) }.to raise_error ActiveRecord::RecordInvalid
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'creates an unconfirmed user with access token' do
|
it 'creates an unconfirmed user with access token and the app\'s scope', :aggregate_failures do
|
||||||
access_token = subject.call(app, remote_ip, good_params)
|
|
||||||
expect(access_token).to_not be_nil
|
|
||||||
user = User.find_by(id: access_token.resource_owner_id)
|
|
||||||
expect(user).to_not be_nil
|
|
||||||
expect(user.confirmed?).to be false
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'creates access token with the app\'s scopes' do
|
|
||||||
access_token = subject.call(app, remote_ip, good_params)
|
access_token = subject.call(app, remote_ip, good_params)
|
||||||
expect(access_token).to_not be_nil
|
expect(access_token).to_not be_nil
|
||||||
expect(access_token.scopes.to_s).to eq 'read write'
|
expect(access_token.scopes.to_s).to eq 'read write'
|
||||||
end
|
|
||||||
|
|
||||||
it 'creates an account' do
|
|
||||||
access_token = subject.call(app, remote_ip, good_params)
|
|
||||||
expect(access_token).to_not be_nil
|
|
||||||
user = User.find_by(id: access_token.resource_owner_id)
|
user = User.find_by(id: access_token.resource_owner_id)
|
||||||
expect(user).to_not be_nil
|
expect(user).to_not be_nil
|
||||||
|
expect(user.confirmed?).to be false
|
||||||
|
|
||||||
expect(user.account).to_not be_nil
|
expect(user.account).to_not be_nil
|
||||||
expect(user.invite_request).to be_nil
|
expect(user.invite_request).to be_nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'when given an invite request text' do
|
||||||
it 'creates an account with invite request text' do
|
it 'creates an account with invite request text' do
|
||||||
access_token = subject.call(app, remote_ip, good_params.merge(reason: 'Foo bar'))
|
access_token = subject.call(app, remote_ip, good_params.merge(reason: 'Foo bar'))
|
||||||
expect(access_token).to_not be_nil
|
expect(access_token).to_not be_nil
|
||||||
|
|
@ -52,4 +51,5 @@ RSpec.describe AppSignUpService, type: :service do
|
||||||
expect(user.invite_request&.text).to eq 'Foo bar'
|
expect(user.invite_request&.text).to eq 'Foo bar'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user