I was working on another branch and as part of my commit, Rubocop
removed a validation (but not the spec that asserted the validation).
Below is the "non-updating" rubocop offense on the other branch.
```shell
❯ rubocop ./app/models/notification_subscription.rb
Inspecting 1 file
C
Offenses:
app/models/notification_subscription.rb:13:29: C: [Correctable]
Rails/RedundantPresenceValidationOnBelongsTo: Remove explicit presence
validation for notifiable_id.
validates :notifiable_id, presence: true
^^^^^^^^^^^^^^
1 file inspected, 1 offense detected, 1 offense auto-correctable
```
To remediate, I ran:
```shell
> rubocop --only "Rails/RedundantPresenceValidationOnBelongsTo" \
--auto-correct
```
This resolved the `app/models`. Then did some regex magic and removed
the assertions from `spec/models`.
For Forem folks, I wrote a [forem.team post][1] discuss if this is how
we want to proceed.
[1]:https://forem.team/jeremy/rubocop-auto-updating-mayhem-33a6
56 lines
1.9 KiB
Ruby
56 lines
1.9 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Collection, type: :model do
|
|
let(:user) { create(:user) }
|
|
let(:collection) { create(:collection, :with_articles, user: user) }
|
|
|
|
describe "validations" do
|
|
it { is_expected.to belong_to(:user) }
|
|
it { is_expected.to belong_to(:organization).optional }
|
|
it { is_expected.to have_many(:articles).dependent(:nullify) }
|
|
|
|
it { is_expected.to validate_presence_of(:slug) }
|
|
it { is_expected.to validate_uniqueness_of(:slug).scoped_to(:user_id) }
|
|
end
|
|
|
|
describe ".find_series" do
|
|
let!(:other_user) { create(:user) }
|
|
let!(:series) { collection }
|
|
|
|
it "returns an existing series" do
|
|
expect do
|
|
expect(described_class.find_series(series.slug, series.user)).to eq(series)
|
|
end.not_to change(described_class, :count)
|
|
end
|
|
|
|
it "creates a new series for a user if an existing one is not found" do
|
|
slug = Faker::Books::CultureSeries.book
|
|
expect { described_class.find_series(slug, other_user) }.to change(described_class, :count).by(1)
|
|
end
|
|
|
|
it "creates a new series with an existing slug for a new user" do
|
|
expect { described_class.find_series(series.slug, other_user) }.to change(described_class, :count).by(1)
|
|
end
|
|
end
|
|
|
|
describe "path" do
|
|
it "returns the correct path" do
|
|
expect(collection.path).to eq("/#{collection.user.username}/series/#{collection.id}")
|
|
end
|
|
end
|
|
|
|
context "when callbacks are triggered after touch" do
|
|
it "touches all articles in the collection" do
|
|
before_times = collection.articles.order(updated_at: :desc).pluck(:updated_at).map(&:to_i)
|
|
|
|
Timecop.freeze(1.month.from_now) do
|
|
collection.touch
|
|
end
|
|
|
|
after_times = collection.reload.articles.order(updated_at: :desc).pluck(:updated_at).map(&:to_i)
|
|
|
|
all_before = after_times.each_with_index.map { |v, i| v > before_times[i] }
|
|
expect(all_before.all?).to be(true)
|
|
end
|
|
end
|
|
end
|