2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
require "content_buffer"
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe ContentBuffer do
|
2013-02-26 00:42:20 +08:00
|
|
|
it "handles deletion across lines properly" do
|
2013-02-06 03:16:51 +08:00
|
|
|
c = ContentBuffer.new("a\nbc\nc")
|
|
|
|
c.apply_transform!(start: { row: 0, col: 0 }, finish: { col: 1, row: 1 }, operation: :delete)
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(c.to_s).to eq("c\nc")
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
it "handles deletion inside lines properly" do
|
2013-02-06 03:16:51 +08:00
|
|
|
c = ContentBuffer.new("hello world")
|
|
|
|
c.apply_transform!(start: { row: 0, col: 1 }, finish: { col: 4, row: 0 }, operation: :delete)
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(c.to_s).to eq("ho world")
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
|
|
|
|
it "handles inserts inside lines properly" do
|
2013-02-06 03:16:51 +08:00
|
|
|
c = ContentBuffer.new("hello!")
|
|
|
|
c.apply_transform!(start: { row: 0, col: 5 }, operation: :insert, text: " world")
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(c.to_s).to eq("hello world!")
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
it "handles multiline inserts" do
|
2013-02-06 03:16:51 +08:00
|
|
|
c = ContentBuffer.new("hello!")
|
|
|
|
c.apply_transform!(start: { row: 0, col: 5 }, operation: :insert, text: "\nworld")
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(c.to_s).to eq("hello\nworld!")
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|