discourse/spec/components/content_buffer_spec.rb

32 lines
993 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
2013-02-05 14:16:51 -05:00
require 'content_buffer'
describe ContentBuffer do
2013-02-25 11:42:20 -05:00
it "handles deletion across lines properly" do
2013-02-05 14:16:51 -05:00
c = ContentBuffer.new("a\nbc\nc")
2017-07-27 21:20:09 -04:00
c.apply_transform!(start: { row: 0, col: 0 }, finish: { col: 1, row: 1 }, operation: :delete)
2015-01-09 11:34:37 -05:00
expect(c.to_s).to eq("c\nc")
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "handles deletion inside lines properly" do
2013-02-05 14:16:51 -05:00
c = ContentBuffer.new("hello world")
2017-07-27 21:20:09 -04:00
c.apply_transform!(start: { row: 0, col: 1 }, finish: { col: 4, row: 0 }, operation: :delete)
2015-01-09 11:34:37 -05:00
expect(c.to_s).to eq("ho world")
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "handles inserts inside lines properly" do
2013-02-05 14:16:51 -05:00
c = ContentBuffer.new("hello!")
2017-07-27 21:20:09 -04:00
c.apply_transform!(start: { row: 0, col: 5 }, operation: :insert, text: " world")
2015-01-09 11:34:37 -05:00
expect(c.to_s).to eq("hello world!")
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "handles multiline inserts" do
2013-02-05 14:16:51 -05:00
c = ContentBuffer.new("hello!")
2017-07-27 21:20:09 -04:00
c.apply_transform!(start: { row: 0, col: 5 }, operation: :insert, text: "\nworld")
2015-01-09 11:34:37 -05:00
expect(c.to_s).to eq("hello\nworld!")
2013-02-05 14:16:51 -05:00
end
end