Serialize TextBuffer inside EditSession serialize

This commit is contained in:
Mutwin Kraus
2013-03-26 14:46:45 +01:00
committed by Nathan Sobo
parent 693d8258ad
commit cc87595e4e
5 changed files with 69 additions and 19 deletions

View File

@@ -2060,7 +2060,9 @@ describe "EditSession", ->
editSession.buffer.reload()
expect(editSession.getCursorScreenPosition()).toEqual [0,1]
it "preserves the current state if the file was not saved yet", ->
editSession = project.buildEditSessionFromState('test', autoIndent: false)
editSession.destroy()
editSession = project.buildEditSession(null, autoIndent: false)
editSession.buffer.setText('test')
editSession = EditSession.deserialize(editSession.serialize())
expect(editSession.buffer.getText()).toBe('test')

View File

@@ -1229,3 +1229,48 @@ describe 'Buffer', ->
expect(buffer.clipPosition([1, 0])).toEqual [0,9]
expect(buffer.clipPosition([0,10])).toEqual [0,9]
expect(buffer.clipPosition([10,Infinity])).toEqual [0,9]
describe "when the buffer is serialized", ->
describe "when the contents of the buffer are saved on disk", ->
it "stores the file path", ->
data = buffer.serialize()
expect(data.path).toBe(buffer.getPath())
expect(data.text).toBeFalsy()
describe "when the buffer has unsaved changes", ->
it "stores the file path and the changed buffer text", ->
buffer.setText("abc")
data = buffer.serialize()
expect(data.path).toBe(buffer.getPath())
expect(data.text).toBe("abc")
describe "when the buffer has never been saved", ->
it "stores the changed buffer text", ->
buffer.release()
buffer = new Buffer()
buffer.setText("abc")
data = buffer.serialize()
expect(data.path).toBeFalsy()
expect(data.text).toBe("abc")
describe "when a buffer is deserialized", ->
reloadBuffer = () ->
serialized = buffer.serialize()
buffer.release()
buffer = Buffer.deserialize(serialized)
it "loads the contents of the file saved on disk when there are no unsaved changes", ->
path = buffer.getPath()
reloadBuffer()
expect(buffer.getPath()).toBe(path)
it "loads the stored changes if the file was modified", ->
path = buffer.getPath()
buffer.setText("abc")
reloadBuffer()
expect(buffer.getPath()).toBe(path)
expect(buffer.getText()).toBe("abc")
it "loads the stored changes if the file was never saved", ->
buffer.release()
buffer = new Buffer()
buffer.setText("abc")
reloadBuffer()
expect(buffer.getPath()).toBeFalsy()
expect(buffer.getText()).toBe("abc")