discourse/spec/components/onpdiff_spec.rb

43 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
2013-12-16 12:39:49 -05:00
require 'onpdiff'
describe ONPDiff do
describe "diff" do
it "returns an empty array when there is no content to diff" do
2015-01-09 11:34:37 -05:00
expect(ONPDiff.new("", "").diff).to eq([])
2013-12-16 12:39:49 -05:00
end
it "returns an array with the operation code for each element" do
2015-01-09 11:34:37 -05:00
expect(ONPDiff.new("abcd", "abef").diff).to eq([["a", :common], ["b", :common], ["e", :add], ["f", :add], ["c", :delete], ["d", :delete]])
2013-12-16 12:39:49 -05:00
end
it "bails out on large diffs" do
a = SecureRandom.alphanumeric(5_000)
b = SecureRandom.alphanumeric(5_000)
expect(ONPDiff.new(a, b).diff).to eq([])
end
2013-12-16 12:39:49 -05:00
end
describe "short_diff" do
it "returns an empty array when there is no content to diff" do
2015-01-09 11:34:37 -05:00
expect(ONPDiff.new("", "").short_diff).to eq([])
2013-12-16 12:39:49 -05:00
end
it "returns an array with the operation code for each element" do
2015-01-09 11:34:37 -05:00
expect(ONPDiff.new("abc", "acd").short_diff).to eq([["a", :common], ["b", :delete], ["c", :common], ["d", :add]])
2013-12-16 12:39:49 -05:00
end
it "returns an array with sequencially similar operations merged" do
2015-01-09 11:34:37 -05:00
expect(ONPDiff.new("abcd", "abef").short_diff).to eq([["ab", :common], ["ef", :add], ["cd", :delete]])
2013-12-16 12:39:49 -05:00
end
end
end