discourse/spec/models/stylesheet_cache_spec.rb

29 lines
751 B
Ruby

require 'rails_helper'
describe StylesheetCache do
describe "add" do
it "correctly cycles once MAX_TO_KEEP is hit" do
StylesheetCache.destroy_all
(StylesheetCache::MAX_TO_KEEP + 1).times do |i|
StylesheetCache.add("a", "d" + i.to_s, "c" + i.to_s, "map")
end
expect(StylesheetCache.count).to eq StylesheetCache::MAX_TO_KEEP
expect(StylesheetCache.order(:id).first.content).to eq "c1"
end
it "does nothing if digest is set and already exists" do
StylesheetCache.destroy_all
StylesheetCache.add("a", "b", "c", "map")
StylesheetCache.add("a", "b", "cc", "map")
expect(StylesheetCache.count).to eq 1
expect(StylesheetCache.first.content).to eq "c"
end
end
end