1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/NvimView/Tests/NvimViewTests/UGridTest.swift
solawing 65ff615dba feat: draw insert marked text without accutally into vim
this commit fixes following issues:

1. use `-`, `=`, `arrow key` to select candidate. which shouldn't be
   handle by vim
2. use `left`, `right` to move in marked text by word. which shouldn't
   be handle by vim directly
3. though inserting marked text directly into UGrid cells, bypass vim
   key mapping system, only the finall insertText be inserted into vim.
   so vim map like jk to esc won't affect input method.
   and when input i in normal mode when input method, I can press <CR>
   to confirm it and only i will send to vim.

 this is also the behaviour of mac terminal.
2021-10-31 17:27:30 +08:00

237 lines
7.0 KiB
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
import Nimble
import XCTest
@testable import NvimView
class UGridTest: XCTestCase {
private let ugrid = UGrid()
func testFlatCharIndex() {
self.ugrid.resize(Size(width: 10, height: 3))
self.ugrid.update(
row: 0,
startCol: 0, endCol: 10,
clearCol: 0, clearAttr: 0,
chunk: ["0", "", "", "3", "4", "", "", "7", "8", "9"],
attrIds: Array(repeating: 0, count: 10)
)
self.ugrid.recomputeFlatIndices(rowStart: 0, rowEndInclusive: 2)
expect(self.ugrid.cells.reduce(into: []) { result, row in
result.append(contentsOf: row.reduce(into: []) { rowResult, cell in
rowResult.append(cell.flatCharIndex)
})
}).to(equal(
[
0, 1, 1, 2, 3, 4, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
]
))
self.ugrid.update(
row: 1,
startCol: 5, endCol: 7,
clearCol: 0, clearAttr: 0,
chunk: ["", ""],
attrIds: Array(repeating: 0, count: 2)
)
self.ugrid.recomputeFlatIndices(rowStart: 0, rowEndInclusive: 2)
expect(self.ugrid.cells.reduce(into: []) { result, row in
result.append(contentsOf: row.reduce(into: []) { rowResult, cell in
rowResult.append(cell.flatCharIndex)
})
}).to(equal(
[
0, 1, 1, 2, 3, 4, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
]
))
self.ugrid.update(
row: 2,
startCol: 8, endCol: 10,
clearCol: 0, clearAttr: 0,
chunk: ["", ""],
attrIds: Array(repeating: 0, count: 2)
)
self.ugrid.recomputeFlatIndices(rowStart: 0, rowEndInclusive: 2)
expect(self.ugrid.cells.reduce(into: []) { result, row in
result.append(contentsOf: row.reduce(into: []) { rowResult, cell in
rowResult.append(cell.flatCharIndex)
})
}).to(equal(
[
0, 1, 1, 2, 3, 4, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 25,
]
))
}
func testUnmarkPosition() {
self.ugrid.resize(Size(width: 20, height: 10))
self.ugrid.update(
row: 9,
startCol: 0,
endCol: 9,
clearCol: 0,
clearAttr: 0,
chunk: Array("0123456789".compactMap { String($0) }),
attrIds: [
0, -1, 2, 3, 4, 5, 6, 7, 8,
CellAttributesCollection.reversedDefaultAttributesId,
]
)
self.ugrid.unmarkCell(at: Position(row: 9, column: 0))
expect(self.ugrid.cells[9][0].attrId).to(equal(0))
self.ugrid.unmarkCell(at: Position(row: 9, column: 1))
expect(self.ugrid.cells[9][1].attrId).to(equal(1))
self.ugrid.unmarkCell(at: Position(row: 9, column: 2))
expect(self.ugrid.cells[9][2].attrId).to(equal(2))
self.ugrid.unmarkCell(at: Position(row: 9, column: 9))
expect(self.ugrid.cells[9][9].attrId)
.to(equal(CellAttributesCollection.defaultAttributesId))
}
func testMarkPosition() {
self.ugrid.resize(Size(width: 20, height: 10))
self.ugrid.update(
row: 9,
startCol: 0,
endCol: 9,
clearCol: 0,
clearAttr: 0,
chunk: Array("0123456789".compactMap { String($0) }),
attrIds: [
0, -1, 2, 3, 4, 5, 6, 7, 8,
CellAttributesCollection.reversedDefaultAttributesId,
]
)
self.ugrid.recomputeFlatIndices(rowStart: 9, rowEndInclusive: 9)
self.ugrid.markCell(at: Position(row: 9, column: 4))
expect(self.ugrid.cells[9][4].attrId).to(equal(-4))
self.ugrid.markCell(at: Position(row: 9, column: 1))
expect(self.ugrid.cells[9][1].attrId).to(equal(-1))
self.ugrid.markCell(at: Position(row: 9, column: 9))
expect(self.ugrid.cells[9][9].attrId)
.to(equal(CellAttributesCollection.reversedDefaultAttributesId))
self.ugrid.update(
row: 7,
startCol: 0,
endCol: 10,
clearCol: 0,
clearAttr: 0,
chunk: Array("01234567".compactMap { String($0) }) + ["", ""],
attrIds: [0, 1, 2, 3, 4, 5, 6, 7, 8, 8]
)
self.ugrid.recomputeFlatIndices(rowStart: 7, rowEndInclusive: 9)
self.ugrid.markCell(at: Position(row: 7, column: 8))
expect(self.ugrid.cells[7][8].attrId)
.to(equal(-8))
expect(self.ugrid.cells[7][9].attrId)
.to(equal(-8))
self.ugrid.update(
row: 8,
startCol: 0,
endCol: 9,
clearCol: 0,
clearAttr: 0,
chunk: ["", ""] + Array("23456789".compactMap { String($0) }),
attrIds: [0, 0, 2, 3, 4, 5, 6, 7, 8, 9]
)
self.ugrid.markCell(at: Position(row: 8, column: 0))
expect(self.ugrid.cells[8][0].attrId)
.to(equal(CellAttributesCollection.reversedDefaultAttributesId))
expect(self.ugrid.cells[8][1].attrId)
.to(equal(CellAttributesCollection.reversedDefaultAttributesId))
}
func testLeftBoundaryOfWord() {
self.ugrid.resize(Size(width: 10, height: 2))
self.ugrid.update(
row: 0,
startCol: 0,
endCol: 10,
clearCol: 10,
clearAttr: 0,
chunk: " 12 45678 ".compactMap { String($0) },
attrIds: [Int](repeating: 0, count: 10)
)
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 0, column: 9)))
.to(equal(9))
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 0, column: 8)))
.to(equal(4))
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 0, column: 4)))
.to(equal(4))
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 0, column: 3)))
.to(equal(3))
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 0, column: 0)))
.to(equal(0))
self.ugrid.update(
row: 1,
startCol: 0,
endCol: 10,
clearCol: 10,
clearAttr: 0,
chunk: "0123456789".compactMap { String($0) },
attrIds: [Int](repeating: 0, count: 10)
)
expect(self.ugrid.leftBoundaryOfWord(at: Position(row: 1, column: 0)))
.to(equal(0))
}
func testRightBoundaryOfWord() {
self.ugrid.resize(Size(width: 10, height: 2))
self.ugrid.update(
row: 0,
startCol: 0,
endCol: 10,
clearCol: 10,
clearAttr: 0,
chunk: " 12345 78 ".compactMap { String($0) },
attrIds: [Int](repeating: 0, count: 10)
)
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 0, column: 9)))
.to(equal(9))
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 0, column: 8)))
.to(equal(8))
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 0, column: 7)))
.to(equal(8))
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 0, column: 1)))
.to(equal(5))
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 0, column: 0)))
.to(equal(0))
self.ugrid.update(
row: 1,
startCol: 0,
endCol: 10,
clearCol: 10,
clearAttr: 0,
chunk: "0123456789".compactMap { String($0) },
attrIds: [Int](repeating: 0, count: 10)
)
expect(self.ugrid.rightBoundaryOfWord(at: Position(row: 1, column: 9)))
.to(equal(9))
}
}