pulsar/spec/atom/editor-spec.coffee

277 lines
11 KiB
CoffeeScript
Raw Normal View History

2012-01-05 23:13:55 +04:00
Buffer = require 'buffer'
Editor = require 'editor'
$ = require 'jquery'
2012-01-24 04:45:00 +04:00
_ = require 'underscore'
fs = require 'fs'
describe "Editor", ->
2012-01-17 05:17:36 +04:00
buffer = null
editor = null
beforeEach ->
2012-01-17 05:17:36 +04:00
buffer = new Buffer(require.resolve('fixtures/sample.js'))
editor = Editor.build()
editor.enableKeymap()
editor.setBuffer(buffer)
2012-01-17 05:17:36 +04:00
describe ".setBuffer", ->
it "creates a pre element for each line in the buffer, with the html-escaped text of the line", ->
2012-01-17 05:17:36 +04:00
expect(editor.lines.find('pre').length).toEqual(buffer.numLines())
expect(buffer.getLine(2)).toContain('<')
expect(editor.lines.find('pre:eq(2)').html()).toContain '&lt;'
it "renders a non-breaking space for empty lines", ->
expect(buffer.getLine(10)).toBe ''
expect(editor.lines.find('pre:eq(10)').html()).toBe '&nbsp;'
2012-01-17 05:17:36 +04:00
it "sets the cursor to the beginning of the file", ->
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 0, column: 0)
describe "cursor movement", ->
2012-01-27 01:46:12 +04:00
describe ".setCursorPosition({row, column})", ->
2012-01-26 00:20:58 +04:00
it "moves the cursor to cover the character at the given row and column", ->
2012-01-25 02:21:43 +04:00
editor.attachToDom()
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 2, column: 2)
expect(editor.getCursor().position().top).toBe(2 * editor.lineHeight)
expect(editor.getCursor().position().left).toBe(2 * editor.charWidth)
2012-01-25 02:21:43 +04:00
describe "when the arrow keys are pressed", ->
2012-01-26 00:20:58 +04:00
it "moves the cursor by a single row/column", ->
2012-01-25 02:21:43 +04:00
editor.trigger keydownEvent('right')
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 0, column: 1)
2012-01-25 02:21:43 +04:00
editor.trigger keydownEvent('down')
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 1, column: 1)
2012-01-25 02:21:43 +04:00
editor.trigger keydownEvent('left')
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 1, column: 0)
2012-01-25 02:21:43 +04:00
editor.trigger keydownEvent('up')
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 0, column: 0)
describe "vertical movement", ->
2012-01-25 02:21:43 +04:00
describe "auto-scrolling", ->
beforeEach ->
editor.attachToDom()
editor.focus()
editor.scrollMargin = 3
2012-01-24 04:45:00 +04:00
it "scrolls the buffer with the specified scroll margin when cursor approaches the end of the screen", ->
editor.height(editor.lineHeight * 10)
2012-01-24 04:45:00 +04:00
2012-01-27 01:46:12 +04:00
_.times 6, -> editor.moveCursorDown()
expect(editor.scrollTop()).toBe(0)
2012-01-24 04:45:00 +04:00
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.scrollTop()).toBe(editor.lineHeight)
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.scrollTop()).toBe(editor.lineHeight * 2)
2012-01-27 01:46:12 +04:00
_.times 3, -> editor.moveCursorUp()
expect(editor.scrollTop()).toBe(editor.lineHeight * 2)
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.scrollTop()).toBe(editor.lineHeight)
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.scrollTop()).toBe(0)
2012-01-24 04:45:00 +04:00
2012-01-25 02:21:43 +04:00
it "reduces scroll margins when there isn't enough height to maintain them and scroll smoothly", ->
editor.height(editor.lineHeight * 5)
2012-01-24 04:45:00 +04:00
2012-01-27 01:46:12 +04:00
_.times 3, -> editor.moveCursorDown()
expect(editor.scrollTop()).toBe(editor.lineHeight)
2012-01-24 04:45:00 +04:00
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.scrollTop()).toBe(0)
2012-01-24 04:45:00 +04:00
2012-01-26 00:20:58 +04:00
describe "goal column retention", ->
lineLengths = null
beforeEach ->
lineLengths = buffer.getLines().map (line) -> line.length
expect(lineLengths[3]).toBeGreaterThan(lineLengths[4])
expect(lineLengths[5]).toBeGreaterThan(lineLengths[4])
expect(lineLengths[6]).toBeGreaterThan(lineLengths[3])
2012-01-26 00:20:58 +04:00
it "retains the goal column when moving up", ->
expect(lineLengths[6]).toBeGreaterThan(32)
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 6, column: 32)
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.getCursorPosition().column).toBe lineLengths[5]
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.getCursorPosition().column).toBe lineLengths[4]
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.getCursorPosition().column).toBe 32
2012-01-26 00:20:58 +04:00
it "retains the goal column when moving down", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 3, column: lineLengths[3])
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.getCursorPosition().column).toBe lineLengths[4]
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.getCursorPosition().column).toBe lineLengths[5]
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.getCursorPosition().column).toBe lineLengths[3]
2012-01-26 00:20:58 +04:00
it "clears the goal column when the cursor is set", ->
# set a goal column by moving down
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 3, column: lineLengths[3])
editor.moveCursorDown()
expect(editor.getCursorPosition().column).not.toBe 6
2012-01-26 00:20:58 +04:00
# clear the goal column by explicitly setting the cursor position
2012-01-27 01:46:12 +04:00
editor.setCursorColumn(6)
expect(editor.getCursorPosition().column).toBe 6
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.getCursorPosition().column).toBe 6
2012-01-25 02:21:43 +04:00
describe "when up is pressed on the first line", ->
2012-01-26 00:20:58 +04:00
it "moves the cursor to the beginning of the line, but retains the goal column", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 0, column: 4)
editor.moveCursorUp()
expect(editor.getCursorPosition()).toEqual(row: 0, column: 0)
2012-01-27 01:46:12 +04:00
editor.moveCursorDown()
expect(editor.getCursorPosition()).toEqual(row: 1, column: 4)
2012-01-25 02:21:43 +04:00
describe "when down is pressed on the last line", ->
2012-01-26 00:20:58 +04:00
it "moves the cursor to the end of line, but retains the goal column", ->
lastLineIndex = buffer.getLines().length - 1
lastLine = buffer.getLine(lastLineIndex)
expect(lastLine.length).toBeGreaterThan(0)
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: lastLineIndex, column: 1)
editor.moveCursorDown()
expect(editor.getCursorPosition()).toEqual(row: lastLineIndex, column: lastLine.length)
2012-01-27 01:46:12 +04:00
editor.moveCursorUp()
expect(editor.getCursorPosition().column).toBe 1
2012-01-26 00:20:58 +04:00
it "retains a goal column of 0", ->
2012-01-25 02:21:43 +04:00
lastLineIndex = buffer.getLines().length - 1
lastLine = buffer.getLine(lastLineIndex)
expect(lastLine.length).toBeGreaterThan(0)
2012-01-17 07:23:27 +04:00
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: lastLineIndex, column: 0)
editor.moveCursorDown()
editor.moveCursorUp()
expect(editor.getCursorPosition().column).toBe 0
2012-01-17 07:23:27 +04:00
2012-01-25 02:21:43 +04:00
describe "horizontal movement", ->
2012-01-26 00:20:58 +04:00
describe "when left is pressed on the first column", ->
2012-01-25 02:21:43 +04:00
describe "when there is a previous line", ->
it "wraps to the end of the previous line", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: 0)
editor.moveCursorLeft()
expect(editor.getCursorPosition()).toEqual(row: 0, column: buffer.getLine(0).length)
2012-01-25 02:21:43 +04:00
describe "when the cursor is on the first line", ->
it "remains in the same position (0,0)", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 0, column: 0)
editor.moveCursorLeft()
expect(editor.getCursorPosition()).toEqual(row: 0, column: 0)
2012-01-25 02:21:43 +04:00
2012-01-26 00:20:58 +04:00
describe "when right is pressed on the last column", ->
2012-01-25 02:21:43 +04:00
describe "when there is a subsequent line", ->
it "wraps to the beginning of the next line", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 0, column: buffer.getLine(0).length)
editor.moveCursorRight()
expect(editor.getCursorPosition()).toEqual(row: 1, column: 0)
2012-01-25 02:21:43 +04:00
describe "when the cursor is on the last line", ->
it "remains in the same position", ->
lastLineIndex = buffer.getLines().length - 1
lastLine = buffer.getLine(lastLineIndex)
expect(lastLine.length).toBeGreaterThan(0)
2012-01-26 22:16:43 +04:00
lastPosition = { row: lastLineIndex, column: lastLine.length }
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(lastPosition)
editor.moveCursorRight()
2012-01-25 02:21:43 +04:00
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(lastPosition)
describe "when the editor is attached to the dom", ->
it "updates the pixel position of the cursor", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 2, column: 2)
editor.attachToDom()
expect(editor.getCursor().position().top).toBe(2 * editor.lineHeight)
expect(editor.getCursor().position().left).toBe(2 * editor.charWidth)
2012-01-25 05:26:38 +04:00
it "is focused", ->
editor.attachToDom()
expect(editor).toMatchSelector ":has(:focus)"
describe "when the editor is focused", ->
it "focuses the hidden input", ->
editor.attachToDom()
editor.focus()
expect(editor).not.toMatchSelector ':focus'
expect(editor.hiddenInput).toMatchSelector ':focus'
2012-01-26 02:33:47 +04:00
describe "when text input events are triggered on the hidden input element", ->
it "inserts the typed character at the cursor position, both in the buffer and the pre element", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: 6)
expect(editor.getCurrentLine().charAt(6)).not.toBe 'q'
editor.hiddenInput.textInput 'q'
expect(editor.getCurrentLine().charAt(6)).toBe 'q'
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 1, column: 7)
2012-01-26 22:47:22 +04:00
expect(editor.lines.find('pre:eq(1)')).toHaveText editor.getCurrentLine()
2012-01-26 02:33:47 +04:00
describe "when return is pressed", ->
describe "when the cursor is at the beginning of a line", ->
it "inserts an empty line before it", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: 0)
editor.trigger keydownEvent('enter')
expect(editor.lines.find('pre:eq(1)')).toHaveHtml '&nbsp;'
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 2, column: 0)
describe "when the cursor is in the middle of a line", ->
it "splits the current line to form a new line", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: 6)
originalLine = editor.lines.find('pre:eq(1)').text()
lineBelowOriginalLine = editor.lines.find('pre:eq(2)').text()
editor.trigger keydownEvent('enter')
expect(editor.lines.find('pre:eq(1)')).toHaveText originalLine[0...6]
expect(editor.lines.find('pre:eq(2)')).toHaveText originalLine[6..]
expect(editor.lines.find('pre:eq(3)')).toHaveText lineBelowOriginalLine
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 2, column: 0)
describe "when the cursor is on the end of a line", ->
it "inserts an empty line after it", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: buffer.getLine(1).length)
editor.trigger keydownEvent('enter')
expect(editor.lines.find('pre:eq(2)')).toHaveHtml '&nbsp;'
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual(row: 2, column: 0)
2012-01-26 04:07:04 +04:00
describe "when backspace is pressed", ->
describe "when the cursor is on the middle of the line", ->
it "removes the character before the cursor", ->
2012-01-27 01:46:12 +04:00
editor.setCursorPosition(row: 1, column: 7)
2012-01-26 04:07:04 +04:00
spyOn(buffer, 'backspace').andCallThrough()
editor.trigger keydownEvent('backspace')
2012-01-26 22:16:43 +04:00
expect(buffer.backspace).toHaveBeenCalledWith(row: 1, column: 7)
2012-01-26 04:07:04 +04:00
expect(editor.lines.find('pre:eq(1)')).toHaveText buffer.getLine(1)
2012-01-27 01:46:12 +04:00
expect(editor.getCursorPosition()).toEqual {row: 1, column: 6}
2012-01-26 04:07:04 +04:00