Reduce .times
usage in StatusPin
and add PIN_LIMIT
constant in validator (#27945)
This commit is contained in:
parent
1fabf20a88
commit
00c6ebd86f
2 changed files with 27 additions and 26 deletions
|
@ -40,35 +40,34 @@ RSpec.describe StatusPin do
|
|||
expect(described_class.new(account: account, status: status).save).to be false
|
||||
end
|
||||
|
||||
max_pins = 5
|
||||
it 'does not allow pins above the max' do
|
||||
account = Fabricate(:account)
|
||||
status = []
|
||||
context 'with a pin limit' do
|
||||
before { stub_const('StatusPinValidator::PIN_LIMIT', 2) }
|
||||
|
||||
(max_pins + 1).times do |i|
|
||||
status[i] = Fabricate(:status, account: account)
|
||||
it 'does not allow pins above the max' do
|
||||
account = Fabricate(:account)
|
||||
|
||||
Fabricate.times(StatusPinValidator::PIN_LIMIT, :status_pin, account: account)
|
||||
|
||||
pin = described_class.new(account: account, status: Fabricate(:status, account: account))
|
||||
expect(pin.save)
|
||||
.to be(false)
|
||||
|
||||
expect(pin.errors[:base])
|
||||
.to contain_exactly(I18n.t('statuses.pin_errors.limit'))
|
||||
end
|
||||
|
||||
max_pins.times do |i|
|
||||
expect(described_class.new(account: account, status: status[i]).save).to be true
|
||||
it 'allows pins above the max for remote accounts' do
|
||||
account = Fabricate(:account, domain: 'remote.test', username: 'bob', url: 'https://remote.test/')
|
||||
|
||||
Fabricate.times(StatusPinValidator::PIN_LIMIT, :status_pin, account: account)
|
||||
|
||||
pin = described_class.new(account: account, status: Fabricate(:status, account: account))
|
||||
expect(pin.save)
|
||||
.to be(true)
|
||||
|
||||
expect(pin.errors[:base])
|
||||
.to be_empty
|
||||
end
|
||||
|
||||
expect(described_class.new(account: account, status: status[max_pins]).save).to be false
|
||||
end
|
||||
|
||||
it 'allows pins above the max for remote accounts' do
|
||||
account = Fabricate(:account, domain: 'remote.test', username: 'bob', url: 'https://remote.test/')
|
||||
status = []
|
||||
|
||||
(max_pins + 1).times do |i|
|
||||
status[i] = Fabricate(:status, account: account)
|
||||
end
|
||||
|
||||
max_pins.times do |i|
|
||||
expect(described_class.new(account: account, status: status[i]).save).to be true
|
||||
end
|
||||
|
||||
expect(described_class.new(account: account, status: status[max_pins]).save).to be true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue