mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 17:33:37 +08:00
47 lines
1.0 KiB
Ruby
47 lines
1.0 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe "TopicThumbnail" do
|
||
|
let(:upload1) { Fabricate(:image_upload, width: 5000, height: 5000) }
|
||
|
let(:topic) { Fabricate(:topic, image_upload: upload1) }
|
||
|
|
||
|
before do
|
||
|
SiteSetting.create_thumbnails = true
|
||
|
topic.generate_thumbnails!
|
||
|
|
||
|
TopicThumbnail.ensure_consistency!
|
||
|
topic.reload
|
||
|
|
||
|
expect(topic.topic_thumbnails.length).to eq(1)
|
||
|
end
|
||
|
|
||
|
it "cleans up deleted uploads" do
|
||
|
upload1.delete
|
||
|
|
||
|
TopicThumbnail.ensure_consistency!
|
||
|
topic.reload
|
||
|
|
||
|
expect(topic.topic_thumbnails.length).to eq(0)
|
||
|
end
|
||
|
|
||
|
it "cleans up deleted optimized images" do
|
||
|
upload1.optimized_images.reload.delete_all
|
||
|
|
||
|
TopicThumbnail.ensure_consistency!
|
||
|
topic.reload
|
||
|
|
||
|
expect(topic.topic_thumbnails.length).to eq(0)
|
||
|
end
|
||
|
|
||
|
it "cleans up unneeded sizes" do
|
||
|
expect(topic.topic_thumbnails.length).to eq(1)
|
||
|
topic.topic_thumbnails[0].update_column(:max_width, 999999)
|
||
|
|
||
|
TopicThumbnail.ensure_consistency!
|
||
|
topic.reload
|
||
|
|
||
|
expect(topic.topic_thumbnails.length).to eq(0)
|
||
|
end
|
||
|
|
||
|
end
|