paper-trail-gem--paper_trail/spec/models/version_spec.rb

89 lines
3.2 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe PaperTrail::Version do
it "should include the `VersionConcern` module to get base functionality" do
PaperTrail::Version.should include(PaperTrail::VersionConcern)
2013-10-22 17:12:08 +00:00
end
describe "Attributes" do
it { should have_db_column(:item_type).of_type(:string) }
it { should have_db_column(:item_id).of_type(:integer) }
it { should have_db_column(:event).of_type(:string) }
it { should have_db_column(:whodunnit).of_type(:string) }
it { should have_db_column(:object).of_type(:text) }
it { should have_db_column(:created_at).of_type(:datetime) }
end
describe "Indexes" do
it { should have_db_index([:item_type, :item_id]) }
end
describe "Methods" do
describe "Instance" do
subject { PaperTrail::Version.new(attributes) rescue PaperTrail::Version.new }
describe :terminator do
it { should respond_to(:terminator) }
let(:attributes) { {:whodunnit => Faker::Name.first_name} }
it "is an alias for the `whodunnit` attribute" do
subject.whodunnit.should == attributes[:whodunnit]
end
end
describe :version_author do
2013-11-12 23:06:56 +00:00
it { should respond_to(:version_author) }
it "should be an alias for the `terminator` method" do
subject.method(:version_author).should == subject.method(:terminator)
end
end
end
describe "Class" do
describe :where_object do
it { PaperTrail::Version.should respond_to(:where_object) }
context "invalid arguments" do
it "should raise an error" do
expect { PaperTrail::Version.where_object(:foo) }.to raise_error(ArgumentError)
expect { PaperTrail::Version.where_object([]) }.to raise_error(ArgumentError)
end
end
context "valid arguments", :versioning => true do
let(:widget) { Widget.new }
let(:name) { Faker::Name.first_name }
let(:int) { rand(10) + 1 }
before do
widget.update_attributes!(:name => name, :an_integer => int)
widget.update_attributes!(:name => 'foobar', :an_integer => 100)
widget.update_attributes!(:name => Faker::Name.last_name, :an_integer => 15)
end
context "`serializer == YAML`" do
specify { PaperTrail.serializer == PaperTrail::Serializers::YAML }
it "should be able to locate versions according to their `object` contents" do
PaperTrail::Version.where_object(:name => name).should == [widget.versions[1]]
PaperTrail::Version.where_object(:an_integer => 100).should == [widget.versions[2]]
end
end
context "`serializer == JSON`" do
before { PaperTrail.serializer = PaperTrail::Serializers::JSON }
specify { PaperTrail.serializer == PaperTrail::Serializers::JSON }
it "should be able to locate versions according to their `object` contents" do
PaperTrail::Version.where_object(:name => name).should == [widget.versions[1]]
PaperTrail::Version.where_object(:an_integer => 100).should == [widget.versions[2]]
end
end
end
end
end
end
end