2014-07-19 11:45:44 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
#
|
|
|
|
# To execute this test requires two terminals, one for running Vim and one
|
|
|
|
# for executing the test script. Both terminals should have their current
|
2015-02-08 14:35:14 -05:00
|
|
|
# working directories set to this directory (the one containing this
|
|
|
|
# test_all.py script).
|
2014-07-19 11:45:44 -04:00
|
|
|
#
|
|
|
|
# In one terminal, launch a GNU ``screen`` session named ``vim``:
|
|
|
|
# $ screen -S vim
|
|
|
|
#
|
2014-07-24 02:18:12 -04:00
|
|
|
# Or the following if you use ``tmux``:
|
|
|
|
#
|
|
|
|
# $ tmux new -s vim
|
|
|
|
#
|
2014-07-19 11:45:44 -04:00
|
|
|
# Now, from another terminal, launch the testsuite:
|
2014-07-24 02:18:12 -04:00
|
|
|
# $ ./test_all.py
|
2014-07-19 11:45:44 -04:00
|
|
|
#
|
2015-02-08 14:35:14 -05:00
|
|
|
# Note: if you want to use Vim against the Python 3 bindings, you must launch the
|
2014-11-24 04:20:45 -05:00
|
|
|
# test suite using Python 3. For example:
|
|
|
|
# $ python3 ./test_all.py
|
|
|
|
#
|
2015-02-08 14:35:14 -05:00
|
|
|
# For each test, the test_all.py script will launch vim with a vimrc, run the
|
|
|
|
# test, compare the output and exit vim again. The keys are send using screen.
|
2014-07-19 11:45:44 -04:00
|
|
|
#
|
2014-11-24 04:20:45 -05:00
|
|
|
# To limit the tests that are executed, specify a pattern to be used to match
|
|
|
|
# the beginning of the test name. For instance, the following will execute all
|
|
|
|
# tests that start with "SimpleExpand":
|
|
|
|
# $ ./test_all.py SimpleExpand
|
|
|
|
#
|
2014-11-24 04:06:31 -05:00
|
|
|
# NOTE: The test suite is not working under Windows right now as I have no
|
|
|
|
# access to a windows system for fixing it. Volunteers welcome. Here are some
|
|
|
|
# comments from the last time I got the test suite running under windows.
|
2014-07-19 11:45:44 -04:00
|
|
|
#
|
|
|
|
# Under windows, COM's SendKeys is used to send keystrokes to the gvim window.
|
|
|
|
# Note that Gvim must use english keyboard input (choose in windows registry)
|
|
|
|
# for this to work properly as SendKeys is a piece of chunk. (i.e. it sends
|
|
|
|
# <F13> when you send a | symbol while using german key mappings)
|
|
|
|
|
|
|
|
# pylint: skip-file
|
|
|
|
|
|
|
|
import os
|
|
|
|
import platform
|
|
|
|
import subprocess
|
|
|
|
import unittest
|
2015-02-08 14:34:38 -05:00
|
|
|
from test.vim_interface import (create_directory, tempfile, VimInterfaceScreen,
|
|
|
|
VimInterfaceTmux)
|
2014-07-19 11:45:44 -04:00
|
|
|
|
2015-01-20 15:26:03 -05:00
|
|
|
|
2014-07-19 11:45:44 -04:00
|
|
|
def plugin_cache_dir():
|
|
|
|
"""The directory that we check out our bundles to."""
|
2015-01-20 15:26:03 -05:00
|
|
|
return os.path.join(tempfile.gettempdir(), 'UltiSnips_test_vim_plugins')
|
|
|
|
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
def clone_plugin(plugin):
|
|
|
|
"""Clone the given plugin into our plugin directory."""
|
|
|
|
dirname = os.path.join(plugin_cache_dir(), os.path.basename(plugin))
|
2015-01-20 15:26:03 -05:00
|
|
|
print('Cloning %s -> %s' % (plugin, dirname))
|
2014-07-19 11:45:44 -04:00
|
|
|
if os.path.exists(dirname):
|
2015-01-20 15:26:03 -05:00
|
|
|
print('Skip cloning of %s. Already there.' % plugin)
|
2014-07-19 11:45:44 -04:00
|
|
|
return
|
|
|
|
create_directory(dirname)
|
2015-01-20 15:26:03 -05:00
|
|
|
subprocess.call(['git', 'clone', '--recursive',
|
|
|
|
'--depth', '1', 'https://github.com/%s' % plugin, dirname])
|
|
|
|
|
|
|
|
if plugin == 'Valloric/YouCompleteMe':
|
|
|
|
# CLUTCH: this plugin needs something extra.
|
|
|
|
subprocess.call(os.path.join(dirname, './install.sh'), cwd=dirname)
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
def setup_other_plugins(all_plugins):
|
2015-01-20 15:26:03 -05:00
|
|
|
"""Creates /tmp/UltiSnips_test_vim_plugins and clones all plugins into
|
|
|
|
this."""
|
|
|
|
clone_plugin('tpope/vim-pathogen')
|
2014-07-19 11:45:44 -04:00
|
|
|
for plugin in all_plugins:
|
|
|
|
clone_plugin(plugin)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import optparse
|
2015-02-08 14:37:53 -05:00
|
|
|
import sys
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
def parse_args():
|
2015-01-20 15:26:03 -05:00
|
|
|
p = optparse.OptionParser('%prog [OPTIONS] <test case names to run>')
|
|
|
|
|
|
|
|
p.set_defaults(session='vim', interrupt=False,
|
|
|
|
verbose=False, interface='screen', retries=4, plugins=False)
|
|
|
|
|
|
|
|
p.add_option('-v', '--verbose', dest='verbose', action='store_true',
|
|
|
|
help='print name of tests as they are executed')
|
|
|
|
p.add_option('--clone-plugins', action='store_true',
|
|
|
|
help='Only clones dependant plugins and exits the test runner.')
|
|
|
|
p.add_option('--plugins', action='store_true',
|
|
|
|
help='Run integration tests with other Vim plugins.')
|
|
|
|
p.add_option('--interface', type=str,
|
|
|
|
help='interface to vim to use on Mac and or Linux [screen|tmux].')
|
|
|
|
p.add_option('-s', '--session', dest='session', metavar='SESSION',
|
|
|
|
help='session parameters for the terminal multiplexer SESSION [%default]')
|
|
|
|
p.add_option('-i', '--interrupt', dest='interrupt',
|
|
|
|
action='store_true',
|
|
|
|
help='Stop after defining the snippet. This allows the user '
|
|
|
|
'to interactively test the snippet in vim. You must give '
|
|
|
|
'exactly one test case on the cmdline. The test will always fail.'
|
|
|
|
)
|
|
|
|
p.add_option('-r', '--retries', dest='retries', type=int,
|
|
|
|
help='How often should each test be retried before it is '
|
|
|
|
'considered failed. Works around flakyness in the terminal '
|
|
|
|
'multiplexer and race conditions in writing to the file system.')
|
2015-02-08 14:37:08 -05:00
|
|
|
p.add_option("-x", "--exitfirst", dest="exitfirst", action="store_true",
|
|
|
|
help="exit instantly on first error or failed test.")
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
o, args = p.parse_args()
|
2015-01-20 15:26:03 -05:00
|
|
|
if o.interface not in ('screen', 'tmux'):
|
|
|
|
p.error('--interface must be [screen|tmux].')
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
return o, args
|
|
|
|
|
|
|
|
def flatten_test_suite(suite):
|
|
|
|
flatten = unittest.TestSuite()
|
|
|
|
for test in suite:
|
|
|
|
if isinstance(test, unittest.TestSuite):
|
|
|
|
flatten.addTests(flatten_test_suite(test))
|
|
|
|
else:
|
|
|
|
flatten.addTest(test)
|
|
|
|
return flatten
|
|
|
|
|
|
|
|
def main():
|
2015-01-20 15:26:03 -05:00
|
|
|
options, selected_tests = parse_args()
|
2014-07-19 11:45:44 -04:00
|
|
|
|
2015-01-20 15:26:03 -05:00
|
|
|
all_test_suites = unittest.defaultTestLoader.discover(start_dir='test')
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
vim = None
|
|
|
|
if not options.clone_plugins:
|
2015-01-20 15:26:03 -05:00
|
|
|
if platform.system() == 'Windows':
|
|
|
|
raise RuntimeError(
|
|
|
|
'TODO: TestSuite is broken under windows. Volunteers wanted!.')
|
2014-07-19 11:45:44 -04:00
|
|
|
# vim = VimInterfaceWindows()
|
|
|
|
vim.focus()
|
|
|
|
else:
|
2015-01-20 15:26:03 -05:00
|
|
|
if options.interface == 'screen':
|
2014-07-19 11:45:44 -04:00
|
|
|
vim = VimInterfaceScreen(options.session)
|
2015-01-20 15:26:03 -05:00
|
|
|
elif options.interface == 'tmux':
|
2014-07-19 11:45:44 -04:00
|
|
|
vim = VimInterfaceTmux(options.session)
|
|
|
|
|
|
|
|
all_other_plugins = set()
|
|
|
|
|
|
|
|
tests = set()
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
|
|
|
|
for test in flatten_test_suite(all_test_suites):
|
|
|
|
test.interrupt = options.interrupt
|
|
|
|
test.retries = options.retries
|
|
|
|
test.test_plugins = options.plugins
|
|
|
|
test.vim = vim
|
|
|
|
all_other_plugins.update(test.plugins)
|
|
|
|
|
|
|
|
if len(selected_tests):
|
|
|
|
id = test.id().split('.')[1]
|
2015-01-20 15:26:03 -05:00
|
|
|
if not any([id.startswith(t) for t in selected_tests]):
|
2014-07-19 11:45:44 -04:00
|
|
|
continue
|
|
|
|
tests.add(test)
|
|
|
|
suite.addTests(tests)
|
|
|
|
|
|
|
|
if options.plugins or options.clone_plugins:
|
|
|
|
setup_other_plugins(all_other_plugins)
|
|
|
|
if options.clone_plugins:
|
|
|
|
return
|
|
|
|
|
|
|
|
v = 2 if options.verbose else 1
|
2015-02-08 14:37:53 -05:00
|
|
|
return unittest.TextTestRunner(verbosity=v,
|
|
|
|
failfast=options.exitfirst).run(suite)
|
2014-07-19 11:45:44 -04:00
|
|
|
|
2015-02-08 14:37:53 -05:00
|
|
|
sys.exit(main())
|
2014-07-19 11:45:44 -04:00
|
|
|
|
|
|
|
# vim:fileencoding=utf-8:foldmarker={{{#,#}}}:
|