2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-07-27 15:32:32 -04:00
|
|
|
|
|
|
|
describe List do
|
2018-12-03 08:01:30 -05:00
|
|
|
it_behaves_like 'having unique enum values'
|
2018-12-03 07:47:26 -05:00
|
|
|
|
2016-07-27 15:32:32 -04:00
|
|
|
describe 'relationships' do
|
|
|
|
it { is_expected.to belong_to(:board) }
|
|
|
|
it { is_expected.to belong_to(:label) }
|
2016-07-31 19:45:56 -04:00
|
|
|
end
|
|
|
|
|
2016-07-27 15:32:32 -04:00
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:board) }
|
|
|
|
it { is_expected.to validate_presence_of(:label) }
|
|
|
|
it { is_expected.to validate_presence_of(:list_type) }
|
|
|
|
it { is_expected.to validate_presence_of(:position) }
|
|
|
|
it { is_expected.to validate_numericality_of(:position).only_integer.is_greater_than_or_equal_to(0) }
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
context 'when list_type is set to closed' do
|
|
|
|
subject { described_class.new(list_type: :closed) }
|
2016-07-27 15:32:32 -04:00
|
|
|
|
2016-07-28 18:26:16 -04:00
|
|
|
it { is_expected.not_to validate_presence_of(:label) }
|
|
|
|
it { is_expected.not_to validate_presence_of(:position) }
|
2016-07-27 15:32:32 -04:00
|
|
|
end
|
|
|
|
end
|
2016-07-31 19:48:00 -04:00
|
|
|
|
|
|
|
describe '#destroy' do
|
2018-11-19 09:08:23 -05:00
|
|
|
it 'can be destroyed when list_type is set to label' do
|
2016-07-31 20:55:03 -04:00
|
|
|
subject = create(:list)
|
2016-07-31 19:48:00 -04:00
|
|
|
|
|
|
|
expect(subject.destroy).to be_truthy
|
|
|
|
end
|
|
|
|
|
2018-11-19 09:08:23 -05:00
|
|
|
it 'can not be destroyed when list_type is set to closed' do
|
2017-03-24 08:40:35 -04:00
|
|
|
subject = create(:closed_list)
|
2016-07-31 19:48:00 -04:00
|
|
|
|
|
|
|
expect(subject.destroy).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-16 10:31:21 -04:00
|
|
|
describe '#destroyable?' do
|
2017-01-27 00:23:07 -05:00
|
|
|
it 'returns true when list_type is set to label' do
|
2016-08-16 10:31:21 -04:00
|
|
|
subject.list_type = :label
|
|
|
|
|
|
|
|
expect(subject).to be_destroyable
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'returns false when list_type is set to closed' do
|
|
|
|
subject.list_type = :closed
|
2016-08-16 10:31:21 -04:00
|
|
|
|
|
|
|
expect(subject).not_to be_destroyable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-16 13:38:43 -04:00
|
|
|
describe '#movable?' do
|
2017-01-27 00:23:07 -05:00
|
|
|
it 'returns true when list_type is set to label' do
|
2016-08-16 13:38:43 -04:00
|
|
|
subject.list_type = :label
|
|
|
|
|
|
|
|
expect(subject).to be_movable
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'returns false when list_type is set to closed' do
|
|
|
|
subject.list_type = :closed
|
2016-08-16 13:38:43 -04:00
|
|
|
|
|
|
|
expect(subject).not_to be_movable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-31 19:45:56 -04:00
|
|
|
describe '#title' do
|
|
|
|
it 'returns label name when list_type is set to label' do
|
|
|
|
subject.list_type = :label
|
|
|
|
subject.label = Label.new(name: 'Development')
|
|
|
|
|
|
|
|
expect(subject.title).to eq 'Development'
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'returns Closed when list_type is set to closed' do
|
|
|
|
subject.list_type = :closed
|
2016-07-31 19:45:56 -04:00
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
expect(subject.title).to eq 'Closed'
|
2016-07-31 19:45:56 -04:00
|
|
|
end
|
|
|
|
end
|
2019-08-28 16:18:40 -04:00
|
|
|
|
|
|
|
describe '#update_preferences_for' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:list) { create(:list) }
|
|
|
|
|
|
|
|
context 'when user is present' do
|
|
|
|
context 'when there are no preferences for user' do
|
|
|
|
it 'creates new user preferences' do
|
|
|
|
expect { list.update_preferences_for(user, collapsed: true) }.to change { ListUserPreference.count }.by(1)
|
|
|
|
expect(list.preferences_for(user).collapsed).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there are preferences for user' do
|
|
|
|
it 'updates user preferences' do
|
|
|
|
list.update_preferences_for(user, collapsed: false)
|
|
|
|
|
|
|
|
expect { list.update_preferences_for(user, collapsed: true) }.not_to change { ListUserPreference.count }
|
|
|
|
expect(list.preferences_for(user).collapsed).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is nil' do
|
|
|
|
it 'does not create user preferences' do
|
|
|
|
expect { list.update_preferences_for(nil, collapsed: true) }.not_to change { ListUserPreference.count }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#preferences_for' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:list) { create(:list) }
|
|
|
|
|
|
|
|
context 'when user is nil' do
|
|
|
|
it 'returns not persisted preferences' do
|
|
|
|
preferences = list.preferences_for(nil)
|
|
|
|
|
|
|
|
expect(preferences.persisted?).to eq(false)
|
|
|
|
expect(preferences.list_id).to eq(list.id)
|
|
|
|
expect(preferences.user_id).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user preference already exists' do
|
|
|
|
before do
|
|
|
|
list.update_preferences_for(user, collapsed: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'loads preference for user' do
|
|
|
|
preferences = list.preferences_for(user)
|
|
|
|
|
|
|
|
expect(preferences).to be_persisted
|
|
|
|
expect(preferences.collapsed).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when preferences for user does not exist' do
|
|
|
|
it 'returns not persisted preferences' do
|
|
|
|
preferences = list.preferences_for(user)
|
|
|
|
|
|
|
|
expect(preferences.persisted?).to eq(false)
|
|
|
|
expect(preferences.user_id).to eq(user.id)
|
|
|
|
expect(preferences.list_id).to eq(list.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-07-27 15:32:32 -04:00
|
|
|
end
|