2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-14 01:07:51 +08:00
|
|
|
require "quote_comparer"
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe QuoteComparer do
|
2022-05-12 23:07:43 +08:00
|
|
|
describe "#missing?" do
|
|
|
|
fab!(:post) { Fabricate(:post, raw: "This has **text** we _are_ matching") }
|
|
|
|
|
|
|
|
it "returns true for missing topic and post" do
|
|
|
|
expect(QuoteComparer.new(nil, nil, "test")).to be_missing
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for missing topic" do
|
|
|
|
expect(QuoteComparer.new(nil, post.post_number, "test")).to be_missing
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for missing post" do
|
|
|
|
expect(QuoteComparer.new(post.topic_id, nil, "test")).to be_missing
|
|
|
|
end
|
|
|
|
|
2023-08-10 08:03:38 +08:00
|
|
|
it "returns false for only missing text" do
|
|
|
|
expect(QuoteComparer.new(post.topic_id, post.post_number, nil)).to_not be_missing
|
2022-05-12 23:07:43 +08:00
|
|
|
end
|
|
|
|
|
2023-08-10 08:03:38 +08:00
|
|
|
it "returns false for no missing topic and post" do
|
|
|
|
expect(QuoteComparer.new(post.topic_id, post.post_number, "test")).to_not be_missing
|
2022-05-12 23:07:43 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-14 01:07:51 +08:00
|
|
|
describe "#modified?" do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:post) { Fabricate(:post, raw: "This has **text** we _are_ matching") }
|
2018-03-14 01:07:51 +08:00
|
|
|
|
|
|
|
def qc(text)
|
|
|
|
QuoteComparer.new(post.topic_id, post.post_number, text)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for nil text" do
|
|
|
|
expect(qc(nil)).to be_modified
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for empty text" do
|
|
|
|
expect(qc("")).to be_modified
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for modified text" do
|
|
|
|
expect(qc("text is modified")).to be_modified
|
|
|
|
end
|
|
|
|
|
|
|
|
it "return false when the text matches exactly" do
|
|
|
|
expect(qc("This has text we are matching")).not_to be_modified
|
|
|
|
end
|
|
|
|
|
|
|
|
it "return false when there's a substring" do
|
|
|
|
expect(qc("text we are")).not_to be_modified
|
|
|
|
end
|
|
|
|
|
|
|
|
it "return false when there's extra space" do
|
|
|
|
expect(qc("\n\ntext we are \t")).not_to be_modified
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|