88 lines
2.6 KiB
Ruby
88 lines
2.6 KiB
Ruby
require 'test_helper'
|
|
|
|
class PostVersionTest < ActiveSupport::TestCase
|
|
context "A post" do
|
|
setup do
|
|
travel_to(1.month.ago) do
|
|
@user = FactoryBot.create(:user)
|
|
end
|
|
CurrentUser.user = @user
|
|
CurrentUser.ip_addr = "127.0.0.1"
|
|
end
|
|
|
|
teardown do
|
|
CurrentUser.user = nil
|
|
CurrentUser.ip_addr = nil
|
|
end
|
|
|
|
context "that has multiple versions: " do
|
|
setup do
|
|
PostVersion.sqs_service.stubs(:merge?).returns(false)
|
|
@post = FactoryBot.create(:post, :tag_string => "1")
|
|
@post.update(tag_string: "1 2")
|
|
@post.update(tag_string: "2 3")
|
|
end
|
|
|
|
context "a version record" do
|
|
setup do
|
|
@version = PostVersion.last
|
|
end
|
|
|
|
should "know its previous version" do
|
|
assert_not_nil(@version.previous)
|
|
assert_equal("1 2", @version.previous.tags)
|
|
end
|
|
end
|
|
end
|
|
|
|
context "that has been created" do
|
|
setup do
|
|
@parent = FactoryBot.create(:post)
|
|
@post = FactoryBot.create(:post, :tag_string => "aaa bbb ccc", :rating => "e", :parent => @parent, :source => "xyz")
|
|
end
|
|
|
|
should "also create a version" do
|
|
assert_equal(1, @post.versions.size)
|
|
@version = @post.versions.last
|
|
assert_equal("aaa bbb ccc", @version.tags)
|
|
assert_equal(@post.rating, @version.rating)
|
|
assert_equal(@post.parent_id, @version.parent_id)
|
|
assert_equal(@post.source, @version.source)
|
|
end
|
|
end
|
|
|
|
context "that should be merged" do
|
|
setup do
|
|
@parent = FactoryBot.create(:post)
|
|
@post = FactoryBot.create(:post, :tag_string => "aaa bbb ccc", :rating => "q", :source => "xyz")
|
|
end
|
|
|
|
should "delete the previous version" do
|
|
assert_equal(1, @post.versions.count)
|
|
@post.update(tag_string: "bbb ccc xxx", source: "")
|
|
@post.reload
|
|
assert_equal(1, @post.versions.count)
|
|
end
|
|
end
|
|
|
|
context "that has been updated" do
|
|
setup do
|
|
PostVersion.sqs_service.stubs(:merge?).returns(false)
|
|
travel_to(1.minute.ago) do
|
|
@post = FactoryBot.create(:post, :tag_string => "aaa bbb ccc", :rating => "q", :source => "xyz")
|
|
end
|
|
@post.update(tag_string: "bbb ccc xxx", source: "")
|
|
end
|
|
|
|
should "also create a version" do
|
|
assert_equal(2, @post.versions.size)
|
|
@version = @post.versions.last
|
|
assert_equal("bbb ccc xxx", @version.tags)
|
|
assert_equal("q", @version.rating)
|
|
assert_equal("", @version.source)
|
|
assert_nil(@version.parent_id)
|
|
end
|
|
end
|
|
end
|
|
end
|