diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-12-23 18:17:01 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-23 18:17:01 +0100 | 
| commit | dee78a4095a27369e428572f74f7b64bcc5f670e (patch) | |
| tree | 4f06de0fd7a5a80d746c2ffaf18cb0719e66cccd /test/functional/eval/null_spec.lua | |
| parent | ec86f4215fc58246998c6017df84206153d0df1a (diff) | |
| parent | 5cb7a709e7f60b0e7bcde70a1aa9fea5f060fe0f (diff) | |
| download | rneovim-dee78a4095a27369e428572f74f7b64bcc5f670e.tar.gz rneovim-dee78a4095a27369e428572f74f7b64bcc5f670e.tar.bz2 rneovim-dee78a4095a27369e428572f74f7b64bcc5f670e.zip | |
Merge #7708 from ZyX-I/hide-container-impl
Diffstat (limited to 'test/functional/eval/null_spec.lua')
| -rw-r--r-- | test/functional/eval/null_spec.lua | 85 | 
1 files changed, 47 insertions, 38 deletions
| diff --git a/test/functional/eval/null_spec.lua b/test/functional/eval/null_spec.lua index b67158eb22..afe999e1fa 100644 --- a/test/functional/eval/null_spec.lua +++ b/test/functional/eval/null_spec.lua @@ -41,35 +41,9 @@ describe('NULL', function()    end    describe('list', function()      -- Incorrect behaviour - -    -- FIXME add() should not return 1 at all -    null_expr_test('does not crash add()', 'add(L, 0)', 0, 1) -    null_expr_test('does not crash extend()', 'extend(L, [1])', 'E742: Cannot change value of extend() argument', 0) -    null_expr_test('does not crash extend() (second position)', 'extend([1], L)', 0, {1}) -    -- FIXME should be accepted by inputlist() -    null_expr_test('is accepted as an empty list by inputlist()', -                        '[feedkeys("\\n"), inputlist(L)]', 'E686: Argument of inputlist() must be a List', {0, 0}) -    -- FIXME should be accepted by writefile(), return {0, {}} -    null_expr_test('is accepted as an empty list by writefile()', -                        ('[writefile(L, "%s"), readfile("%s")]'):format(tmpfname, tmpfname), -                        'E484: Can\'t open file ' .. tmpfname, {0, {}}) -    -- FIXME should give error message -    null_expr_test('does not crash remove()', 'remove(L, 0)', 0, 0) -    -- FIXME should return 0 -    null_expr_test('is accepted by setqflist()', 'setqflist(L)', 0, -1) -    -- FIXME should return 0 -    null_expr_test('is accepted by setloclist()', 'setloclist(1, L)', 0, -1) -    -- FIXME should return 0 -    null_expr_test('is accepted by setmatches()', 'setmatches(L)', 0, -1) -    -- FIXME should return empty list or error out -    null_expr_test('is accepted by sort()', 'sort(L)', 0, 0) -    -- FIXME Should return 1 -    null_expr_test('is accepted by sort()', 'sort(L) is L', 0, 0) -    -- FIXME should not error out -    null_test('is accepted by :cexpr', 'cexpr L', 'Vim(cexpr):E777: String or List expected') -    -- FIXME should not error out -    null_test('is accepted by :lexpr', 'lexpr L', 'Vim(lexpr):E777: String or List expected') -    null_test('is accepted by :for', 'for x in L|throw x|endfor', 0) +    -- FIXME Should error out with different message +    null_test('makes :unlet act as if it is not a list', ':unlet L[0]', +              'Vim(unlet):E689: Can only index a List or Dictionary')      -- Subjectable behaviour @@ -77,20 +51,19 @@ describe('NULL', function()      null_expr_test('is equal to empty list', 'L == []', 0, 0)      -- FIXME Should return 1      null_expr_test('is equal to empty list (reverse order)', '[] == L', 0, 0) -    -- FIXME Should return 1 -    null_expr_test('is not locked', 'islocked("v:_null_list")', 0, 0) - -    -- Crashes - -    -- null_expr_test('does not crash setreg', 'setreg("x", L)', 0, 0) -    -- null_expr_test('does not crash setline', 'setline(1, L)', 0, 0) -    -- null_expr_test('does not crash system()', 'system("cat", L)', 0, '') -    -- null_expr_test('does not crash systemlist()', 'systemlist("cat", L)', 0, {})      -- Correct behaviour +    null_expr_test('can be indexed with error message for empty list', 'L[0]', +                   'E684: list index out of range: 0\nE15: Invalid expression: L[0]', nil) +    null_expr_test('can be splice-indexed', 'L[:]', 0, {}) +    null_expr_test('is not locked', 'islocked("v:_null_list")', 0, 0) +    null_test('is accepted by :for', 'for x in L|throw x|endfor', 0)      null_expr_test('does not crash append()', 'append(1, L)', 0, 0, function()        eq({''}, curbufmeths.get_lines(0, -1, false))      end) +    null_expr_test('does not crash setline()', 'setline(1, L)', 0, 0, function() +      eq({''}, curbufmeths.get_lines(0, -1, false)) +    end)      null_expr_test('is identical to itself', 'L is L', 0, 1)      null_expr_test('can be sliced', 'L[:]', 0, {})      null_expr_test('can be copied', 'copy(L)', 0, {}) @@ -122,6 +95,42 @@ describe('NULL', function()      null_expr_test('counts correctly', 'count([L], L)', 0, 1)      null_expr_test('makes map() return v:_null_list', 'map(L, "v:val") is# L', 0, 1)      null_expr_test('makes filter() return v:_null_list', 'filter(L, "1") is# L', 0, 1) +    null_test('is treated by :let as empty list', ':let [l] = L', 'Vim(let):E688: More targets than List items') +    null_expr_test('is accepted as an empty list by inputlist()', '[feedkeys("\\n"), inputlist(L)]', +                   'Type number and <Enter> or click with mouse (empty cancels): ', {0, 0}) +    null_expr_test('is accepted as an empty list by writefile()', +                   ('[writefile(L, "%s"), readfile("%s")]'):format(tmpfname, tmpfname), +                   0, {0, {}}) +    null_expr_test('makes add() error out', 'add(L, 0)', +                   'E742: Cannot change value of add() argument', 1) +    null_expr_test('makes insert() error out', 'insert(L, 1)', +                   'E742: Cannot change value of insert() argument', 0) +    null_expr_test('does not crash remove()', 'remove(L, 0)', +                   'E742: Cannot change value of remove() argument', 0) +    null_expr_test('makes reverse() error out', 'reverse(L)', +                   'E742: Cannot change value of reverse() argument', 0) +    null_expr_test('makes sort() error out', 'sort(L)', +                   'E742: Cannot change value of sort() argument', 0) +    null_expr_test('makes uniq() error out', 'uniq(L)', +                   'E742: Cannot change value of uniq() argument', 0) +    null_expr_test('does not crash extend()', 'extend(L, [1])', 'E742: Cannot change value of extend() argument', 0) +    null_expr_test('does not crash extend() (second position)', 'extend([1], L)', 0, {1}) +    null_expr_test('makes join() return empty string', 'join(L, "")', 0, '') +    null_expr_test('makes msgpackdump() return empty list', 'msgpackdump(L)', 0, {}) +    null_expr_test('does not crash system()', 'system("cat", L)', 0, '') +    null_expr_test('does not crash setreg', 'setreg("x", L)', 0, 0) +    null_expr_test('does not crash systemlist()', 'systemlist("cat", L)', 0, {}) +    null_test('does not make Neovim crash when v:oldfiles gets assigned to that', ':let v:oldfiles = L|oldfiles', 0) +    null_expr_test('does not make complete() crash or error out', +                   'execute(":normal i\\<C-r>=complete(1, L)[-1]\\n")', +                   '', '\n', function() +      eq({''}, curbufmeths.get_lines(0, -1, false)) +    end) +    null_expr_test('is accepted by setmatches()', 'setmatches(L)', 0, 0) +    null_expr_test('is accepted by setqflist()', 'setqflist(L)', 0, 0) +    null_expr_test('is accepted by setloclist()', 'setloclist(1, L)', 0, 0) +    null_test('is accepted by :cexpr', 'cexpr L', 0) +    null_test('is accepted by :lexpr', 'lexpr L', 0)    end)    describe('dict', function()      it('does not crash when indexing NULL dict', function() | 
