Collections: Add missing validations for boolean columns (#37005)

This commit is contained in:
David Roetzel
2025-11-25 15:46:50 +01:00
committed by GitHub
parent 09697045a9
commit 0725afe1a9
2 changed files with 9 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ class Collection < ApplicationRecord
validates :name, presence: true
validates :description, presence: true
validates :local, inclusion: [true, false]
validates :sensitive, inclusion: [true, false]
validates :discoverable, inclusion: [true, false]
validates :uri, presence: true, if: :remote?
validates :original_number_of_items,
presence: true,

View File

@@ -10,6 +10,12 @@ RSpec.describe Collection do
it { is_expected.to validate_presence_of(:description) }
it { is_expected.to_not allow_value(nil).for(:local) }
it { is_expected.to_not allow_value(nil).for(:sensitive) }
it { is_expected.to_not allow_value(nil).for(:discoverable) }
context 'when collection is remote' do
subject { Fabricate.build :collection, local: false }