mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-11 04:23:47 -05:00
Releasing v4.2.0
* Refactored cell & formula logic out into separate files * Added more tests to test things independently.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
" vim: fdm=indent
|
||||
source t/config.vim
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#align#scope()', 'sid': 'tablemode#align#sid()'})
|
||||
|
||||
|
||||
49
t/cell.vim
Normal file
49
t/cell.vim
Normal file
@@ -0,0 +1,49 @@
|
||||
" vim: fdm=indent
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#spreadsheet#cell#scope()', 'sid': 'tablemode#spreadsheet#cell#sid()'})
|
||||
|
||||
describe 'cell API'
|
||||
before
|
||||
new
|
||||
read t/fixtures/sample.txt
|
||||
end
|
||||
|
||||
it 'should return the cells'
|
||||
Expect tablemode#spreadsheet#cell#GetCells(2, 1, 1) ==# 'test11'
|
||||
" Get Rows
|
||||
Expect tablemode#spreadsheet#cell#GetCells(2, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCells(2, 2) == ['test21', 'test22']
|
||||
" Get Columns
|
||||
Expect tablemode#spreadsheet#cell#GetCells(2, 0, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#cell#GetCells(2, 0, 2) == ['test12', 'test22']
|
||||
end
|
||||
|
||||
it 'should return the cells in a range'
|
||||
" Entire table as range
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1,1:2,2', 2, 1) == [['test11', 'test21'], ['test12', 'test22']]
|
||||
|
||||
" Get Rows given different seed lines and columns
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1,1:1,2', 2, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1,1:1,2', 2, 2) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1,1:1,2', 3, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1,1:1,2', 3, 2) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('2,1:2,2', 2, 1) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('2,1:2,2', 2, 2) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('2,1:2,2', 3, 1) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('2,1:2,2', 3, 2) == ['test21', 'test22']
|
||||
|
||||
" Get Columns given different seed lines and column
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:2', 2, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:2', 2, 2) == ['test12', 'test22']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:2', 3, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:2', 3, 2) == ['test12', 'test22']
|
||||
|
||||
" Get Column given negative values in range for representing rows from
|
||||
" the end, -1 being the second last row.
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:-1', 2, 1) == ['test11']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:-1', 3, 1) == ['test11']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:-1', 2, 2) == ['test12']
|
||||
Expect tablemode#spreadsheet#cell#GetCellRange('1:-1', 3, 2) == ['test12']
|
||||
end
|
||||
end
|
||||
41
t/formula.vim
Normal file
41
t/formula.vim
Normal file
@@ -0,0 +1,41 @@
|
||||
" vim: fdm=indent
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#spreadsheet#formula#scope()', 'sid': 'tablemode#spreadsheet#formula#sid()'})
|
||||
|
||||
describe 'Formulas'
|
||||
describe 'Add Formula'
|
||||
before
|
||||
new
|
||||
read t/fixtures/formula/sample.txt
|
||||
end
|
||||
|
||||
it 'should add a formula successfully'
|
||||
call cursor(6, 15)
|
||||
call tablemode#spreadsheet#formula#Add("Sum(1:4)")
|
||||
Expect tablemode#spreadsheet#cell#GetCell() == '125.0'
|
||||
call cursor(8, 15)
|
||||
Expect getline('.') == '/* tmf: $5,2=Sum(1:4) */'
|
||||
|
||||
call cursor(7, 15)
|
||||
call tablemode#spreadsheet#formula#Add("Sum(1:-1)")
|
||||
Expect tablemode#spreadsheet#cell#GetCell() == '250.0'
|
||||
call cursor(8, 15)
|
||||
Expect getline('.') == '/* tmf: $5,2=Sum(1:4) ; $6,2=Sum(1:-1) */'
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Evaluate Formula'
|
||||
before
|
||||
new
|
||||
read t/fixtures/formula/formula.txt
|
||||
end
|
||||
|
||||
it 'should evaluate the formula successfull'
|
||||
call cursor(6, 15)
|
||||
call tablemode#spreadsheet#formula#EvaluateFormulaLine()
|
||||
Expect &modified == 1
|
||||
Expect tablemode#spreadsheet#cell#GetCell() == '125.0'
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -1,5 +1,5 @@
|
||||
" vim: fdm=indent
|
||||
source t/config.vim
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#spreadsheet#scope()', 'sid': 'tablemode#spreadsheet#sid()'})
|
||||
|
||||
@@ -34,44 +34,6 @@ describe 'spreadsheet'
|
||||
Expect tablemode#spreadsheet#GetLastRow(2) == 3
|
||||
Expect tablemode#spreadsheet#GetLastRow(3) == 3
|
||||
end
|
||||
|
||||
it 'should return the cells'
|
||||
Expect tablemode#spreadsheet#GetCells(2, 1, 1) ==# 'test11'
|
||||
" Get Rows
|
||||
Expect tablemode#spreadsheet#GetCells(2, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#GetCells(2, 2) == ['test21', 'test22']
|
||||
" Get Columns
|
||||
Expect tablemode#spreadsheet#GetCells(2, 0, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#GetCells(2, 0, 2) == ['test12', 'test22']
|
||||
end
|
||||
|
||||
it 'should return the cells in a range'
|
||||
" Entire table as range
|
||||
Expect tablemode#spreadsheet#GetCellRange('1,1:2,2', 2, 1) == [['test11', 'test21'], ['test12', 'test22']]
|
||||
|
||||
" Get Rows given different seed lines and columns
|
||||
Expect tablemode#spreadsheet#GetCellRange('1,1:1,2', 2, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1,1:1,2', 2, 2) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1,1:1,2', 3, 1) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1,1:1,2', 3, 2) == ['test11', 'test12']
|
||||
Expect tablemode#spreadsheet#GetCellRange('2,1:2,2', 2, 1) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#GetCellRange('2,1:2,2', 2, 2) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#GetCellRange('2,1:2,2', 3, 1) == ['test21', 'test22']
|
||||
Expect tablemode#spreadsheet#GetCellRange('2,1:2,2', 3, 2) == ['test21', 'test22']
|
||||
|
||||
" Get Columns given different seed lines and column
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:2', 2, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:2', 2, 2) == ['test12', 'test22']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:2', 3, 1) == ['test11', 'test21']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:2', 3, 2) == ['test12', 'test22']
|
||||
|
||||
" Get Column given negative values in range for representing rows from
|
||||
" the end, -1 being the second last row.
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:-1', 2, 1) == ['test11']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:-1', 3, 1) == ['test11']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:-1', 2, 2) == ['test12']
|
||||
Expect tablemode#spreadsheet#GetCellRange('1:-1', 3, 2) == ['test12']
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Manipulations'
|
||||
@@ -93,41 +55,4 @@ describe 'spreadsheet'
|
||||
call tablemode#spreadsheet#DeleteColumn()
|
||||
Expect tablemode#spreadsheet#ColumnCount('.') == 1
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Formulas'
|
||||
describe 'Add Formula'
|
||||
before
|
||||
new
|
||||
read t/fixtures/formula/sample.txt
|
||||
end
|
||||
|
||||
it 'should add a formula successfully'
|
||||
call cursor(6, 15)
|
||||
call tablemode#spreadsheet#AddFormula("Sum(1:4)")
|
||||
Expect tablemode#spreadsheet#GetCell() == '125.0'
|
||||
call cursor(8, 15)
|
||||
Expect getline('.') == '/* tmf: $5,2=Sum(1:4) */'
|
||||
|
||||
call cursor(7, 15)
|
||||
call tablemode#spreadsheet#AddFormula("Sum(1:-1)")
|
||||
Expect tablemode#spreadsheet#GetCell() == '250.0'
|
||||
call cursor(8, 15)
|
||||
Expect getline('.') == '/* tmf: $5,2=Sum(1:4) ; $6,2=Sum(1:-1) */'
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Evaluate Formula'
|
||||
before
|
||||
new
|
||||
read t/fixtures/formula/formula.txt
|
||||
end
|
||||
|
||||
it 'should evaluate the formula successfull'
|
||||
call cursor(6, 15)
|
||||
call tablemode#spreadsheet#EvaluateFormulaLine()
|
||||
Expect &modified == 1
|
||||
Expect tablemode#spreadsheet#GetCell() == '125.0'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
" vim: fdm=indent
|
||||
source t/config.vim
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#table#scope()', 'sid': 'tablemode#table#sid()'})
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
" vim: fdm=indent
|
||||
source t/config.vim
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#scope()', 'sid': 'tablemode#sid()'})
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
" vim: fdm=indent
|
||||
source t/config.vim
|
||||
source t/config/options.vim
|
||||
|
||||
call vspec#hint({'scope': 'tablemode#utils#scope()', 'sid': 'tablemode#utils#sid()'})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user