mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
24f3fbcd8f
See historical overview in README
68 lines
2.5 KiB
Ruby
68 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "securerandom"
|
|
require "spec_helper"
|
|
|
|
module PaperTrail
|
|
::RSpec.describe Config do
|
|
describe ".instance" do
|
|
it "returns the singleton instance" do
|
|
expect { described_class.instance }.not_to raise_error
|
|
end
|
|
end
|
|
|
|
describe ".new" do
|
|
it "raises NoMethodError" do
|
|
expect { described_class.new }.to raise_error(NoMethodError)
|
|
end
|
|
end
|
|
|
|
describe ".version_limit", versioning: true do
|
|
after { PaperTrail.config.version_limit = nil }
|
|
|
|
it "limits the number of versions to 3 (2 plus the created at event)" do
|
|
PaperTrail.config.version_limit = 2
|
|
widget = Widget.create!(name: "Henry")
|
|
6.times { widget.update_attribute(:name, SecureRandom.hex(8)) }
|
|
expect(widget.versions.first.event).to(eq("create"))
|
|
expect(widget.versions.size).to(eq(3))
|
|
end
|
|
|
|
it "overrides the general limits to 4 (3 plus the created at event)" do
|
|
PaperTrail.config.version_limit = 100
|
|
bike = LimitedBicycle.create!(name: "Limited Bike") # has_paper_trail limit: 3
|
|
10.times { bike.update_attribute(:name, SecureRandom.hex(8)) }
|
|
expect(bike.versions.first.event).to(eq("create"))
|
|
expect(bike.versions.size).to(eq(4))
|
|
end
|
|
|
|
it "overrides the general limits with unlimited versions for model" do
|
|
PaperTrail.config.version_limit = 3
|
|
bike = UnlimitedBicycle.create!(name: "Unlimited Bike") # has_paper_trail limit: nil
|
|
6.times { bike.update_attribute(:name, SecureRandom.hex(8)) }
|
|
expect(bike.versions.first.event).to(eq("create"))
|
|
expect(bike.versions.size).to eq(7)
|
|
end
|
|
|
|
it "is not enabled on non-papertrail STI base classes, but enabled on subclasses" do
|
|
PaperTrail.config.version_limit = 10
|
|
Vehicle.create!(name: "A Vehicle", type: "Vehicle")
|
|
limited_bike = LimitedBicycle.create!(name: "Limited")
|
|
limited_bike.name = "A new name"
|
|
limited_bike.save
|
|
assert_equal 2, limited_bike.versions.length
|
|
end
|
|
|
|
context "when item_subtype column is absent" do
|
|
it "uses global version_limit" do
|
|
PaperTrail.config.version_limit = 6
|
|
names = PaperTrail::Version.column_names - ["item_subtype"]
|
|
allow(PaperTrail::Version).to receive(:column_names).and_return(names)
|
|
bike = LimitedBicycle.create!(name: "My Bike") # has_paper_trail limit: 3
|
|
10.times { bike.update(name: SecureRandom.hex(8)) }
|
|
assert_equal 7, bike.versions.length
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|