2016-02-20 03:48:31 -07:00
|
|
|
local helpers = require('test.functional.helpers')
|
|
|
|
local clear = helpers.clear
|
|
|
|
local eq = helpers.eq
|
|
|
|
local eval = helpers.eval
|
2016-05-14 13:00:27 -07:00
|
|
|
local execute = helpers.execute
|
2016-05-14 13:41:18 -07:00
|
|
|
local exc_exec = helpers.exc_exec
|
|
|
|
local neq = helpers.neq
|
2016-02-20 03:48:31 -07:00
|
|
|
|
|
|
|
describe('sort', function()
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
it('numbers compared as strings', function()
|
|
|
|
eq({1, 2, 3}, eval('sort([3, 2, 1])'))
|
|
|
|
eq({13, 28, 3}, eval('sort([3, 28, 13])'))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('numbers compared as numeric', function()
|
|
|
|
eq({1, 2, 3}, eval("sort([3, 2, 1], 'n')"))
|
|
|
|
eq({3, 13, 28}, eval("sort([3, 28, 13], 'n')"))
|
|
|
|
-- Strings are not sorted.
|
|
|
|
eq({'13', '28', '3'}, eval("sort(['13', '28', '3'], 'n')"))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('numbers compared as numbers', function()
|
|
|
|
eq({3, 13, 28}, eval("sort([13, 28, 3], 'N')"))
|
|
|
|
eq({'3', '13', '28'}, eval("sort(['13', '28', '3'], 'N')"))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('numbers compared as float', function()
|
|
|
|
eq({0.28, 3, 13.5}, eval("sort([13.5, 0.28, 3], 'f')"))
|
|
|
|
end)
|
2016-05-14 13:00:27 -07:00
|
|
|
|
|
|
|
it('ability to call sort() from a compare function', function()
|
|
|
|
execute('func Compare1(a, b) abort')
|
|
|
|
execute([[call sort(range(3), 'Compare2')]])
|
2016-05-14 13:35:51 -07:00
|
|
|
execute('return a:a - a:b')
|
2016-05-14 13:00:27 -07:00
|
|
|
execute('endfunc')
|
|
|
|
|
|
|
|
execute('func Compare2(a, b) abort')
|
2016-05-14 13:35:51 -07:00
|
|
|
execute('return a:a - a:b')
|
2016-05-14 13:00:27 -07:00
|
|
|
execute('endfunc')
|
|
|
|
eq({1, 3, 5}, eval("sort([3, 1, 5], 'Compare1')"))
|
|
|
|
end)
|
2016-05-14 13:41:18 -07:00
|
|
|
|
|
|
|
it('default sort', function()
|
|
|
|
-- docs say omitted, empty or zero argument sorts on string representation
|
|
|
|
eq({'2', 1, 3.3}, eval('sort([3.3, 1, "2"])'))
|
|
|
|
eq({'2', 1, 3.3}, eval([[sort([3.3, 1, "2"], '')]]))
|
|
|
|
eq({'2', 1, 3.3}, eval('sort([3.3, 1, "2"], 0)'))
|
|
|
|
neq(exc_exec('call sort([3.3, 1, "2"], 3)'):find('E474:'), nil)
|
|
|
|
end)
|
2016-02-20 03:48:31 -07:00
|
|
|
end)
|