diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-15 16:27:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-15 16:27:37 +0200 |
commit | a4720019cfca02fa0c04358daa562334bb716d57 (patch) | |
tree | 4ac1193b0f720ad31a51a33b0f4fc9ef68c902f1 /src/testdir/test86.in | |
parent | b983f75d228accb62fb07eff94c16a3a76f59498 (diff) | |
download | vim-a4720019cfca02fa0c04358daa562334bb716d57.zip |
updated for version 7.3.955
Problem: Python: Not enough tests.
Solution: Add tests for vim.{current,window*,tabpage*}. (ZyX)
Diffstat (limited to 'src/testdir/test86.in')
-rw-r--r-- | src/testdir/test86.in | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/testdir/test86.in b/src/testdir/test86.in index 8ef7e057f..43f2a5451 100644 --- a/src/testdir/test86.in +++ b/src/testdir/test86.in @@ -334,6 +334,7 @@ EOF :let g:foo = 'bac' :let w:abc = 'def' :let b:baz = 'bar' +:let t:bar = 'jkl' :try : throw "Abc" :catch @@ -342,6 +343,7 @@ EOF :put =pyeval('vim.vars[''foo'']') :put =pyeval('vim.current.window.vars[''abc'']') :put =pyeval('vim.current.buffer.vars[''baz'']') +:put =pyeval('vim.current.tabpage.vars[''bar'']') :" :" Options :" paste: boolean, global @@ -561,6 +563,78 @@ try: except StopIteration: cb.append('StopIteration') EOF +:" +:" Test vim.{tabpage,window}list and vim.{tabpage,window} objects +:tabnew 0 +:tabnew 1 +:vnew a.1 +:tabnew 2 +:vnew a.2 +:vnew b.2 +:vnew c.2 +py << EOF +cb.append('Number of tabs: ' + str(len(vim.tabpages))) +cb.append('Current tab pages:') +def W(w): + if '(unknown)' in repr(w): + return '<window object (unknown)>' + else: + return repr(w) +for t in vim.tabpages: + cb.append(' ' + repr(t) + '(' + str(t.number) + ')' + ': ' + str(len(t.windows)) + ' windows, current is ' + W(t.window)) + cb.append(' Windows:') + for w in t.windows: + cb.append(' ' + W(w) + '(' + str(w.number) + ')' + ': displays buffer ' + repr(w.buffer) + '; cursor is at ' + repr(w.cursor)) + # Other values depend on the size of the terminal, so they are checked partly: + for attr in ('height', 'row', 'width', 'col'): + try: + aval = getattr(w, attr) + if type(aval) is not long: + raise TypeError + if aval < 0: + raise ValueError + except Exception: + cb.append('!!!!!! Error while getting attribute ' + attr + ': ' + sys.exc_type.__name__) + w.cursor = (len(w.buffer), 0) +cb.append('Number of windows in current tab page: ' + str(len(vim.windows))) +if list(vim.windows) != list(vim.current.tabpage.windows): + cb.append('!!!!!! Windows differ') +EOF +:" +:" Test vim.current +py << EOF +def H(o): + return repr(o) +cb.append('Current tab page: ' + repr(vim.current.tabpage)) +cb.append('Current window: ' + repr(vim.current.window) + ': ' + H(vim.current.window) + ' is ' + H(vim.current.tabpage.window)) +cb.append('Current buffer: ' + repr(vim.current.buffer) + ': ' + H(vim.current.buffer) + ' is ' + H(vim.current.window.buffer)+ ' is ' + H(vim.current.tabpage.window.buffer)) +# Assigning: fails +try: + vim.current.window = vim.tabpages[0].window +except ValueError: + cb.append('ValueError at assigning foreign tab window') + +for attr in ('window', 'tabpage', 'buffer'): + try: + setattr(vim.current, attr, None) + except TypeError: + cb.append('Type error at assigning None to vim.current.' + attr) + +# Assigning: success +vim.current.tabpage = vim.tabpages[-2] +vim.current.buffer = cb +vim.current.window = vim.windows[0] +vim.current.window.cursor = (len(vim.current.buffer), 0) +cb.append('Current tab page: ' + repr(vim.current.tabpage)) +cb.append('Current window: ' + repr(vim.current.window)) +cb.append('Current buffer: ' + repr(vim.current.buffer)) +cb.append('Current line: ' + repr(vim.current.line)) +for b in vim.buffers: + if b is not cb: + vim.command('bwipeout! ' + b.number) +EOF +:tabonly! +:only! :endfun :" :call Test() |