35 lines
1.4 KiB
Ruby
35 lines
1.4 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Jasmine::InboxCollection do
|
|
let!(:account) { create(:account) }
|
|
let!(:inbox) { create(:inbox, account: account) }
|
|
let!(:other_inbox) { create(:inbox, account: account) }
|
|
|
|
let!(:private_coll) { create(:jasmine_collection, :private, owner_inbox: inbox, account: account) }
|
|
let!(:shared_coll) { create(:jasmine_collection, :shared, account: account) }
|
|
|
|
context 'validations' do
|
|
it 'allows linking private collection to owner inbox' do
|
|
link = build(:jasmine_inbox_collection, inbox: inbox, collection: private_coll, account: account)
|
|
expect(link).to be_valid
|
|
end
|
|
|
|
it 'prevents linking private collection to non-owner inbox' do
|
|
link = build(:jasmine_inbox_collection, inbox: other_inbox, collection: private_coll, account: account)
|
|
expect(link).not_to be_valid
|
|
expect(link.errors[:base]).to include("Private collections can only be linked to their owner inbox")
|
|
end
|
|
|
|
it 'allows linking shared collection to any inbox in account' do
|
|
link = build(:jasmine_inbox_collection, inbox: other_inbox, collection: shared_coll, account: account)
|
|
expect(link).to be_valid
|
|
end
|
|
|
|
it 'validates unique linking' do
|
|
create(:jasmine_inbox_collection, inbox: inbox, collection: shared_coll, account: account)
|
|
duplicate = build(:jasmine_inbox_collection, inbox: inbox, collection: shared_coll, account: account)
|
|
expect(duplicate).not_to be_valid
|
|
end
|
|
end
|
|
end
|