2009-06-23 08:45:04 -04:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# encoding: utf-8
|
|
|
|
|
#
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
# To execute this test requires two terminals, one for running Vim and one
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# for executing the test script. Both terminals should have their current
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
# working directories set to this directory (the one containing this test.py
|
|
|
|
|
# script).
|
|
|
|
|
#
|
|
|
|
|
# In one terminal, launch a GNU ``screen`` session named ``vim``:
|
|
|
|
|
# $ screen -S vim
|
|
|
|
|
#
|
|
|
|
|
# Now, from another terminal, launch the testsuite:
|
|
|
|
|
# $ ./test.py
|
2010-08-15 09:08:51 -04:00
|
|
|
|
#
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# For each test, the test.py script will launch vim with a vimrc, run the test,
|
|
|
|
|
# compare the output and exit vim again. The keys are send using screen.
|
|
|
|
|
#
|
|
|
|
|
# NOTE: The tessuite 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.
|
2011-02-21 03:34:12 -05:00
|
|
|
|
#
|
2012-01-29 10:51:22 -05: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)
|
|
|
|
|
|
2014-02-08 08:23:16 -05:00
|
|
|
|
# pylint: skip-file
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
from textwrap import dedent
|
2009-07-01 04:39:46 -04:00
|
|
|
|
import os
|
2011-02-20 12:11:51 -05:00
|
|
|
|
import platform
|
2014-02-14 17:58:00 -05:00
|
|
|
|
import random
|
|
|
|
|
import re
|
|
|
|
|
import shutil
|
|
|
|
|
import string
|
2012-08-15 08:13:50 -04:00
|
|
|
|
import subprocess
|
2014-02-14 17:58:00 -05:00
|
|
|
|
import sys
|
|
|
|
|
import tempfile
|
|
|
|
|
import time
|
|
|
|
|
import unittest
|
2009-06-23 08:45:04 -04:00
|
|
|
|
|
2013-10-19 09:34:13 -04:00
|
|
|
|
try:
|
|
|
|
|
import unidecode
|
|
|
|
|
UNIDECODE_IMPORTED = True
|
|
|
|
|
except ImportError:
|
|
|
|
|
UNIDECODE_IMPORTED = False
|
|
|
|
|
|
2009-07-05 07:20:58 -04:00
|
|
|
|
# Some constants for better reading
|
2012-01-10 08:16:25 -05:00
|
|
|
|
BS = '\x7f'
|
|
|
|
|
ESC = '\x1b'
|
|
|
|
|
ARR_L = '\x1bOD'
|
|
|
|
|
ARR_R = '\x1bOC'
|
|
|
|
|
ARR_U = '\x1bOA'
|
|
|
|
|
ARR_D = '\x1bOB'
|
2009-07-05 07:20:58 -04:00
|
|
|
|
|
2011-02-20 12:11:51 -05:00
|
|
|
|
# multi-key sequences generating a single key press
|
|
|
|
|
SEQUENCES = [ARR_L, ARR_R, ARR_U, ARR_D]
|
|
|
|
|
|
2009-07-09 09:30:23 -04:00
|
|
|
|
# Defined Constants
|
|
|
|
|
JF = "?" # Jump forwards
|
|
|
|
|
JB = "+" # Jump backwards
|
2009-08-16 12:50:14 -04:00
|
|
|
|
LS = "@" # List snippets
|
2009-07-09 09:30:23 -04:00
|
|
|
|
EX = "\t" # EXPAND
|
2010-12-18 12:07:46 -05:00
|
|
|
|
EA = "#" # Expand anonymous
|
2009-07-09 09:30:23 -04:00
|
|
|
|
|
2009-07-15 12:16:42 -04:00
|
|
|
|
COMPL_KW = chr(24)+chr(14)
|
|
|
|
|
COMPL_ACCEPT = chr(25)
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
PYTHON3 = sys.version_info >= (3,0)
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
def running_on_windows():
|
2014-02-14 03:55:35 -05:00
|
|
|
|
if platform.system() == "Windows":
|
|
|
|
|
return "Does not work on Windows."
|
|
|
|
|
|
2014-03-05 01:50:23 -05:00
|
|
|
|
def python3():
|
|
|
|
|
if PYTHON3:
|
|
|
|
|
return "Test does not work on python3."
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
def no_unidecode_available():
|
2014-02-14 03:55:35 -05:00
|
|
|
|
if not UNIDECODE_IMPORTED:
|
|
|
|
|
return "unidecode is not available."
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def is_process_running(pid):
|
|
|
|
|
"""Returns true if a process with pid is running, false otherwise."""
|
|
|
|
|
# from http://stackoverflow.com/questions/568271/how-to-check-if-there-exists-a-process-with-a-given-pid
|
|
|
|
|
try:
|
|
|
|
|
os.kill(pid, 0)
|
|
|
|
|
except OSError:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
2014-02-17 14:55:39 -05:00
|
|
|
|
def silent_call(cmd):
|
|
|
|
|
"""Calls 'cmd' and returns the exit value."""
|
|
|
|
|
return subprocess.call(cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
|
|
|
|
|
|
2014-03-04 14:36:27 -05:00
|
|
|
|
def create_directory(dirname):
|
|
|
|
|
"""Creates 'dirname' and its parents if it does not exist."""
|
|
|
|
|
try:
|
|
|
|
|
os.makedirs(dirname)
|
|
|
|
|
except OSError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def plugin_cache_dir():
|
|
|
|
|
"""The directory that we check out our bundles to."""
|
|
|
|
|
return os.path.join(tempfile.gettempdir(), "UltiSnips_test_vim_plugins")
|
|
|
|
|
|
|
|
|
|
def clone_plugin(plugin):
|
|
|
|
|
"""Clone the given plugin into our plugin directory."""
|
|
|
|
|
dirname = os.path.join(plugin_cache_dir(), os.path.basename(plugin))
|
2014-03-06 00:47:29 -05:00
|
|
|
|
print("Cloning %s -> %s" % (plugin, dirname))
|
2014-03-04 14:36:27 -05:00
|
|
|
|
if os.path.exists(dirname):
|
2014-03-05 01:50:23 -05:00
|
|
|
|
print("Skip cloning of %s. Already there." % plugin)
|
2014-03-04 14:36:27 -05:00
|
|
|
|
return
|
|
|
|
|
create_directory(dirname)
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
def setup_other_plugins(all_plugins):
|
|
|
|
|
"""Creates /tmp/UltiSnips_test_vim_plugins and clones all plugins into this."""
|
|
|
|
|
clone_plugin("tpope/vim-pathogen")
|
|
|
|
|
for plugin in all_plugins:
|
|
|
|
|
clone_plugin(plugin)
|
|
|
|
|
|
2014-03-05 01:50:23 -05:00
|
|
|
|
def read_text_file(filename):
|
|
|
|
|
"""Reads the contens of a text file."""
|
|
|
|
|
if PYTHON3:
|
|
|
|
|
return open(filename,"r", encoding="utf-8").read()
|
|
|
|
|
else:
|
|
|
|
|
return open(filename,"r").read()
|
2014-03-04 14:36:27 -05:00
|
|
|
|
|
|
|
|
|
def random_string(n):
|
|
|
|
|
return ''.join(random.choice(string.ascii_lowercase) for x in range(n))
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
class VimInterface(object):
|
2012-08-08 19:11:20 -04:00
|
|
|
|
def get_buffer_data(self):
|
|
|
|
|
handle, fn = tempfile.mkstemp(prefix="UltiSnips_Test",suffix=".txt")
|
|
|
|
|
os.close(handle)
|
|
|
|
|
os.unlink(fn)
|
|
|
|
|
|
2012-08-15 08:13:50 -04:00
|
|
|
|
self.send(ESC + ":w! %s\n" % fn)
|
2012-08-08 19:11:20 -04:00
|
|
|
|
|
|
|
|
|
# Read the output, chop the trailing newline
|
|
|
|
|
tries = 50
|
|
|
|
|
while tries:
|
|
|
|
|
if os.path.exists(fn):
|
2014-03-05 01:50:23 -05:00
|
|
|
|
return read_text_file(fn)[:-1]
|
2014-02-20 17:06:58 -05:00
|
|
|
|
time.sleep(.01)
|
2012-08-08 19:11:20 -04:00
|
|
|
|
tries -= 1
|
|
|
|
|
|
2012-08-08 18:08:29 -04:00
|
|
|
|
class VimInterfaceScreen(VimInterface):
|
|
|
|
|
def __init__(self, session):
|
|
|
|
|
self.session = session
|
2012-08-08 19:33:07 -04:00
|
|
|
|
self.need_screen_escapes = 0
|
|
|
|
|
self.detect_parsing()
|
2012-08-08 18:08:29 -04:00
|
|
|
|
|
|
|
|
|
def send(self, s):
|
2012-08-08 19:33:07 -04:00
|
|
|
|
if self.need_screen_escapes:
|
|
|
|
|
# escape characters that are special to some versions of screen
|
|
|
|
|
repl = lambda m: '\\' + m.group(0)
|
|
|
|
|
s = re.sub( r"[$^#\\']", repl, s )
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
if PYTHON3:
|
2012-08-15 08:13:50 -04:00
|
|
|
|
s = s.encode("utf-8")
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
rv = 0
|
|
|
|
|
if len(s) > 30:
|
|
|
|
|
rv |= silent_call(["screen", "-x", self.session, "-X", "register", "S", s])
|
|
|
|
|
rv |= silent_call(["screen", "-x", self.session, "-X", "paste", "S"])
|
|
|
|
|
else:
|
|
|
|
|
rv |= silent_call(["screen", "-x", self.session, "-X", "stuff", s])
|
|
|
|
|
if not rv: break
|
|
|
|
|
time.sleep(.2)
|
2012-08-08 18:08:29 -04:00
|
|
|
|
|
2012-08-08 19:33:07 -04:00
|
|
|
|
def detect_parsing(self):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
self.send(""" vim -u NONE\r\n""") # Space to exclude from shell history
|
|
|
|
|
time.sleep(1)
|
2012-08-08 19:33:07 -04:00
|
|
|
|
|
|
|
|
|
# Send a string where the interpretation will depend on version of screen
|
|
|
|
|
string = "$TERM"
|
|
|
|
|
self.send("i" + string + ESC)
|
|
|
|
|
output = self.get_buffer_data()
|
|
|
|
|
# If the output doesn't match the input, need to do additional escaping
|
|
|
|
|
if output != string:
|
|
|
|
|
self.need_screen_escapes = 1
|
2014-02-20 17:06:58 -05:00
|
|
|
|
self.send(ESC + ":q!\n")
|
2012-08-08 19:33:07 -04:00
|
|
|
|
|
2014-02-17 14:55:39 -05:00
|
|
|
|
class VimInterfaceTmux(VimInterface):
|
|
|
|
|
def __init__(self, session):
|
|
|
|
|
self.session = session
|
|
|
|
|
self._check_version()
|
|
|
|
|
|
|
|
|
|
def send(self, s):
|
|
|
|
|
# I did not find any documentation on what needs escaping when sending
|
|
|
|
|
# to tmux, but it seems like this is all that is needed for now.
|
|
|
|
|
s = s.replace(';', r'\;')
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
if PYTHON3:
|
2014-02-17 14:55:39 -05:00
|
|
|
|
s = s.encode("utf-8")
|
|
|
|
|
silent_call(["tmux", "send-keys", "-t", self.session, "-l", s])
|
|
|
|
|
|
|
|
|
|
def _check_version(self):
|
|
|
|
|
stdout, _ = subprocess.Popen(["tmux", "-V"],
|
|
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
|
2014-02-20 17:06:58 -05:00
|
|
|
|
if PYTHON3:
|
2014-02-17 14:55:39 -05:00
|
|
|
|
stdout = stdout.decode("utf-8")
|
|
|
|
|
m = re.match(r"tmux (\d+).(\d+)", stdout)
|
|
|
|
|
if not m or not (int(m.group(1)), int(m.group(2))) >= (1, 9):
|
|
|
|
|
raise RuntimeError("Need at least tmux 1.9, you have %s." % stdout.strip())
|
|
|
|
|
|
2012-08-08 18:08:29 -04:00
|
|
|
|
class VimInterfaceWindows(VimInterface):
|
|
|
|
|
BRACES = re.compile("([}{])")
|
|
|
|
|
WIN_ESCAPES = ["+", "^", "%", "~", "[", "]", "<", ">", "(", ")"]
|
|
|
|
|
WIN_REPLACES = [
|
|
|
|
|
(BS, "{BS}"),
|
|
|
|
|
(ARR_L, "{LEFT}"),
|
|
|
|
|
(ARR_R, "{RIGHT}"),
|
|
|
|
|
(ARR_U, "{UP}"),
|
|
|
|
|
(ARR_D, "{DOWN}"),
|
|
|
|
|
("\t", "{TAB}"),
|
|
|
|
|
("\n", "~"),
|
|
|
|
|
(ESC, "{ESC}"),
|
|
|
|
|
|
|
|
|
|
# On my system ` waits for a second keystroke, so `+SPACE = "`". On
|
|
|
|
|
# most systems, `+Space = "` ". I work around this, by sending the host
|
|
|
|
|
# ` as `+_+BS. Awkward, but the only way I found to get this working.
|
|
|
|
|
("`", "`_{BS}"),
|
|
|
|
|
("´", "´_{BS}"),
|
|
|
|
|
("{^}", "{^}_{BS}"),
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.seq_buf = []
|
|
|
|
|
# import windows specific modules
|
|
|
|
|
import win32com.client, win32gui
|
|
|
|
|
self.win32gui = win32gui
|
|
|
|
|
self.shell = win32com.client.Dispatch("WScript.Shell")
|
|
|
|
|
|
|
|
|
|
def is_focused(self, title=None):
|
|
|
|
|
cur_title = self.win32gui.GetWindowText(self.win32gui.GetForegroundWindow())
|
|
|
|
|
if (title or "- GVIM") in cur_title:
|
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def focus(self, title=None):
|
|
|
|
|
if not self.shell.AppActivate(title or "- GVIM"):
|
|
|
|
|
raise Exception("Failed to switch to GVim window")
|
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
|
|
def convert_keys(self, keys):
|
|
|
|
|
keys = self.BRACES.sub(r"{\1}", keys)
|
|
|
|
|
for k in self.WIN_ESCAPES:
|
|
|
|
|
keys = keys.replace(k, "{%s}" % k)
|
|
|
|
|
for f, r in self.WIN_REPLACES:
|
|
|
|
|
keys = keys.replace(f, r)
|
|
|
|
|
return keys
|
|
|
|
|
|
|
|
|
|
def send(self, keys):
|
|
|
|
|
self.seq_buf.append(keys)
|
|
|
|
|
seq = "".join(self.seq_buf)
|
|
|
|
|
|
|
|
|
|
for f in SEQUENCES:
|
|
|
|
|
if f.startswith(seq) and f != seq:
|
|
|
|
|
return
|
|
|
|
|
self.seq_buf = []
|
|
|
|
|
|
|
|
|
|
seq = self.convert_keys(seq)
|
|
|
|
|
|
|
|
|
|
if not self.is_focused():
|
|
|
|
|
time.sleep(2)
|
|
|
|
|
self.focus()
|
|
|
|
|
if not self.is_focused():
|
|
|
|
|
# This is the only way I can find to stop test execution
|
|
|
|
|
raise KeyboardInterrupt("Failed to focus GVIM")
|
|
|
|
|
|
|
|
|
|
self.shell.SendKeys(seq)
|
2009-07-04 10:08:14 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def create_temp_file(prefix, suffix, content):
|
|
|
|
|
"""Create a file in a temporary place with the given 'prefix'
|
|
|
|
|
and the given 'suffix' containing 'content'. The file is never
|
|
|
|
|
deleted. Returns the name of the temporary file."""
|
|
|
|
|
with tempfile.NamedTemporaryFile(
|
|
|
|
|
prefix=prefix, suffix=suffix, delete=False
|
|
|
|
|
) as temporary_file:
|
|
|
|
|
if PYTHON3:
|
|
|
|
|
s = s.encode("utf-8")
|
|
|
|
|
temporary_file.write(content)
|
|
|
|
|
temporary_file.close()
|
|
|
|
|
return temporary_file.name
|
|
|
|
|
|
2009-07-01 04:39:46 -04:00
|
|
|
|
class _VimTest(unittest.TestCase):
|
2014-02-23 05:19:11 -05:00
|
|
|
|
snippets = ()
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = {}
|
2013-04-14 07:09:33 -04:00
|
|
|
|
text_before = " --- some text before --- \n\n"
|
|
|
|
|
text_after = "\n\n --- some text after --- "
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
expected_error = ""
|
2009-07-05 12:51:12 -04:00
|
|
|
|
wanted = ""
|
|
|
|
|
keys = ""
|
2009-08-30 14:04:17 -04:00
|
|
|
|
sleeptime = 0.00
|
2014-02-20 17:06:58 -05:00
|
|
|
|
output = ""
|
2014-03-04 14:36:27 -05:00
|
|
|
|
plugins = []
|
2014-02-14 03:55:35 -05:00
|
|
|
|
# Skip this test for the given reason or None for not skipping it.
|
2014-03-05 01:50:23 -05:00
|
|
|
|
skip_if = lambda self: None
|
|
|
|
|
version = None # Will be set to vim --version output
|
2011-02-28 21:41:04 -05:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def runTest(self):
|
|
|
|
|
# Only checks the output. All work is done in setUp().
|
2013-04-14 07:09:33 -04:00
|
|
|
|
wanted = self.text_before + self.wanted + self.text_after
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
if self.expected_error:
|
2014-02-14 17:58:00 -05:00
|
|
|
|
self.assertRegexpMatches(self.output, self.expected_error)
|
|
|
|
|
return
|
2014-02-19 15:12:39 -05:00
|
|
|
|
for i in range(self.retries):
|
2009-08-24 06:28:54 -04:00
|
|
|
|
if self.output != wanted:
|
2010-08-17 11:05:35 -04:00
|
|
|
|
# Redo this, but slower
|
|
|
|
|
self.sleeptime += 0.02
|
2014-02-20 17:06:58 -05:00
|
|
|
|
self.tearDown()
|
2009-08-24 06:28:54 -04:00
|
|
|
|
self.setUp()
|
2009-07-02 03:49:42 -04:00
|
|
|
|
self.assertEqual(self.output, wanted)
|
|
|
|
|
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
|
|
|
|
"""Adds extra lines to the vim_config list."""
|
|
|
|
|
|
|
|
|
|
def _extra_options_post_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
"""Adds extra lines to the vim_config list."""
|
2009-07-12 11:23:39 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def _before_test(self):
|
|
|
|
|
"""Send these keys before the test runs. Used for buffer local
|
|
|
|
|
variables and other options."""
|
|
|
|
|
return ""
|
2009-07-12 11:23:39 -04:00
|
|
|
|
|
2014-02-20 14:08:47 -05:00
|
|
|
|
def _create_file(self, file_path, content):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
"""Creates a file in the runtimepath that is created for this test.
|
|
|
|
|
Returns the absolute path to the file."""
|
2014-02-20 14:08:47 -05:00
|
|
|
|
abs_path = os.path.join(self._temporary_directory, *file_path.split("/"))
|
2014-03-04 14:36:27 -05:00
|
|
|
|
create_directory(os.path.dirname(abs_path))
|
2014-02-20 17:06:58 -05:00
|
|
|
|
|
|
|
|
|
content = dedent(content + "\n")
|
|
|
|
|
if PYTHON3:
|
|
|
|
|
with open(abs_path, "w", encoding="utf-8") as file_handle:
|
|
|
|
|
file_handle.write(content)
|
|
|
|
|
else:
|
|
|
|
|
with open(abs_path, "w") as file_handle:
|
|
|
|
|
file_handle.write(content)
|
|
|
|
|
return abs_path
|
2014-02-14 17:58:00 -05:00
|
|
|
|
|
2014-03-04 14:36:27 -05:00
|
|
|
|
def _link_file(self, source, relative_destination):
|
|
|
|
|
"""Creates a link from 'source' to the 'relative_destination' in our temp dir."""
|
|
|
|
|
absdir = os.path.join(self._temporary_directory, relative_destination)
|
|
|
|
|
create_directory(absdir)
|
|
|
|
|
os.symlink(source, os.path.join(absdir, os.path.basename(source)))
|
|
|
|
|
|
2009-06-23 08:45:04 -04:00
|
|
|
|
def setUp(self):
|
2014-03-05 01:50:23 -05:00
|
|
|
|
if not _VimTest.version:
|
|
|
|
|
_VimTest.version, _ = subprocess.Popen(["vim", "--version"],
|
|
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
|
|
|
|
|
if PYTHON3:
|
2014-03-05 02:39:37 -05:00
|
|
|
|
_VimTest.version = _VimTest.version.decode("utf-8")
|
2014-03-05 01:50:23 -05:00
|
|
|
|
|
|
|
|
|
if self.plugins and not self.test_plugins:
|
|
|
|
|
return self.skipTest("Not testing integration with other plugins.")
|
2014-02-14 03:55:35 -05:00
|
|
|
|
reason_for_skipping = self.skip_if()
|
|
|
|
|
if reason_for_skipping is not None:
|
|
|
|
|
return self.skipTest(reason_for_skipping)
|
2011-02-28 21:41:04 -05:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
self._temporary_directory = tempfile.mkdtemp(prefix="UltiSnips_Test")
|
|
|
|
|
|
|
|
|
|
vim_config = []
|
|
|
|
|
vim_config.append('set nocompatible')
|
2014-03-04 14:36:27 -05:00
|
|
|
|
vim_config.append('set runtimepath=$VIMRUNTIME,.,%s' % self._temporary_directory)
|
|
|
|
|
|
|
|
|
|
if self.plugins:
|
|
|
|
|
self._link_file(os.path.join(plugin_cache_dir(), "vim-pathogen", "autoload"), ".")
|
|
|
|
|
for plugin in self.plugins:
|
|
|
|
|
self._link_file(os.path.join(plugin_cache_dir(), os.path.basename(plugin)), "bundle")
|
|
|
|
|
vim_config.append("execute pathogen#infect()")
|
|
|
|
|
|
|
|
|
|
# Vim parameters.
|
|
|
|
|
vim_config.append('syntax on')
|
|
|
|
|
vim_config.append('filetype plugin indent on')
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append('set clipboard=""')
|
|
|
|
|
vim_config.append('set encoding=utf-8')
|
|
|
|
|
vim_config.append('set fileencoding=utf-8')
|
|
|
|
|
vim_config.append('set buftype=nofile')
|
|
|
|
|
vim_config.append('set shortmess=at')
|
|
|
|
|
vim_config.append('let g:UltiSnipsExpandTrigger="<tab>"')
|
|
|
|
|
vim_config.append('let g:UltiSnipsJumpForwardTrigger="?"')
|
|
|
|
|
vim_config.append('let g:UltiSnipsJumpBackwardTrigger="+"')
|
|
|
|
|
vim_config.append('let g:UltiSnipsListSnippets="@"')
|
|
|
|
|
vim_config.append('let g:UltiSnipsUsePythonVersion="%i"' % (3 if PYTHON3 else 2))
|
|
|
|
|
vim_config.append('let g:UltiSnipsSnippetDirectories=["us"]')
|
2014-03-04 14:36:27 -05:00
|
|
|
|
|
2014-03-05 13:02:30 -05:00
|
|
|
|
self._extra_options_pre_init(vim_config)
|
2014-02-20 17:06:58 -05:00
|
|
|
|
|
|
|
|
|
# Now activate UltiSnips.
|
2014-03-05 13:02:30 -05:00
|
|
|
|
vim_config.append('call UltiSnips#bootstrap#Bootstrap()')
|
|
|
|
|
|
|
|
|
|
self._extra_options_post_init(vim_config)
|
2014-02-20 17:06:58 -05:00
|
|
|
|
|
|
|
|
|
# Finally, add the snippets and some configuration for the test.
|
|
|
|
|
vim_config.append("%s << EOF" % ("py3" if PYTHON3 else "py"))
|
2009-06-28 16:22:19 -04:00
|
|
|
|
|
2010-08-15 09:08:51 -04:00
|
|
|
|
if len(self.snippets) and not isinstance(self.snippets[0],tuple):
|
2009-07-01 14:03:29 -04:00
|
|
|
|
self.snippets = ( self.snippets, )
|
2009-07-04 15:58:13 -04:00
|
|
|
|
for s in self.snippets:
|
2014-02-19 15:04:52 -05:00
|
|
|
|
sv, content = s[:2]
|
2014-02-07 03:50:20 -05:00
|
|
|
|
description = ""
|
2009-07-17 17:33:48 -04:00
|
|
|
|
options = ""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
priority = 0
|
2009-07-17 17:33:48 -04:00
|
|
|
|
if len(s) > 2:
|
2014-02-07 03:50:20 -05:00
|
|
|
|
description = s[2]
|
2009-07-17 17:33:48 -04:00
|
|
|
|
if len(s) > 3:
|
|
|
|
|
options = s[3]
|
2014-02-19 15:04:52 -05:00
|
|
|
|
if len(s) > 4:
|
|
|
|
|
priority = s[4]
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("UltiSnips_Manager.add_snippet(%r, %r, %r, %r, priority=%i)" % (
|
|
|
|
|
sv, content, description, options, priority))
|
2009-07-17 17:33:48 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# fill buffer with default text and place cursor in between.
|
|
|
|
|
prefilled_text = (self.text_before + self.text_after).splitlines()
|
|
|
|
|
vim_config.append("vim.current.buffer[:] = %r\n" % prefilled_text)
|
|
|
|
|
vim_config.append("vim.current.window.cursor = (max(len(vim.current.buffer)//2, 1), 0)")
|
2009-07-01 11:11:33 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# Create a file to signalize to the test runner that we are done with starting Vim.
|
|
|
|
|
vim_pid_file = os.path.join(self._temporary_directory, "vim.pid")
|
|
|
|
|
done_file = os.path.join(self._temporary_directory, "loading_done")
|
|
|
|
|
vim_config.append("with open('%s', 'w') as pid_file: pid_file.write(vim.eval('getpid()'))" %
|
|
|
|
|
vim_pid_file)
|
|
|
|
|
vim_config.append("with open('%s', 'w') as done_file: pass" % done_file)
|
2009-07-01 04:39:46 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# End of python stuff.
|
|
|
|
|
vim_config.append("EOF")
|
2009-06-28 16:22:19 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
for name, content in self.files.items():
|
|
|
|
|
self._create_file(name, content)
|
2009-07-12 11:23:39 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
# Now launch Vim.
|
|
|
|
|
self._create_file("vim_config.vim", os.linesep.join(vim_config))
|
|
|
|
|
# Note the shell to exclude it from shell history.
|
|
|
|
|
self.vim.send(""" vim -u %s\r\n""" % os.path.join(
|
|
|
|
|
self._temporary_directory, "vim_config.vim"))
|
|
|
|
|
while True:
|
|
|
|
|
if os.path.exists(done_file):
|
|
|
|
|
self._vim_pid = int(open(vim_pid_file, "r").read())
|
|
|
|
|
break
|
|
|
|
|
time.sleep(.01)
|
2009-07-12 11:23:39 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
self._before_test()
|
2009-07-02 03:49:42 -04:00
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
if not self.interrupt:
|
|
|
|
|
# Go into insert mode and type the keys but leave Vim some time to
|
|
|
|
|
# react.
|
|
|
|
|
for c in 'i' + self.keys:
|
2014-02-17 14:55:39 -05:00
|
|
|
|
self.vim.send(c)
|
|
|
|
|
time.sleep(self.sleeptime)
|
2012-08-08 19:11:20 -04:00
|
|
|
|
self.output = self.vim.get_buffer_data()
|
2009-06-23 08:45:04 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
def tearDown(self):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
if self.interrupt:
|
|
|
|
|
print("Working directory: %s" % (self._temporary_directory))
|
|
|
|
|
return
|
|
|
|
|
shutil.rmtree(self._temporary_directory)
|
|
|
|
|
self.vim.send(3*ESC + ":qa!\n")
|
|
|
|
|
while is_process_running(self._vim_pid):
|
|
|
|
|
time.sleep(.05)
|
2014-02-14 17:58:00 -05:00
|
|
|
|
|
2012-01-16 05:30:20 -05:00
|
|
|
|
###########################################################################
|
|
|
|
|
# BEGINNING OF TEST #
|
|
|
|
|
###########################################################################
|
|
|
|
|
# Snippet Definition Parsing {{{#
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_SimpleSnippet(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
snippet testsnip "Test Snippet" b!
|
|
|
|
|
This is a test snippet!
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "This is a test snippet!"
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_MissingEndSnippet(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
snippet testsnip "Test Snippet" b!
|
|
|
|
|
This is a test snippet!
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
2014-02-14 17:58:00 -05:00
|
|
|
|
expected_error = r"Missing 'endsnippet' for 'testsnip' in \S+:4"
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_UnknownDirective(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
unknown directive
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
2014-02-14 17:58:00 -05:00
|
|
|
|
expected_error = r"Invalid line 'unknown directive' in \S+:2"
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
|
2014-02-19 15:04:52 -05:00
|
|
|
|
class ParseSnippets_InvalidPriorityLine(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
priority - 50
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
|
|
|
|
expected_error = r"Invalid priority '- 50' in \S+:2"
|
|
|
|
|
|
|
|
|
|
class ParseSnippets_InvalidPriorityLine1(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
priority
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
|
|
|
|
expected_error = r"Invalid priority '' in \S+:2"
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_ExtendsWithoutFiletype(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
extends
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
2014-02-14 17:58:00 -05:00
|
|
|
|
expected_error = r"'extends' without file types in \S+:2"
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_ClearAll(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
snippet testsnip "Test snippet"
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
clearsnippets
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "testsnip" + EX
|
|
|
|
|
wanted = "testsnip" + EX
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_ClearOne(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
snippet testsnip "Test snippet"
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet toclear "Snippet to clear"
|
|
|
|
|
Do not expand.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
clearsnippets toclear
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "toclear" + EX + "\n" + "testsnip" + EX
|
|
|
|
|
wanted = "toclear" + EX + "\n" + "This is a test."
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_ClearTwo(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
snippet testsnip "Test snippet"
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet toclear "Snippet to clear"
|
|
|
|
|
Do not expand.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
clearsnippets testsnip toclear
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
A "clearsnippets" feature
=========================
It's difficult for the user to control which of the default
bundled snippets are active in his environment. The
'runtimepath' variable must be set to the root of the ultisnips
installation, which brings in all of the bundled snippets.
Though the user may individually override the definition of the
bundled snippets using the "!" flag, the method has a couple of
problems:
- There's no way to remove a snippet, only to override it (and
each snippet must be overridden individually).
- The "!" flag currently doesn't remove the overridden snippets
from the "list snippets" command.
It might be considered a feature that "!" doesn't actually
remove the snippets from the "list snippets" command, though
perhaps that's an unintended effect. In any case, it would be
more convenient to allow the user to selectively remove the
bundled snippets from his environment.
A patch is provided in the following branch to address these problems:
http://code.launchpad.net/~drmikehenry/ultisnips/clearsnippets
The branch's primary purpose is the addition of a
"clearsnippets" command that may be placed in a user's
~/.vim/UltiSnips/ft.snippets file. The user may clear all
lower-priority snippet for that file type with the line:
clearsnippets
Alternatively, he may clear individual snippets by listing their
triggers:
clearsnippets trigger1 trigger2
A few changes were made to the testing system as part of the
incorporation of this new feature. These changes include:
- The "extends" directive is now supported on multiple lines
throughout file.
- A completely empty .snippets file is now possible.
- The test.py scripts now handles most of the vim setup,
simplifying the running of the tests. The invocation of Vim
now reduces to:
vim -u NONE
Instructions for running the tests are included at top of
test.py, where they should be more visible to interested
users; UltiSnips.vim now just points to test.py's
instructions.
- A new function vim_quote() encodes an arbitrary string into a
singly-quoted Vim string, with embedded quotes escaped.
- SnippetsFileParser() now allows file_data to be passed
directly for unit testing, avoiding the need to create files
in the filesystem for test purposes.
- A new _error() function reports errors to the user. At
runtime, this function uses :echo_err in general, but also can
append error text to current buffer to check for expected
errors during unit tests.
- Added error checks to snippets file parsing, along with unit
tests for the parsing.
- Increased retries from 2 to 4 (on my system, occasionally the
timing still causes tests to fail).
2009-09-08 20:15:10 -04:00
|
|
|
|
keys = "toclear" + EX + "\n" + "testsnip" + EX
|
|
|
|
|
wanted = "toclear" + EX + "\n" + "testsnip" + EX
|
|
|
|
|
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class _ParseSnippets_MultiWord(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 20:32:36 -04:00
|
|
|
|
snippet /test snip/
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet !snip test! "Another snippet"
|
|
|
|
|
This is another test.
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet "snippet test" "Another snippet" b
|
|
|
|
|
This is yet another test.
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 20:32:36 -04:00
|
|
|
|
class ParseSnippets_MultiWord_Simple(_ParseSnippets_MultiWord):
|
|
|
|
|
keys = "test snip" + EX
|
|
|
|
|
wanted = "This is a test."
|
|
|
|
|
class ParseSnippets_MultiWord_Description(_ParseSnippets_MultiWord):
|
|
|
|
|
keys = "snip test" + EX
|
|
|
|
|
wanted = "This is another test."
|
|
|
|
|
class ParseSnippets_MultiWord_Description_Option(_ParseSnippets_MultiWord):
|
|
|
|
|
keys = "snippet test" + EX
|
|
|
|
|
wanted = "This is yet another test."
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class _ParseSnippets_MultiWord_RE(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 20:32:36 -04:00
|
|
|
|
snippet /[d-f]+/ "" r
|
|
|
|
|
az test
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet !^(foo|bar)$! "" r
|
|
|
|
|
foo-bar test
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet "(test ?)+" "" r
|
|
|
|
|
re-test
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 20:32:36 -04:00
|
|
|
|
class ParseSnippets_MultiWord_RE1(_ParseSnippets_MultiWord_RE):
|
|
|
|
|
keys = "abc def" + EX
|
|
|
|
|
wanted = "abc az test"
|
|
|
|
|
class ParseSnippets_MultiWord_RE2(_ParseSnippets_MultiWord_RE):
|
|
|
|
|
keys = "foo" + EX + " bar" + EX + "\nbar" + EX
|
|
|
|
|
wanted = "foo-bar test bar\t\nfoo-bar test"
|
|
|
|
|
class ParseSnippets_MultiWord_RE3(_ParseSnippets_MultiWord_RE):
|
|
|
|
|
keys = "test test test" + EX
|
|
|
|
|
wanted = "re-test"
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_MultiWord_Quotes(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 20:32:36 -04:00
|
|
|
|
snippet "test snip"
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 20:32:36 -04:00
|
|
|
|
keys = "test snip" + EX
|
|
|
|
|
wanted = "This is a test."
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_MultiWord_WithQuotes(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 21:15:34 -04:00
|
|
|
|
snippet !"test snip"!
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 21:15:34 -04:00
|
|
|
|
keys = '"test snip"' + EX
|
|
|
|
|
wanted = "This is a test."
|
2010-08-08 20:32:36 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_MultiWord_NoContainer(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 20:32:36 -04:00
|
|
|
|
snippet test snip
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 20:32:36 -04:00
|
|
|
|
keys = "test snip" + EX
|
|
|
|
|
wanted = keys
|
2014-02-14 17:58:00 -05:00
|
|
|
|
expected_error = "Invalid multiword trigger: 'test snip' in \S+:2"
|
2010-08-08 20:32:36 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_MultiWord_UnmatchedContainer(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2010-08-08 20:32:36 -04:00
|
|
|
|
snippet !inv snip/
|
|
|
|
|
This is a test.
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2010-08-08 20:32:36 -04:00
|
|
|
|
keys = "inv snip" + EX
|
|
|
|
|
wanted = keys
|
2014-02-14 17:58:00 -05:00
|
|
|
|
expected_error = "Invalid multiword trigger: '!inv snip/' in \S+:2"
|
2010-08-08 20:32:36 -04:00
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_Global_Python(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2012-01-18 01:32:17 -05:00
|
|
|
|
global !p
|
|
|
|
|
def tex(ins):
|
|
|
|
|
return "a " + ins + " b"
|
|
|
|
|
endglobal
|
|
|
|
|
|
|
|
|
|
snippet ab
|
|
|
|
|
x `!p snip.rv = tex("bob")` y
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet ac
|
|
|
|
|
x `!p snip.rv = tex("jon")` y
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "ab" + EX + "\nac" + EX
|
|
|
|
|
wanted = "x a bob b y\nx a jon b y"
|
|
|
|
|
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ParseSnippets_Global_Local_Python(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2012-01-18 01:32:17 -05:00
|
|
|
|
global !p
|
|
|
|
|
def tex(ins):
|
|
|
|
|
return "a " + ins + " b"
|
|
|
|
|
endglobal
|
|
|
|
|
|
|
|
|
|
snippet ab
|
|
|
|
|
x `!p first = tex("bob")
|
|
|
|
|
snip.rv = "first"` `!p snip.rv = first` y
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "ab" + EX
|
|
|
|
|
wanted = "x first a bob b y"
|
2012-01-16 07:35:49 -05:00
|
|
|
|
# End: Snippet Definition Parsing #}}}
|
2010-08-16 20:59:41 -04:00
|
|
|
|
|
2012-01-16 07:35:49 -05:00
|
|
|
|
# Simple Expands {{{#
|
|
|
|
|
class _SimpleExpands(_VimTest):
|
|
|
|
|
snippets = ("hallo", "Hallo Welt!")
|
2010-08-16 20:59:41 -04:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpand_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "hallo" + EX
|
|
|
|
|
wanted = "Hallo Welt!"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpandTwice_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "hallo" + EX + '\nhallo' + EX
|
|
|
|
|
wanted = "Hallo Welt!\nHallo Welt!"
|
2010-08-16 20:59:41 -04:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpandNewLineAndBackspae_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "hallo" + EX + "\nHallo Welt!\n\n\b\b\b\b\b"
|
|
|
|
|
wanted = "Hallo Welt!\nHallo We"
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set backspace=eol,start")
|
2012-01-16 07:35:49 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpandTypeAfterExpand_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "hallo" + EX + "and again"
|
|
|
|
|
wanted = "Hallo Welt!and again"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpandTypeAndDelete_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "na du hallo" + EX + "and again\b\b\b\b\bblub"
|
|
|
|
|
wanted = "na du Hallo Welt!and blub"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class DoNotExpandAfterSpace_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "hallo " + EX
|
|
|
|
|
wanted = "hallo " + EX
|
|
|
|
|
|
|
|
|
|
class ExitSnippetModeAfterTabstopZero(_VimTest):
|
|
|
|
|
snippets = ("test", "SimpleText")
|
|
|
|
|
keys = "test" + EX + EX
|
|
|
|
|
wanted = "SimpleText" + EX
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ExpandInTheMiddleOfLine_ExpectCorrectResult(_SimpleExpands):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX
|
|
|
|
|
wanted = "Wie Hallo Welt! gehts"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MultilineExpand_ExpectCorrectResult(_VimTest):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts")
|
|
|
|
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX
|
|
|
|
|
wanted = "Wie Hallo Welt!\nUnd Wie gehts gehts"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MultilineExpandTestTyping_ExpectCorrectResult(_VimTest):
|
2012-01-16 07:35:49 -05:00
|
|
|
|
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts")
|
|
|
|
|
wanted = "Wie Hallo Welt!\nUnd Wie gehtsHuiui! gehts"
|
|
|
|
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX + "Huiui!"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleExpandEndingWithNewline_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "Hallo Welt\n")
|
|
|
|
|
keys = "hallo" + EX + "\nAnd more"
|
|
|
|
|
wanted = "Hallo Welt\n\nAnd more"
|
|
|
|
|
|
|
|
|
|
|
2012-01-16 07:35:49 -05:00
|
|
|
|
# End: Simple Expands #}}}
|
2012-01-16 10:43:34 -05:00
|
|
|
|
# TabStop Tests {{{#
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopSimpleReplace_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo ${0:End} ${1:Beginning}")
|
|
|
|
|
keys = "hallo" + EX + "na" + JF + "Du Nase"
|
|
|
|
|
wanted = "hallo Du Nase na"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopSimpleReplaceReversed_ExpectCorrectResult(_VimTest):
|
2012-01-16 12:57:37 -05:00
|
|
|
|
snippets = ("hallo", "hallo ${1:End} ${0:Beginning}")
|
|
|
|
|
keys = "hallo" + EX + "na" + JF + "Du Nase"
|
|
|
|
|
wanted = "hallo na Du Nase"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopSimpleReplaceSurrounded_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo ${0:End} a small feed")
|
|
|
|
|
keys = "hallo" + EX + "Nase"
|
|
|
|
|
wanted = "hallo Nase a small feed"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopSimpleReplaceSurrounded1_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo $0 a small feed")
|
|
|
|
|
keys = "hallo" + EX + "Nase"
|
|
|
|
|
wanted = "hallo Nase a small feed"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStop_Exit_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("echo", "$0 run")
|
|
|
|
|
keys = "echo" + EX + "test"
|
|
|
|
|
wanted = "test run"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopNoReplace_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("echo", "echo ${1:Hallo}")
|
|
|
|
|
keys = "echo" + EX
|
|
|
|
|
wanted = "echo Hallo"
|
|
|
|
|
|
|
|
|
|
class TabStop_EscapingCharsBackticks(_VimTest):
|
|
|
|
|
snippets = ("test", r"snip \` literal")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "snip ` literal"
|
|
|
|
|
class TabStop_EscapingCharsDollars(_VimTest):
|
|
|
|
|
snippets = ("test", r"snip \$0 $$0 end")
|
|
|
|
|
keys = "test" + EX + "hi"
|
|
|
|
|
wanted = "snip $0 $hi end"
|
|
|
|
|
class TabStop_EscapingCharsDollars1(_VimTest):
|
|
|
|
|
snippets = ("test", r"a\${1:literal}")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "a${1:literal}"
|
|
|
|
|
class TabStop_EscapingCharsDollars_BeginningOfLine(_VimTest):
|
|
|
|
|
snippets = ("test", "\n\\${1:literal}")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\n${1:literal}"
|
|
|
|
|
class TabStop_EscapingCharsDollars_BeginningOfDefinitionText(_VimTest):
|
|
|
|
|
snippets = ("test", "\\${1:literal}")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "${1:literal}"
|
|
|
|
|
class TabStop_EscapingChars_Backslash(_VimTest):
|
|
|
|
|
snippets = ("test", r"This \ is a backslash!")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "This \\ is a backslash!"
|
|
|
|
|
class TabStop_EscapingChars_Backslash2(_VimTest):
|
|
|
|
|
snippets = ("test", r"This is a backslash \\ done")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = r"This is a backslash \ done"
|
|
|
|
|
class TabStop_EscapingChars_Backslash3(_VimTest):
|
|
|
|
|
snippets = ("test", r"These are two backslashes \\\\ done")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = r"These are two backslashes \\ done"
|
|
|
|
|
class TabStop_EscapingChars_Backslash4(_VimTest):
|
|
|
|
|
# Test for bug 746446
|
|
|
|
|
snippets = ("test", r"\\$1{$2}")
|
|
|
|
|
keys = "test" + EX + "hello" + JF + "world"
|
|
|
|
|
wanted = r"\hello{world}"
|
|
|
|
|
class TabStop_EscapingChars_RealLife(_VimTest):
|
|
|
|
|
snippets = ("test", r"usage: \`basename \$0\` ${1:args}")
|
|
|
|
|
keys = "test" + EX + "[ -u -v -d ]"
|
|
|
|
|
wanted = "usage: `basename $0` [ -u -v -d ]"
|
|
|
|
|
|
|
|
|
|
class TabStopEscapingWhenSelected_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1:default}")
|
|
|
|
|
keys = "test" + EX + ESC + "0ihi"
|
|
|
|
|
wanted = "hisnip default"
|
|
|
|
|
class TabStopEscapingWhenSelectedSingleCharTS_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1:i}")
|
|
|
|
|
keys = "test" + EX + ESC + "0ihi"
|
|
|
|
|
wanted = "hisnip i"
|
|
|
|
|
class TabStopEscapingWhenSelectedNoCharTS_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip $1")
|
|
|
|
|
keys = "test" + EX + ESC + "0ihi"
|
|
|
|
|
wanted = "hisnip "
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopWithOneChar_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "nothing ${1:i} hups")
|
|
|
|
|
keys = "hallo" + EX + "ship"
|
|
|
|
|
wanted = "nothing ship hups"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestJumping_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo ${2:End} mitte ${1:Beginning}")
|
|
|
|
|
keys = "hallo" + EX + JF + "Test" + JF + "Hi"
|
|
|
|
|
wanted = "hallo Test mitte BeginningHi"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestJumping2_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo $2 $1")
|
|
|
|
|
keys = "hallo" + EX + JF + "Test" + JF + "Hi"
|
|
|
|
|
wanted = "hallo Test Hi"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestJumpingRLExampleWithZeroTab_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("test", "each_byte { |${1:byte}| $0 }")
|
|
|
|
|
keys = "test" + EX + JF + "Blah"
|
|
|
|
|
wanted = "each_byte { |byte| Blah }"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestJumpingDontJumpToEndIfThereIsTabZero_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo $0 $1")
|
|
|
|
|
keys = "hallo" + EX + "Test" + JF + "Hi" + JF + JF + "du"
|
2014-02-05 13:13:34 -05:00
|
|
|
|
wanted = "hallo Hi" + 2*JF + "du Test"
|
2012-01-16 10:43:34 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestBackwardJumping_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo ${2:End} mitte${1:Beginning}")
|
|
|
|
|
keys = "hallo" + EX + "Somelengthy Text" + JF + "Hi" + JB + \
|
|
|
|
|
"Lets replace it again" + JF + "Blah" + JF + JB*2 + JF
|
2014-02-05 13:13:34 -05:00
|
|
|
|
wanted = "hallo Blah mitteLets replace it again" + JB*2 + JF
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestBackwardJumping2_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo $2 $1")
|
|
|
|
|
keys = "hallo" + EX + "Somelengthy Text" + JF + "Hi" + JB + \
|
|
|
|
|
"Lets replace it again" + JF + "Blah" + JF + JB*2 + JF
|
2014-02-05 13:13:34 -05:00
|
|
|
|
wanted = "hallo Blah Lets replace it again" + JB*2 + JF
|
2012-01-16 10:43:34 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopTestMultilineExpand_ExpectCorrectResult(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("hallo", "hallo $0\nnice $1 work\n$3 $2\nSeem to work")
|
|
|
|
|
keys ="test hallo World" + ESC + "02f i" + EX + "world" + JF + "try" + \
|
2014-02-05 13:13:34 -05:00
|
|
|
|
JF + "test" + JF + "one more" + JF
|
|
|
|
|
wanted = "test hallo one more" + JF + "\nnice world work\n" \
|
2012-01-16 10:43:34 -05:00
|
|
|
|
"test try\nSeem to work World"
|
|
|
|
|
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteNone_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = """<div id="some_id">\n \n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteFirst_NoJumpBack(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + " blah" + JF + "Hallo"
|
|
|
|
|
wanted = """<div blah>\n Hallo\n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_DeleteFirst(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + BS + JF + "Hallo"
|
|
|
|
|
wanted = """<div>\n Hallo\n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteFirstJumpBack(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + "Hi" + JF + "Hallo" + JB + "SomethingElse" + JF + \
|
|
|
|
|
"Nupl" + JF + "Nox"
|
|
|
|
|
wanted = """<divSomethingElse>\n Nupl Nox\n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteSecond(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + JF + "no" + JF + "End"
|
|
|
|
|
wanted = """<div id="no">\n End\n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBack(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + JF + "no" + JF + "End" + JB + "yes" + JF + "Begin" \
|
|
|
|
|
+ JF + "Hi"
|
|
|
|
|
wanted = """<div id="yes">\n Begin Hi\n</div>"""
|
|
|
|
|
class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBackTwice(_VimTest):
|
|
|
|
|
snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
|
|
|
|
keys = "test" + EX + JF + "no" + JF + "End" + JB + "yes" + JB + \
|
|
|
|
|
" allaway" + JF + "Third" + JF + "Last"
|
|
|
|
|
wanted = """<div allaway>\n Third Last\n</div>"""
|
|
|
|
|
|
2012-01-16 14:24:17 -05:00
|
|
|
|
class TabStop_TSInDefaultText_ZeroLengthNested_OverwriteSecond(_VimTest):
|
2012-01-16 10:43:34 -05:00
|
|
|
|
snippets = ("test", """h${1:a$2b}l""")
|
|
|
|
|
keys = "test" + EX + JF + "ups" + JF + "End"
|
|
|
|
|
wanted = """haupsblEnd"""
|
2012-01-16 14:24:17 -05:00
|
|
|
|
class TabStop_TSInDefaultText_ZeroLengthNested_OverwriteFirst(_VimTest):
|
|
|
|
|
snippets = ("test", """h${1:a$2b}l""")
|
|
|
|
|
keys = "test" + EX + "ups" + JF + "End"
|
|
|
|
|
wanted = """hupslEnd"""
|
|
|
|
|
class TabStop_TSInDefaultText_ZeroLengthNested_OverwriteSecondJumpBackOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", """h${1:a$2b}l""")
|
|
|
|
|
keys = "test" + EX + JF + "longertext" + JB + "overwrite" + JF + "End"
|
|
|
|
|
wanted = """hoverwritelEnd"""
|
2012-01-28 11:06:11 -05:00
|
|
|
|
class TabStop_TSInDefaultText_ZeroLengthNested_OverwriteSecondJumpBackAndForward0(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", """h${1:a$2b}l""")
|
|
|
|
|
keys = "test" + EX + JF + "longertext" + JB + JF + "overwrite" + JF + "End"
|
|
|
|
|
wanted = """haoverwriteblEnd"""
|
|
|
|
|
class TabStop_TSInDefaultText_ZeroLengthNested_OverwriteSecondJumpBackAndForward1(_VimTest):
|
|
|
|
|
snippets = ("test", """h${1:a$2b}l""")
|
|
|
|
|
keys = "test" + EX + JF + "longertext" + JB + JF + JF + "End"
|
|
|
|
|
wanted = """halongertextblEnd"""
|
2012-01-16 10:43:34 -05:00
|
|
|
|
|
2012-01-17 07:48:01 -05:00
|
|
|
|
class TabStop_TSInDefaultNested_OverwriteOneJumpBackToOther(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second ${3:third}}} $4")
|
|
|
|
|
keys = "test" + EX + JF + "Hallo" + JF + "Ende"
|
|
|
|
|
wanted = "hi this Hallo Ende"
|
|
|
|
|
class TabStop_TSInDefaultNested_OverwriteOneJumpToThird(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second ${3:third}}} $4")
|
|
|
|
|
keys = "test" + EX + JF + JF + "Hallo" + JF + "Ende"
|
|
|
|
|
wanted = "hi this second Hallo Ende"
|
|
|
|
|
class TabStop_TSInDefaultNested_OverwriteOneJumpAround(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second ${3:third}}} $4")
|
|
|
|
|
keys = "test" + EX + JF + JF + "Hallo" + JB+JB + "Blah" + JF + "Ende"
|
|
|
|
|
wanted = "hi Blah Ende"
|
|
|
|
|
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_DoNothing(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second}} $2")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi this second second"
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_OverwriteSecond(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second}} $2")
|
|
|
|
|
keys = "test" + EX + JF + "Hallo"
|
|
|
|
|
wanted = "hi this Hallo Hallo"
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_Overwrite0(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:this ${2:second}} $2")
|
|
|
|
|
keys = "test" + EX + "Hallo"
|
|
|
|
|
wanted = "hi Hallo "
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_Overwrite1(_VimTest):
|
|
|
|
|
snippets = ("test", "$1: ${1:'${2:second}'} $2")
|
|
|
|
|
keys = "test" + EX + "Hallo"
|
|
|
|
|
wanted = "Hallo: Hallo "
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_OverwriteSecond1(_VimTest):
|
|
|
|
|
snippets = ("test", "$1: ${1:'${2:second}'} $2")
|
|
|
|
|
keys = "test" + EX + JF + "Hallo"
|
|
|
|
|
wanted = "'Hallo': 'Hallo' Hallo"
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_OverwriteFirstSwitchNumbers(_VimTest):
|
|
|
|
|
snippets = ("test", "$2: ${2:'${1:second}'} $1")
|
|
|
|
|
keys = "test" + EX + "Hallo"
|
|
|
|
|
wanted = "'Hallo': 'Hallo' Hallo"
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_OverwriteFirst_RLExample(_VimTest):
|
|
|
|
|
snippets = ("test", """`!p snip.rv = t[1].split('/')[-1].lower().strip("'")` = require(${1:'${2:sys}'})""")
|
|
|
|
|
keys = "test" + EX + "WORLD" + JF + "End"
|
|
|
|
|
wanted = "world = require(WORLD)End"
|
|
|
|
|
class TabStop_TSInDefault_MirrorsOutside_OverwriteSecond_RLExample(_VimTest):
|
|
|
|
|
snippets = ("test", """`!p snip.rv = t[1].split('/')[-1].lower().strip("'")` = require(${1:'${2:sys}'})""")
|
|
|
|
|
keys = "test" + EX + JF + "WORLD" + JF + "End"
|
|
|
|
|
wanted = "world = require('WORLD')End"
|
2012-01-17 07:48:01 -05:00
|
|
|
|
|
2012-01-17 08:36:15 -05:00
|
|
|
|
class TabStop_Multiline_Leave(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:first line\nsecond line} world" )
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi first line\nsecond line world"
|
|
|
|
|
class TabStop_Multiline_Overwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "hi ${1:first line\nsecond line} world" )
|
|
|
|
|
keys = "test" + EX + "Nothing"
|
|
|
|
|
wanted = "hi Nothing world"
|
|
|
|
|
class TabStop_Multiline_MirrorInFront_Leave(_VimTest):
|
|
|
|
|
snippets = ("test", "hi $1 ${1:first line\nsecond line} world" )
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi first line\nsecond line first line\nsecond line world"
|
|
|
|
|
class TabStop_Multiline_MirrorInFront_Overwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "hi $1 ${1:first line\nsecond line} world" )
|
|
|
|
|
keys = "test" + EX + "Nothing"
|
|
|
|
|
wanted = "hi Nothing Nothing world"
|
|
|
|
|
class TabStop_Multiline_DelFirstOverwriteSecond_Overwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "hi $1 $2 ${1:first line\nsecond line} ${2:Hi} world" )
|
|
|
|
|
keys = "test" + EX + BS + JF + "Nothing"
|
|
|
|
|
wanted = "hi Nothing Nothing world"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabStopNavigatingInInsertModeSimple_ExpectCorrectResult(_VimTest):
|
2012-01-17 08:36:15 -05:00
|
|
|
|
snippets = ("hallo", "Hallo ${1:WELT} ups")
|
|
|
|
|
keys = "hallo" + EX + "haselnut" + 2*ARR_L + "hips" + JF + "end"
|
|
|
|
|
wanted = "Hallo haselnhipsut upsend"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: TabStop Tests #}}}
|
2012-01-17 15:06:50 -05:00
|
|
|
|
# ShellCode Interpolation {{{#
|
|
|
|
|
class TabStop_Shell_SimpleExample(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", "hi `echo hallo` you!")
|
|
|
|
|
keys = "test" + EX + "and more"
|
|
|
|
|
wanted = "hi hallo you!and more"
|
2014-02-14 03:35:48 -05:00
|
|
|
|
class TabStop_Shell_WithUmlauts(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2014-02-14 03:35:48 -05:00
|
|
|
|
snippets = ("test", "hi `echo höüäh` you!")
|
|
|
|
|
keys = "test" + EX + "and more"
|
|
|
|
|
wanted = "hi höüäh you!and more"
|
2012-01-17 15:06:50 -05:00
|
|
|
|
class TabStop_Shell_TextInNextLine(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", "hi `echo hallo`\nWeiter")
|
|
|
|
|
keys = "test" + EX + "and more"
|
|
|
|
|
wanted = "hi hallo\nWeiterand more"
|
|
|
|
|
class TabStop_Shell_InDefValue_Leave(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", "Hallo ${1:now `echo fromecho`} end")
|
|
|
|
|
keys = "test" + EX + JF + "and more"
|
|
|
|
|
wanted = "Hallo now fromecho endand more"
|
|
|
|
|
class TabStop_Shell_InDefValue_Overwrite(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", "Hallo ${1:now `echo fromecho`} end")
|
|
|
|
|
keys = "test" + EX + "overwrite" + JF + "and more"
|
|
|
|
|
wanted = "Hallo overwrite endand more"
|
|
|
|
|
class TabStop_Shell_TestEscapedChars_Overwrite(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", r"""`echo \`echo "\\$hi"\``""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "$hi"
|
|
|
|
|
class TabStop_Shell_TestEscapedCharsAndShellVars_Overwrite(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", r"""`hi="blah"; echo \`echo "$hi"\``""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "blah"
|
|
|
|
|
|
|
|
|
|
class TabStop_Shell_ShebangPython(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-17 15:06:50 -05:00
|
|
|
|
snippets = ("test", """Hallo ${1:now `#!/usr/bin/env python
|
|
|
|
|
print "Hallo Welt"
|
|
|
|
|
`} end""")
|
|
|
|
|
keys = "test" + EX + JF + "and more"
|
|
|
|
|
wanted = "Hallo now Hallo Welt endand more"
|
|
|
|
|
# End: ShellCode Interpolation #}}}
|
|
|
|
|
# VimScript Interpolation {{{#
|
|
|
|
|
class TabStop_VimScriptInterpolation_SimpleExample(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!v indent(".")` End""")
|
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " hi 4 End"
|
|
|
|
|
# End: VimScript Interpolation #}}}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
# PythonCode Interpolation {{{#
|
2012-01-17 15:21:13 -05:00
|
|
|
|
# Deprecated Implementation {{{#
|
|
|
|
|
class PythonCodeOld_SimpleExample(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!p res = "Hallo"` End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi Hallo End"
|
|
|
|
|
class PythonCodeOld_ReferencePlaceholderAfter(_VimTest):
|
|
|
|
|
snippets = ("test", """${1:hi} `!p res = t[1]+".blah"` End""")
|
|
|
|
|
keys = "test" + EX + "ho"
|
|
|
|
|
wanted = "ho ho.blah End"
|
|
|
|
|
class PythonCodeOld_ReferencePlaceholderBefore(_VimTest):
|
|
|
|
|
snippets = ("test", """`!p res = len(t[1])*"#"`\n${1:some text}""")
|
|
|
|
|
keys = "test" + EX + "Hallo Welt"
|
|
|
|
|
wanted = "##########\nHallo Welt"
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class PythonCodeOld_TransformedBeforeMultiLine(_VimTest):
|
|
|
|
|
snippets = ("test", """${1/.+/egal/m} ${1:`!p
|
|
|
|
|
res = "Hallo"`} End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "egal Hallo End"
|
2012-01-17 15:21:13 -05:00
|
|
|
|
class PythonCodeOld_IndentedMultiline(_VimTest):
|
|
|
|
|
snippets = ("test", """start `!p a = 1
|
|
|
|
|
b = 2
|
|
|
|
|
if b > a:
|
|
|
|
|
res = "b isbigger a"
|
|
|
|
|
else:
|
|
|
|
|
res = "a isbigger b"` end""")
|
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " start b isbigger a end"
|
|
|
|
|
# End: Deprecated Implementation #}}}
|
|
|
|
|
# New Implementation {{{#
|
|
|
|
|
class PythonCode_UseNewOverOld(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!p res = "Old"
|
|
|
|
|
snip.rv = "New"` End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi New End"
|
|
|
|
|
|
|
|
|
|
class PythonCode_SimpleExample(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!p snip.rv = "Hallo"` End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi Hallo End"
|
|
|
|
|
|
|
|
|
|
class PythonCode_SimpleExample_ReturnValueIsEmptyString(_VimTest):
|
|
|
|
|
snippets = ("test", """hi`!p snip.rv = ""`End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hiEnd"
|
|
|
|
|
|
|
|
|
|
class PythonCode_ReferencePlaceholder(_VimTest):
|
|
|
|
|
snippets = ("test", """${1:hi} `!p snip.rv = t[1]+".blah"` End""")
|
|
|
|
|
keys = "test" + EX + "ho"
|
|
|
|
|
wanted = "ho ho.blah End"
|
|
|
|
|
|
|
|
|
|
class PythonCode_ReferencePlaceholderBefore(_VimTest):
|
|
|
|
|
snippets = ("test", """`!p snip.rv = len(t[1])*"#"`\n${1:some text}""")
|
|
|
|
|
keys = "test" + EX + "Hallo Welt"
|
|
|
|
|
wanted = "##########\nHallo Welt"
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class PythonCode_TransformedBeforeMultiLine(_VimTest):
|
|
|
|
|
snippets = ("test", """${1/.+/egal/m} ${1:`!p
|
|
|
|
|
snip.rv = "Hallo"`} End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "egal Hallo End"
|
2012-01-17 15:21:13 -05:00
|
|
|
|
class PythonCode_MultilineIndented(_VimTest):
|
|
|
|
|
snippets = ("test", """start `!p a = 1
|
|
|
|
|
b = 2
|
|
|
|
|
if b > a:
|
|
|
|
|
snip.rv = "b isbigger a"
|
|
|
|
|
else:
|
|
|
|
|
snip.rv = "a isbigger b"` end""")
|
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " start b isbigger a end"
|
|
|
|
|
|
|
|
|
|
class PythonCode_SimpleAppend(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!p snip.rv = "Hallo1"
|
|
|
|
|
snip += "Hallo2"` End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi Hallo1\nHallo2 End"
|
|
|
|
|
|
|
|
|
|
class PythonCode_MultiAppend(_VimTest):
|
|
|
|
|
snippets = ("test", """hi `!p snip.rv = "Hallo1"
|
|
|
|
|
snip += "Hallo2"
|
|
|
|
|
snip += "Hallo3"` End""")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "hi Hallo1\nHallo2\nHallo3 End"
|
|
|
|
|
|
|
|
|
|
class PythonCode_MultiAppendSimpleIndent(_VimTest):
|
|
|
|
|
snippets = ("test", """hi
|
|
|
|
|
`!p snip.rv="Hallo1"
|
|
|
|
|
snip += "Hallo2"
|
|
|
|
|
snip += "Hallo3"`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """
|
|
|
|
|
test""" + EX
|
|
|
|
|
wanted = """
|
|
|
|
|
hi
|
|
|
|
|
Hallo1
|
|
|
|
|
Hallo2
|
|
|
|
|
Hallo3
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_SimpleMkline(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv="Hallo1\n"
|
|
|
|
|
snip.rv += snip.mkline("Hallo2") + "\n"
|
|
|
|
|
snip.rv += snip.mkline("Hallo3")`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """
|
|
|
|
|
test""" + EX
|
|
|
|
|
wanted = """
|
|
|
|
|
hi
|
|
|
|
|
Hallo1
|
|
|
|
|
Hallo2
|
|
|
|
|
Hallo3
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_MultiAppendShift(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv="i1"
|
|
|
|
|
snip += "i1"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i2"
|
|
|
|
|
snip << 2
|
|
|
|
|
snip += "i0"
|
|
|
|
|
snip >> 3
|
|
|
|
|
snip += "i3"`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """
|
|
|
|
|
test""" + EX
|
|
|
|
|
wanted = """
|
|
|
|
|
hi
|
|
|
|
|
i1
|
|
|
|
|
i1
|
|
|
|
|
i2
|
|
|
|
|
i0
|
|
|
|
|
i3
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_MultiAppendShiftMethods(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv="i1\n"
|
|
|
|
|
snip.rv += snip.mkline("i1\n")
|
|
|
|
|
snip.shift(1)
|
|
|
|
|
snip.rv += snip.mkline("i2\n")
|
|
|
|
|
snip.unshift(2)
|
|
|
|
|
snip.rv += snip.mkline("i0\n")
|
|
|
|
|
snip.shift(3)
|
|
|
|
|
snip.rv += snip.mkline("i3")`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """
|
|
|
|
|
test""" + EX
|
|
|
|
|
wanted = """
|
|
|
|
|
hi
|
|
|
|
|
i1
|
|
|
|
|
i1
|
|
|
|
|
i2
|
|
|
|
|
i0
|
|
|
|
|
i3
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class PythonCode_ResetIndent(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv="i1"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i2"
|
|
|
|
|
snip.reset_indent()
|
|
|
|
|
snip += "i1"
|
|
|
|
|
snip << 1
|
|
|
|
|
snip += "i0"
|
|
|
|
|
snip.reset_indent()
|
|
|
|
|
snip += "i1"`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """
|
|
|
|
|
test""" + EX
|
|
|
|
|
wanted = """
|
|
|
|
|
hi
|
|
|
|
|
i1
|
|
|
|
|
i2
|
|
|
|
|
i1
|
|
|
|
|
i0
|
|
|
|
|
i1
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_IndentEtSw(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-17 15:21:13 -05:00
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv = "i1"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i2"
|
|
|
|
|
snip << 2
|
|
|
|
|
snip += "i0"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i1"
|
|
|
|
|
`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """ test""" + EX
|
|
|
|
|
wanted = """ hi
|
|
|
|
|
i1
|
|
|
|
|
i2
|
|
|
|
|
i0
|
|
|
|
|
i1
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_IndentEtSwOffset(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-17 15:21:13 -05:00
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv = "i1"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i2"
|
|
|
|
|
snip << 2
|
|
|
|
|
snip += "i0"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i1"
|
|
|
|
|
`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """ test""" + EX
|
|
|
|
|
wanted = """ hi
|
|
|
|
|
i1
|
|
|
|
|
i2
|
|
|
|
|
i0
|
|
|
|
|
i1
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_IndentNoetSwTs(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set ts=4")
|
2012-01-17 15:21:13 -05:00
|
|
|
|
snippets = ("test", r"""hi
|
|
|
|
|
`!p snip.rv = "i1"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i2"
|
|
|
|
|
snip << 2
|
|
|
|
|
snip += "i0"
|
|
|
|
|
snip >> 1
|
|
|
|
|
snip += "i1"
|
|
|
|
|
`
|
|
|
|
|
End""")
|
|
|
|
|
keys = """ test""" + EX
|
|
|
|
|
wanted = """ hi
|
|
|
|
|
i1
|
|
|
|
|
\t i2
|
|
|
|
|
i0
|
|
|
|
|
i1
|
|
|
|
|
End"""
|
|
|
|
|
|
|
|
|
|
# Test using 'opt'
|
|
|
|
|
class PythonCode_OptExists(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append('let g:UStest="yes"')
|
2012-01-17 15:21:13 -05:00
|
|
|
|
snippets = ("test", r"""hi `!p snip.rv = snip.opt("g:UStest") or "no"` End""")
|
|
|
|
|
keys = """test""" + EX
|
|
|
|
|
wanted = """hi yes End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_OptNoExists(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi `!p snip.rv = snip.opt("g:UStest") or "no"` End""")
|
|
|
|
|
keys = """test""" + EX
|
|
|
|
|
wanted = """hi no End"""
|
|
|
|
|
|
|
|
|
|
class PythonCode_IndentProblem(_VimTest):
|
|
|
|
|
# A test case which is likely related to bug 719649
|
|
|
|
|
snippets = ("test", r"""hi `!p
|
|
|
|
|
snip.rv = "World"
|
|
|
|
|
` End""")
|
|
|
|
|
keys = " " * 8 + "test" + EX # < 8 works.
|
|
|
|
|
wanted = """ hi World End"""
|
|
|
|
|
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class PythonCode_TrickyReferences(_VimTest):
|
|
|
|
|
snippets = ("test", r"""${2:${1/.+/egal/}} ${1:$3} ${3:`!p snip.rv = "hi"`}""")
|
|
|
|
|
keys = "ups test" + EX
|
|
|
|
|
wanted = "ups egal hi hi"
|
2012-01-17 15:21:13 -05:00
|
|
|
|
# locals
|
|
|
|
|
class PythonCode_Locals(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi `!p a = "test"
|
|
|
|
|
snip.rv = "nothing"` `!p snip.rv = a
|
|
|
|
|
` End""")
|
|
|
|
|
keys = """test""" + EX
|
|
|
|
|
wanted = """hi nothing test End"""
|
2012-01-22 13:31:51 -05:00
|
|
|
|
|
|
|
|
|
class PythonCode_LongerTextThanSource_Chars(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi`!p snip.rv = "a" * 100`end""")
|
2014-02-05 13:13:34 -05:00
|
|
|
|
keys = """test""" + EX + "ups"
|
2012-01-22 13:31:51 -05:00
|
|
|
|
wanted = "hi" + 100*"a" + "endups"
|
|
|
|
|
|
|
|
|
|
class PythonCode_LongerTextThanSource_MultiLine(_VimTest):
|
|
|
|
|
snippets = ("test", r"""hi`!p snip.rv = "a" * 100 + '\n'*100 + "a"*100`end""")
|
2014-02-05 13:13:34 -05:00
|
|
|
|
keys = """test""" + EX + "ups"
|
2012-01-22 13:31:51 -05:00
|
|
|
|
wanted = "hi" + 100*"a" + 100*"\n" + 100*"a" + "endups"
|
|
|
|
|
|
2012-01-27 16:48:36 -05:00
|
|
|
|
class PythonCode_AccessKilledTabstop_OverwriteSecond(_VimTest):
|
|
|
|
|
snippets = ("test", r"`!p snip.rv = t[2].upper()`${1:h${2:welt}o}`!p snip.rv = t[2].upper()`")
|
|
|
|
|
keys = "test" + EX + JF + "okay"
|
|
|
|
|
wanted = "OKAYhokayoOKAY"
|
|
|
|
|
class PythonCode_AccessKilledTabstop_OverwriteFirst(_VimTest):
|
|
|
|
|
snippets = ("test", r"`!p snip.rv = t[2].upper()`${1:h${2:welt}o}`!p snip.rv = t[2].upper()`")
|
|
|
|
|
keys = "test" + EX + "aaa"
|
|
|
|
|
wanted = "aaa"
|
2012-01-22 13:31:51 -05:00
|
|
|
|
|
2012-02-12 06:33:53 -05:00
|
|
|
|
class PythonVisual_NoVisualSelection_Ignore(_VimTest):
|
|
|
|
|
snippets = ("test", "h`!p snip.rv = snip.v.mode + snip.v.text`b")
|
|
|
|
|
keys = "test" + EX + "abc"
|
|
|
|
|
wanted = "hbabc"
|
|
|
|
|
class PythonVisual_SelectOneWord(_VimTest):
|
|
|
|
|
snippets = ("test", "h`!p snip.rv = snip.v.mode + snip.v.text`b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hvblablubb"
|
|
|
|
|
class PythonVisual_LineSelect_Simple(_VimTest):
|
|
|
|
|
snippets = ("test", "h`!p snip.rv = snip.v.mode + snip.v.text`b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX
|
|
|
|
|
wanted = "hVhello\nnice\nworld\nb"
|
|
|
|
|
|
2014-02-14 13:28:29 -05:00
|
|
|
|
# Tests for https://bugs.launchpad.net/bugs/1259349
|
|
|
|
|
class Python_WeirdScoping_Error(_VimTest):
|
|
|
|
|
snippets = ("test", "h`!p import re; snip.rv = '%i' % len([re.search for i in 'aiiia'])`b")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "h5b"
|
2012-01-17 15:21:13 -05:00
|
|
|
|
# End: New Implementation #}}}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
# End: PythonCode Interpolation #}}}
|
2012-01-16 14:24:17 -05:00
|
|
|
|
# Mirrors {{{#
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopTextAfterTab_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1 Hinten\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo Hinten\nhallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopTextBeforeTab_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "Vorne $1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "Vorne hallo\nhallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopTextSurroundedTab_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "Vorne $1 Hinten\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo test"
|
|
|
|
|
wanted = "Vorne hallo test Hinten\nhallo test"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopTextBeforeMirror_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1\nVorne $1")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo\nVorne hallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopAfterMirror_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1\n$1 Hinten")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo\nhallo Hinten"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopSurroundMirror_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1\nVorne $1 Hinten")
|
|
|
|
|
keys = "test" + EX + "hallo welt"
|
|
|
|
|
wanted = "hallo welt\nVorne hallo welt Hinten"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopAllSurrounded_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "ObenVorne $1 ObenHinten\nVorne $1 Hinten")
|
|
|
|
|
keys = "test" + EX + "hallo welt"
|
|
|
|
|
wanted = "ObenVorne hallo welt ObenHinten\nVorne hallo welt Hinten"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MirrorBeforeTabstopLeave_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1:this is it} $1")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "this is it this is it this is it"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MirrorBeforeTabstopOverwrite_ExpectCorrectResult(_VimTest):
|
2012-01-16 14:24:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1:this is it} $1")
|
|
|
|
|
keys = "test" + EX + "a"
|
|
|
|
|
wanted = "a a a"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TextTabStopSimpleMirrorMultiline_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo\nhallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorMultilineMany_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", " $1\n$1\na$1b\n$1\ntest $1 mich")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = " hallo\nhallo\nahallob\nhallo\ntest hallo mich"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MultilineTabStopSimpleMirrorMultiline_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n\n$1\n\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo Du\nHi"
|
|
|
|
|
wanted = "hallo Du\nHi\n\nhallo Du\nHi\n\nhallo Du\nHi"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MultilineTabStopSimpleMirrorMultiline1_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n$1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo Du\nHi"
|
|
|
|
|
wanted = "hallo Du\nHi\nhallo Du\nHi\nhallo Du\nHi"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MultilineTabStopSimpleMirrorDeleteInLine_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n$1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo Du\nHi\b\bAch Blah"
|
|
|
|
|
wanted = "hallo Du\nAch Blah\nhallo Du\nAch Blah\nhallo Du\nAch Blah"
|
|
|
|
|
class TextTabStopSimpleMirrorMultilineMirrorInFront_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "$1\n${1:sometext}")
|
|
|
|
|
keys = "test" + EX + "hallo\nagain"
|
|
|
|
|
wanted = "hallo\nagain\nhallo\nagain"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorDelete_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo\b\b"
|
|
|
|
|
wanted = "hal\nhal"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorSameLine_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1 $1")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo hallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorSameLine_InText_ExpectCorrectResult(_VimTest):
|
2012-01-20 13:12:14 -05:00
|
|
|
|
snippets = ("test", "$1 $1")
|
|
|
|
|
keys = "ups test blah" + ESC + "02f i" + EX + "hallo"
|
|
|
|
|
wanted = "ups hallo hallo blah"
|
2012-01-17 03:30:19 -05:00
|
|
|
|
class SimpleMirrorSameLineBeforeTabDefVal_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "$1 ${1:replace me}")
|
|
|
|
|
keys = "test" + EX + "hallo foo"
|
|
|
|
|
wanted = "hallo foo hallo foo"
|
|
|
|
|
class SimpleMirrorSameLineBeforeTabDefVal_DelB4Typing_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "$1 ${1:replace me}")
|
|
|
|
|
keys = "test" + EX + BS + "hallo foo"
|
|
|
|
|
wanted = "hallo foo hallo foo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorSameLineMany_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1 $1 $1 $1")
|
|
|
|
|
keys = "test" + EX + "hallo du"
|
|
|
|
|
wanted = "hallo du hallo du hallo du hallo du"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorSameLineManyMultiline_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1 $1 $1 $1")
|
|
|
|
|
keys = "test" + EX + "hallo du\nwie gehts"
|
|
|
|
|
wanted = "hallo du\nwie gehts hallo du\nwie gehts hallo du\nwie gehts" \
|
|
|
|
|
" hallo du\nwie gehts"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleMirrorDeleteSomeEnterSome_ExpectCorrectResult(_VimTest):
|
2012-01-17 03:30:19 -05:00
|
|
|
|
snippets = ("test", "$1\n$1")
|
|
|
|
|
keys = "test" + EX + "hallo\b\bhups"
|
|
|
|
|
wanted = "halhups\nhalhups"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleTabstopWithDefaultSimpelType_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:defa}\n$1")
|
|
|
|
|
keys = "test" + EX + "world"
|
|
|
|
|
wanted = "ha world\nworld"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleTabstopWithDefaultComplexType_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
|
|
|
|
keys = "test" + EX + "world"
|
|
|
|
|
wanted = "ha world world\nanother: world mirror"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleTabstopWithDefaultSimpelKeep_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:defa}\n$1")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "ha defa\ndefa"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class SimpleTabstopWithDefaultComplexKeep_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "ha default value default value\nanother: default value mirror"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorManyFromAll_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $5 ${1:blub} $4 $0 ${2:$1.h} $1 $3 ${4:More}")
|
|
|
|
|
keys = "test" + EX + "hi" + JF + "hu" + JF + "hub" + JF + "hulla" + \
|
|
|
|
|
JF + "blah" + JF + "end"
|
|
|
|
|
wanted = "ha blah hi hulla end hu hi hub hulla"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultNoType_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:blub} ${2:$1.h}")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "ha blub blub.h"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultNoType1_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha ${1:blub} ${2:$1}")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "ha blub blub"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultTwiceAndExtra_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:$1.h $1.c}\ntest $1")
|
|
|
|
|
keys = "test" + EX + "stdin"
|
|
|
|
|
wanted = "ha stdin stdin.h stdin.c\ntest stdin"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultMultipleLeave_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
|
|
|
|
keys = "test" + EX + "stdin"
|
|
|
|
|
wanted = "ha stdin snip stdin.h snip"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultMultipleOverwrite_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
|
|
|
|
keys = "test" + EX + "stdin" + JF + "do snap"
|
|
|
|
|
wanted = "ha stdin do snap stdin.h do snap"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultOverwrite_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:$1.h}")
|
|
|
|
|
keys = "test" + EX + "stdin" + JF + "overwritten"
|
|
|
|
|
wanted = "ha stdin overwritten"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultOverwrite1_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:$1}")
|
|
|
|
|
keys = "test" + EX + "stdin" + JF + "overwritten"
|
|
|
|
|
wanted = "ha stdin overwritten"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TabstopWithMirrorInDefaultNoOverwrite1_ExpectCorrectResult(_VimTest):
|
2012-01-17 06:47:51 -05:00
|
|
|
|
snippets = ("test", "ha $1 ${2:$1}")
|
|
|
|
|
keys = "test" + EX + "stdin" + JF + JF + "end"
|
|
|
|
|
wanted = "ha stdin stdinend"
|
2012-01-17 03:30:19 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class MirrorRealLifeExample_ExpectCorrectResult(_VimTest):
|
2012-01-17 14:46:42 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("for", "for(size_t ${2:i} = 0; $2 < ${1:count}; ${3:++$2})" \
|
|
|
|
|
"\n{\n\t${0:/* code */}\n}"),
|
|
|
|
|
)
|
|
|
|
|
keys ="for" + EX + "100" + JF + "avar\b\b\b\ba_variable" + JF + \
|
|
|
|
|
"a_variable *= 2" + JF + "// do nothing"
|
|
|
|
|
wanted = """for(size_t a_variable = 0; a_variable < 100; a_variable *= 2)
|
|
|
|
|
{
|
|
|
|
|
\t// do nothing
|
|
|
|
|
}"""
|
2012-01-26 10:37:47 -05:00
|
|
|
|
|
|
|
|
|
class Mirror_TestKill_InsertBefore_NoKill(_VimTest):
|
|
|
|
|
snippets = "test", "$1 $1_"
|
|
|
|
|
keys = "hallo test" + EX + "auch" + ESC + "wihi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noauch hinoauch_end"
|
|
|
|
|
class Mirror_TestKill_InsertAfter_NoKill(_VimTest):
|
|
|
|
|
snippets = "test", "$1 $1_"
|
|
|
|
|
keys = "hallo test" + EX + "auch" + ESC + "eiab" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noauch noauchab_end"
|
|
|
|
|
class Mirror_TestKill_InsertBeginning_Kill(_VimTest):
|
|
|
|
|
snippets = "test", "$1 $1_"
|
|
|
|
|
keys = "hallo test" + EX + "auch" + ESC + "wahi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noauch ahiuch_end"
|
|
|
|
|
class Mirror_TestKill_InsertEnd_Kill(_VimTest):
|
|
|
|
|
snippets = "test", "$1 $1_"
|
|
|
|
|
keys = "hallo test" + EX + "auch" + ESC + "ehihi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noauch auchih_end"
|
2012-01-28 08:36:52 -05:00
|
|
|
|
class Mirror_TestKillTabstop_Kill(_VimTest):
|
|
|
|
|
snippets = "test", "welt${1:welt${2:welt}welt} $2"
|
|
|
|
|
keys = "hallo test" + EX + "elt"
|
|
|
|
|
wanted = "hallo weltelt "
|
2012-01-26 10:37:47 -05:00
|
|
|
|
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Mirrors #}}}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
# Transformations {{{#
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_SimpleCase_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/foo/batzl/}")
|
|
|
|
|
keys = "test" + EX + "hallo foo boy"
|
|
|
|
|
wanted = "hallo foo boy hallo batzl boy"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_SimpleCaseNoTransform_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/foo/batzl/}")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo hallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_SimpleCaseTransformInFront_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "${1/foo/batzl/} $1")
|
|
|
|
|
keys = "test" + EX + "hallo foo"
|
|
|
|
|
wanted = "hallo batzl hallo foo"
|
|
|
|
|
class Transformation_SimpleCaseTransformInFrontDefVal_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1/foo/batzl/} ${1:replace me}")
|
|
|
|
|
keys = "test" + EX + "hallo foo"
|
|
|
|
|
wanted = "hallo batzl hallo foo"
|
|
|
|
|
class Transformation_MultipleTransformations_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:Some Text}${1/.+/\\U$0\E/}\n${1/.+/\L$0\E/}")
|
|
|
|
|
keys = "test" + EX + "SomE tExt "
|
|
|
|
|
wanted = "SomE tExt SOME TEXT \nsome text "
|
|
|
|
|
class Transformation_TabIsAtEndAndDeleted_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1/.+/is something/}${1:some}")
|
|
|
|
|
keys = "hallo test" + EX + "some\b\b\b\b\b"
|
|
|
|
|
wanted = "hallo "
|
|
|
|
|
class Transformation_TabIsAtEndAndDeleted1_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1/.+/is something/}${1:some}")
|
|
|
|
|
keys = "hallo test" + EX + "some\b\b\b\bmore"
|
|
|
|
|
wanted = "hallo is somethingmore"
|
|
|
|
|
class Transformation_TabIsAtEndNoTextLeave_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1/.+/is something/}${1}")
|
|
|
|
|
keys = "hallo test" + EX
|
|
|
|
|
wanted = "hallo "
|
|
|
|
|
class Transformation_TabIsAtEndNoTextType_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1/.+/is something/}${1}")
|
|
|
|
|
keys = "hallo test" + EX + "b"
|
|
|
|
|
wanted = "hallo is somethingb"
|
|
|
|
|
class Transformation_InsideTabLeaveAtDefault_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
|
|
|
|
keys = "test" + EX + "sometext" + JF
|
|
|
|
|
wanted = "sometext defined sometext"
|
|
|
|
|
class Transformation_InsideTabOvertype_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
|
|
|
|
keys = "test" + EX + "sometext" + JF + "overwrite"
|
|
|
|
|
wanted = "sometext overwrite"
|
|
|
|
|
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_Backreference_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/([ab])oo/$1ull/}")
|
|
|
|
|
keys = "test" + EX + "foo boo aoo"
|
|
|
|
|
wanted = "foo boo aoo foo bull aoo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_BackreferenceTwice_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", r"$1 ${1/(dead) (par[^ ]*)/this $2 is a bit $1/}")
|
|
|
|
|
keys = "test" + EX + "dead parrot"
|
|
|
|
|
wanted = "dead parrot this parrot is a bit dead"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CleverTransformUpercaseChar_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(.)/\\u$1/}")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo Hallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CleverTransformLowercaseChar_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(.*)/\l$1/}")
|
|
|
|
|
keys = "test" + EX + "Hallo"
|
|
|
|
|
wanted = "Hallo hallo"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CleverTransformLongUpper_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(.*)/\\U$1\E/}")
|
|
|
|
|
keys = "test" + EX + "hallo"
|
|
|
|
|
wanted = "hallo HALLO"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CleverTransformLongLower_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(.*)/\L$1\E/}")
|
|
|
|
|
keys = "test" + EX + "HALLO"
|
|
|
|
|
wanted = "HALLO hallo"
|
2013-10-19 09:34:13 -04:00
|
|
|
|
|
2014-02-14 03:55:35 -05:00
|
|
|
|
class Transformation_SimpleCaseAsciiResult(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: no_unidecode_available()
|
2014-02-14 03:55:35 -05:00
|
|
|
|
snippets = ("ascii", "$1 ${1/(.*)/$1/a}")
|
|
|
|
|
keys = "ascii" + EX + "éèàçôïÉÈÀÇÔÏ€"
|
|
|
|
|
wanted = "éèàçôïÉÈÀÇÔÏ€ eeacoiEEACOIEU"
|
|
|
|
|
class Transformation_LowerCaseAsciiResult(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: no_unidecode_available()
|
2014-02-14 03:55:35 -05:00
|
|
|
|
snippets = ("ascii", "$1 ${1/(.*)/\L$1\E/a}")
|
|
|
|
|
keys = "ascii" + EX + "éèàçôïÉÈÀÇÔÏ€"
|
|
|
|
|
wanted = "éèàçôïÉÈÀÇÔÏ€ eeacoieeacoieu"
|
2012-01-18 01:32:17 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_ConditionalInsertionSimple_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(^a).*/(?0:began with an a)/}")
|
|
|
|
|
keys = "test" + EX + "a some more text"
|
|
|
|
|
wanted = "a some more text began with an a"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CIBothDefinedNegative_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
|
|
|
|
keys = "test" + EX + "b some"
|
|
|
|
|
wanted = "b some no"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class Transformation_CIBothDefinedPositive_ExpectCorrectResult(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
|
|
|
|
keys = "test" + EX + "a some"
|
|
|
|
|
wanted = "a some yes"
|
|
|
|
|
class Transformation_ConditionalInsertRWEllipsis_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/(\w+(?:\W+\w+){,7})\W*(.+)?/$1(?2:...)/}")
|
|
|
|
|
keys = "test" + EX + "a b c d e f ghhh h oha"
|
|
|
|
|
wanted = "a b c d e f ghhh h oha a b c d e f ghhh h..."
|
|
|
|
|
class Transformation_ConditionalInConditional_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/^.*?(-)?(>)?$/(?2::(?1:>:.))/}")
|
|
|
|
|
keys = "test" + EX + "hallo" + ESC + "$a\n" + \
|
|
|
|
|
"test" + EX + "hallo-" + ESC + "$a\n" + \
|
|
|
|
|
"test" + EX + "hallo->"
|
|
|
|
|
wanted = "hallo .\nhallo- >\nhallo-> "
|
|
|
|
|
|
|
|
|
|
class Transformation_CINewlines_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/, */\n/}")
|
|
|
|
|
keys = "test" + EX + "test, hallo"
|
|
|
|
|
wanted = "test, hallo test\nhallo"
|
|
|
|
|
class Transformation_CITabstop_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/, */\t/}")
|
|
|
|
|
keys = "test" + EX + "test, hallo"
|
|
|
|
|
wanted = "test, hallo test\thallo"
|
|
|
|
|
class Transformation_CIEscapedParensinReplace_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/hal((?:lo)|(?:ul))/(?1:ha\($1\))/}")
|
|
|
|
|
keys = "test" + EX + "test, halul"
|
|
|
|
|
wanted = "test, halul test, ha(ul)"
|
|
|
|
|
|
|
|
|
|
class Transformation_OptionIgnoreCase_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/test/blah/i}")
|
|
|
|
|
keys = "test" + EX + "TEST"
|
|
|
|
|
wanted = "TEST blah"
|
|
|
|
|
class Transformation_OptionReplaceGlobal_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/, */-/g}")
|
|
|
|
|
keys = "test" + EX + "a, nice, building"
|
|
|
|
|
wanted = "a, nice, building a-nice-building"
|
|
|
|
|
class Transformation_OptionReplaceGlobalMatchInReplace_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1/, */, /g}")
|
|
|
|
|
keys = "test" + EX + "a, nice, building"
|
|
|
|
|
wanted = "a, nice, building a, nice, building"
|
|
|
|
|
class TransformationUsingBackspaceToDeleteDefaultValueInFirstTab_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
|
|
|
|
"${1:default} ${2:def}")
|
|
|
|
|
keys = "test" + EX + BS + JF + "hi"
|
|
|
|
|
wanted = "snip m2 hi"
|
|
|
|
|
class TransformationUsingBackspaceToDeleteDefaultValueInSecondTab_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
|
|
|
|
"${1:default} ${2:def}")
|
|
|
|
|
keys = "test" + EX + "hi" + JF + BS
|
|
|
|
|
wanted = "snip m1 hi "
|
|
|
|
|
class TransformationUsingBackspaceToDeleteDefaultValueTypeSomethingThen_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
|
|
|
|
keys = "test" + EX + BS + "hallo"
|
|
|
|
|
wanted = "snip matched hallo"
|
|
|
|
|
class TransformationUsingBackspaceToDeleteDefaultValue_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
|
|
|
|
keys = "test" + EX + BS
|
|
|
|
|
wanted = "snip "
|
2012-01-26 10:37:47 -05:00
|
|
|
|
class Transformation_TestKill_InsertBefore_NoKill(_VimTest):
|
|
|
|
|
snippets = "test", r"$1 ${1/.*/\L$0$0\E/}_"
|
|
|
|
|
keys = "hallo test" + EX + "AUCH" + ESC + "wihi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noAUCH hinoauchnoauch_end"
|
|
|
|
|
class Transformation_TestKill_InsertAfter_NoKill(_VimTest):
|
|
|
|
|
snippets = "test", r"$1 ${1/.*/\L$0$0\E/}_"
|
|
|
|
|
keys = "hallo test" + EX + "AUCH" + ESC + "eiab" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noAUCH noauchnoauchab_end"
|
|
|
|
|
class Transformation_TestKill_InsertBeginning_Kill(_VimTest):
|
|
|
|
|
snippets = "test", r"$1 ${1/.*/\L$0$0\E/}_"
|
|
|
|
|
keys = "hallo test" + EX + "AUCH" + ESC + "wahi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noAUCH ahiuchauch_end"
|
|
|
|
|
class Transformation_TestKill_InsertEnd_Kill(_VimTest):
|
|
|
|
|
snippets = "test", r"$1 ${1/.*/\L$0$0\E/}_"
|
|
|
|
|
keys = "hallo test" + EX + "AUCH" + ESC + "ehihi" + ESC + "bb" + "ino" + JF + "end"
|
|
|
|
|
wanted = "hallo noAUCH auchauchih_end"
|
2012-01-18 01:32:17 -05:00
|
|
|
|
# End: Transformations #}}}
|
2012-01-18 04:23:42 -05:00
|
|
|
|
# ${VISUAL} {{{#
|
|
|
|
|
class Visual_NoVisualSelection_Ignore(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b")
|
|
|
|
|
keys = "test" + EX + "abc"
|
|
|
|
|
wanted = "hbabc"
|
|
|
|
|
class Visual_SelectOneWord(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hblablubb"
|
2012-02-16 15:42:26 -05:00
|
|
|
|
class Visual_SelectOneWord_ProblemAfterTab(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b", "", "i")
|
|
|
|
|
keys = "\tblablub" + ESC + "5hv3l" + EX + "test" + EX
|
|
|
|
|
wanted = "\tbhlablbub"
|
2012-01-31 08:20:49 -05:00
|
|
|
|
class VisualWithDefault_ExpandWithoutVisual(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL:world}b")
|
|
|
|
|
keys = "test" + EX + "hi"
|
|
|
|
|
wanted = "hworldbhi"
|
2012-02-24 03:42:02 -05:00
|
|
|
|
class VisualWithDefaultWithSlashes_ExpandWithoutVisual(_VimTest):
|
|
|
|
|
snippets = ("test", r"h${VISUAL:\/\/ body}b")
|
|
|
|
|
keys = "test" + EX + "hi"
|
|
|
|
|
wanted = "h// bodybhi"
|
2012-01-31 08:20:49 -05:00
|
|
|
|
class VisualWithDefault_ExpandWithVisual(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL:world}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hblablubb"
|
2012-01-18 04:23:42 -05:00
|
|
|
|
|
|
|
|
|
class Visual_ExpandTwice(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX + "\ntest" + EX
|
|
|
|
|
wanted = "hblablubb\nhb"
|
|
|
|
|
|
|
|
|
|
class Visual_SelectOneWord_TwiceVisual(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b${VISUAL}a")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hblablubbblabluba"
|
|
|
|
|
class Visual_SelectOneWord_Inword(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b", "Description", "i")
|
|
|
|
|
keys = "blablub" + ESC + "0lv4l" + EX + "test" + EX
|
|
|
|
|
wanted = "bhlablubb"
|
|
|
|
|
class Visual_SelectOneWord_TillEndOfLine(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b", "Description", "i")
|
|
|
|
|
keys = "blablub" + ESC + "0v$" + EX + "test" + EX + ESC + "o"
|
|
|
|
|
wanted = "hblablub\nb"
|
|
|
|
|
class Visual_SelectOneWordWithTabstop_TillEndOfLine(_VimTest):
|
|
|
|
|
snippets = ("test", "h${2:ahh}${VISUAL}${1:ups}b", "Description", "i")
|
|
|
|
|
keys = "blablub" + ESC + "0v$" + EX + "test" + EX + "mmm" + JF + "n" + JF + "done" + ESC + "o"
|
|
|
|
|
wanted = "hnblablub\nmmmbdone"
|
|
|
|
|
class Visual_InDefaultText_SelectOneWord_NoOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:${VISUAL}}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX + JF + "hello"
|
|
|
|
|
wanted = "hblablubbhello"
|
|
|
|
|
class Visual_InDefaultText_SelectOneWord(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:${VISUAL}}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX + "hello"
|
|
|
|
|
wanted = "hhellob"
|
|
|
|
|
|
|
|
|
|
class Visual_CrossOneLine(_VimTest):
|
|
|
|
|
snippets = ("test", "h${VISUAL}b")
|
|
|
|
|
keys = "bla blub\n helloi" + ESC + "0k4lvjll" + EX + "test" + EX
|
|
|
|
|
wanted = "bla hblub\n hellobi"
|
|
|
|
|
|
2012-01-21 06:42:03 -05:00
|
|
|
|
class Visual_LineSelect_Simple(_VimTest):
|
2012-01-18 04:23:42 -05:00
|
|
|
|
snippets = ("test", "h${VISUAL}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX
|
2012-01-21 06:42:03 -05:00
|
|
|
|
wanted = "hhello\n nice\n worldb"
|
2012-01-18 04:23:42 -05:00
|
|
|
|
class Visual_InDefaultText_LineSelect_NoOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:bef${VISUAL}aft}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + JF + "hi"
|
2012-01-21 06:42:03 -05:00
|
|
|
|
wanted = "hbefhello\n nice\n worldaftbhi"
|
2012-01-18 04:23:42 -05:00
|
|
|
|
class Visual_InDefaultText_LineSelect_Overwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:bef${VISUAL}aft}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + "jup" + JF + "hi"
|
|
|
|
|
wanted = "hjupbhi"
|
2012-01-21 06:42:03 -05:00
|
|
|
|
class Visual_LineSelect_CheckIndentSimple(_VimTest):
|
2012-01-18 04:23:42 -05:00
|
|
|
|
snippets = ("test", "beg\n\t${VISUAL}\nend")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX
|
|
|
|
|
wanted = "beg\n\thello\n\tnice\n\tworld\nend"
|
|
|
|
|
class Visual_LineSelect_CheckIndentTwice(_VimTest):
|
|
|
|
|
snippets = ("test", "beg\n\t${VISUAL}\nend")
|
|
|
|
|
keys = " hello\n nice\n\tworld" + ESC + "Vkk" + EX + "test" + EX
|
|
|
|
|
wanted = "beg\n\t hello\n\t nice\n\t\tworld\nend"
|
2012-01-21 06:42:03 -05:00
|
|
|
|
class Visual_InDefaultText_IndentSpacesToTabstop_NoOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:beforea${VISUAL}aft}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + JF + "hi"
|
|
|
|
|
wanted = "hbeforeahello\n\tnice\n\tworldaftbhi"
|
|
|
|
|
class Visual_InDefaultText_IndentSpacesToTabstop_Overwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:beforea${VISUAL}aft}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + "ups" + JF + "hi"
|
|
|
|
|
wanted = "hupsbhi"
|
|
|
|
|
class Visual_InDefaultText_IndentSpacesToTabstop_NoOverwrite1(_VimTest):
|
|
|
|
|
snippets = ("test", "h${1:beforeaaa${VISUAL}aft}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + JF + "hi"
|
|
|
|
|
wanted = "hbeforeaaahello\n\t nice\n\t worldaftbhi"
|
2012-01-22 13:31:51 -05:00
|
|
|
|
class Visual_InDefaultText_IndentBeforeTabstop_NoOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "hello\n\t ${1:${VISUAL}}\nend")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + JF + "hi"
|
|
|
|
|
wanted = "hello\n\t hello\n\t nice\n\t world\nendhi"
|
2012-01-18 04:23:42 -05:00
|
|
|
|
|
|
|
|
|
class Visual_LineSelect_WithTabStop(_VimTest):
|
|
|
|
|
snippets = ("test", "beg\n\t${VISUAL}\n\t${1:here_we_go}\nend")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + "super" + JF + "done"
|
|
|
|
|
wanted = "beg\n\thello\n\tnice\n\tworld\n\tsuper\nenddone"
|
2012-01-21 06:42:03 -05:00
|
|
|
|
class Visual_LineSelect_CheckIndentWithTS_NoOverwrite(_VimTest):
|
|
|
|
|
snippets = ("test", "beg\n\t${0:${VISUAL}}\nend")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX
|
|
|
|
|
wanted = "beg\n\thello\n\tnice\n\tworld\nend"
|
2014-02-19 15:49:33 -05:00
|
|
|
|
class Visual_LineSelect_DedentLine(_VimTest):
|
|
|
|
|
snippets = ("if", "if {\n\t${VISUAL}$0\n}")
|
|
|
|
|
keys = "if" + EX + "one\n\ttwo\n\tthree" + ESC + ARR_U*2 + "V" + ARR_D + EX + "\tif" + EX
|
|
|
|
|
wanted = "if {\n\tif {\n\t\tone\n\t\ttwo\n\t}\n\tthree\n}"
|
2012-02-12 06:15:54 -05:00
|
|
|
|
|
|
|
|
|
class VisualTransformation_SelectOneWord(_VimTest):
|
|
|
|
|
snippets = ("test", r"h${VISUAL/./\U$0\E/g}b")
|
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hBLABLUBb"
|
|
|
|
|
class VisualTransformationWithDefault_ExpandWithoutVisual(_VimTest):
|
2012-02-16 15:42:26 -05:00
|
|
|
|
snippets = ("test", r"h${VISUAL:world/./\U$0\E/g}b")
|
2012-02-12 06:15:54 -05:00
|
|
|
|
keys = "test" + EX + "hi"
|
|
|
|
|
wanted = "hWORLDbhi"
|
|
|
|
|
class VisualTransformationWithDefault_ExpandWithVisual(_VimTest):
|
2012-02-16 15:42:26 -05:00
|
|
|
|
snippets = ("test", r"h${VISUAL:world/./\U$0\E/g}b")
|
2012-02-12 06:15:54 -05:00
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "test" + EX
|
|
|
|
|
wanted = "hBLABLUBb"
|
|
|
|
|
class VisualTransformation_LineSelect_Simple(_VimTest):
|
|
|
|
|
snippets = ("test", r"h${VISUAL/./\U$0\E/g}b")
|
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX
|
|
|
|
|
wanted = "hHELLO\n NICE\n WORLDb"
|
|
|
|
|
class VisualTransformation_InDefaultText_LineSelect_NoOverwrite(_VimTest):
|
2012-02-16 15:42:26 -05:00
|
|
|
|
snippets = ("test", r"h${1:bef${VISUAL/./\U$0\E/g}aft}b")
|
2012-02-12 06:15:54 -05:00
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + JF + "hi"
|
|
|
|
|
wanted = "hbefHELLO\n NICE\n WORLDaftbhi"
|
|
|
|
|
class VisualTransformation_InDefaultText_LineSelect_Overwrite(_VimTest):
|
2012-02-16 15:42:26 -05:00
|
|
|
|
snippets = ("test", r"h${1:bef${VISUAL/./\U$0\E/g}aft}b")
|
2012-02-12 06:15:54 -05:00
|
|
|
|
keys = "hello\nnice\nworld" + ESC + "Vkk" + EX + "test" + EX + "jup" + JF + "hi"
|
|
|
|
|
wanted = "hjupbhi"
|
|
|
|
|
|
2012-01-18 04:23:42 -05:00
|
|
|
|
# End: ${VISUAL} #}}}
|
2012-01-16 05:30:20 -05:00
|
|
|
|
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# Recursive (Nested) Snippets {{{#
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class RecTabStops_SimpleCase_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "m" + EX + "hello" + JF + "world" + JF + "ups" + JF + "end"
|
|
|
|
|
wanted = "[ [ hello world ]ups end ]"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class RecTabStops_SimpleCaseLeaveSecondSecond_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "m" + EX + "hello" + JF + "world" + JF + JF + JF + "end"
|
|
|
|
|
wanted = "[ [ hello world ] sec ]end"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class RecTabStops_SimpleCaseLeaveFirstSecond_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "m" + EX + "hello" + JF + JF + JF + "world" + JF + "end"
|
|
|
|
|
wanted = "[ [ hello sec ] world ]end"
|
|
|
|
|
|
|
|
|
|
class RecTabStops_InnerWOTabStop_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "Just some Text"),
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "hi" + JF + "two" + JF + "end"
|
|
|
|
|
wanted = "[ Just some Texthi two ]end"
|
|
|
|
|
class RecTabStops_InnerWOTabStopTwiceDirectly_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "JST"),
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + " m1" + EX + "hi" + JF + "two" + JF + "end"
|
|
|
|
|
wanted = "[ JST JSThi two ]end"
|
|
|
|
|
class RecTabStops_InnerWOTabStopTwice_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "JST"),
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + JF + "m1" + EX + "hi" + JF + "end"
|
|
|
|
|
wanted = "[ JST JSThi ]end"
|
|
|
|
|
class RecTabStops_OuterOnlyWithZeroTS_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "A $0 B"),
|
|
|
|
|
("m1", "C $1 D $0 E"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "CD" + JF + "DE"
|
|
|
|
|
wanted = "A C CD D DE E B"
|
|
|
|
|
class RecTabStops_OuterOnlyWithZero_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "A $0 B"),
|
|
|
|
|
("m1", "C $1 D $0 E"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "CD" + JF + "DE"
|
|
|
|
|
wanted = "A C CD D DE E B"
|
|
|
|
|
class RecTabStops_ExpandedInZeroTS_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "A $0 B $1"),
|
|
|
|
|
("m1", "C $1 D $0 E"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "hi" + JF + "m1" + EX + "CD" + JF + "DE"
|
|
|
|
|
wanted = "A C CD D DE E B hi"
|
|
|
|
|
class RecTabStops_ExpandedInZeroTSTwice_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "A $0 B $1"),
|
|
|
|
|
("m1", "C $1 D $0 E"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "hi" + JF + "m" + EX + "again" + JF + "m1" + \
|
|
|
|
|
EX + "CD" + JF + "DE"
|
|
|
|
|
wanted = "A A C CD D DE E B again B hi"
|
|
|
|
|
class RecTabStops_ExpandedInZeroTSSecondTime_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "A $0 B $1"),
|
|
|
|
|
("m1", "C $1 D $0 E"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "hi" + JF + "m" + EX + "m1" + EX + "CD" + JF + "DE" + JF + "AB"
|
|
|
|
|
wanted = "A A AB B C CD D DE E B hi"
|
|
|
|
|
class RecTabsStops_TypeInZero_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("v", r"\vec{$1}", "Vector", "w"),
|
|
|
|
|
("frac", r"\frac{${1:one}}${0:zero}{${2:two}}", "Fractio", "w"),
|
|
|
|
|
)
|
|
|
|
|
keys = "v" + EX + "frac" + EX + "a" + JF + "b" + JF + "frac" + EX + "aa" + JF + JF + "cc" + JF + \
|
|
|
|
|
"hello frac" + EX + JF + JF + "world"
|
|
|
|
|
wanted = r"\vec{\frac{a}\frac{aa}cc{two}{b}}hello \frac{one}world{two}"
|
|
|
|
|
class RecTabsStops_TypeInZero2_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", r"_${0:explicit zero}", "snip", "i"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "hello m" + EX + "world m" + EX + "end"
|
|
|
|
|
wanted = r"_hello _world _end"
|
|
|
|
|
class RecTabsStops_BackspaceZero_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", r"${1:one}${0:explicit zero}${2:two}", "snip", "i"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + JF + JF + BS + "m" + EX
|
|
|
|
|
wanted = r"oneoneexplicit zerotwotwo"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RecTabStops_MirrorInnerSnippet_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "[ $1 $2 ] $1"),
|
|
|
|
|
("m1", "ASnip $1 ASnip $2 ASnip"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "Hallo" + JF + "Hi" + JF + "endone" + JF + "two" + JF + "totalend"
|
|
|
|
|
wanted = "[ ASnip Hallo ASnip Hi ASnipendone two ] ASnip Hallo ASnip Hi ASnipendonetotalend"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class RecTabStops_NotAtBeginningOfTS_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "hello m" + EX + "hi" + JF + "two" + JF + "ups" + JF + "three" + \
|
|
|
|
|
JF + "end"
|
|
|
|
|
wanted = "[ hello [ hi two ]ups three ]end"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class RecTabStops_InNewlineInTabstop_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "hello\nm" + EX + "hi" + JF + "two" + JF + "ups" + JF + "three" + \
|
|
|
|
|
JF + "end"
|
|
|
|
|
wanted = "[ hello\n[ hi two ]ups three ]end"
|
|
|
|
|
class RecTabStops_InNewlineInTabstopNotAtBeginOfLine_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
|
|
|
|
keys = "m" + EX + "hello\nhello again m" + EX + "hi" + JF + "two" + \
|
|
|
|
|
JF + "ups" + JF + "three" + JF + "end"
|
|
|
|
|
wanted = "[ hello\nhello again [ hi two ]ups three ]end"
|
|
|
|
|
|
|
|
|
|
class RecTabStops_InNewlineMultiline_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "M START\n$0\nM END")
|
|
|
|
|
keys = "m" + EX + "m" + EX
|
|
|
|
|
wanted = "M START\nM START\n\nM END\nM END"
|
|
|
|
|
class RecTabStops_InNewlineManualIndent_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "M START\n$0\nM END")
|
|
|
|
|
keys = "m" + EX + " m" + EX + "hi"
|
|
|
|
|
wanted = "M START\n M START\n hi\n M END\nM END"
|
|
|
|
|
class RecTabStops_InNewlineManualIndentTextInFront_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "M START\n$0\nM END")
|
|
|
|
|
keys = "m" + EX + " hallo m" + EX + "hi"
|
|
|
|
|
wanted = "M START\n hallo M START\n hi\n M END\nM END"
|
|
|
|
|
class RecTabStops_InNewlineMultilineWithIndent_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "M START\n $0\nM END")
|
|
|
|
|
keys = "m" + EX + "m" + EX + "hi"
|
|
|
|
|
wanted = "M START\n M START\n hi\n M END\nM END"
|
|
|
|
|
class RecTabStops_InNewlineMultilineWithNonZeroTS_ECR(_VimTest):
|
|
|
|
|
snippets = ("m", "M START\n $1\nM END -> $0")
|
|
|
|
|
keys = "m" + EX + "m" + EX + "hi" + JF + "hallo" + JF + "end"
|
|
|
|
|
wanted = "M START\n M START\n hi\n M END -> hallo\n" \
|
|
|
|
|
"M END -> end"
|
|
|
|
|
|
|
|
|
|
class RecTabStops_BarelyNotLeavingInner_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m" + EX + "a" + 3*ARR_L + JF + "hallo" + \
|
|
|
|
|
JF + "ups" + JF + "world" + JF + "end"
|
|
|
|
|
wanted = "[ [ a hallo ]ups world ]end"
|
|
|
|
|
class RecTabStops_LeavingInner_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m" + EX + "a" + 4*ARR_L + JF + "hallo" + \
|
|
|
|
|
JF + "world"
|
|
|
|
|
wanted = "[ [ a sec ] hallo ]world"
|
|
|
|
|
class RecTabStops_LeavingInnerInner_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m" + EX + "m" + EX + "a" + 4*ARR_L + JF + "hallo" + \
|
|
|
|
|
JF + "ups" + JF + "world" + JF + "end"
|
|
|
|
|
wanted = "[ [ [ a sec ] hallo ]ups world ]end"
|
|
|
|
|
class RecTabStops_LeavingInnerInnerTwo_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m" + EX + "m" + EX + "a" + 6*ARR_L + JF + "hallo" + \
|
|
|
|
|
JF + "end"
|
|
|
|
|
wanted = "[ [ [ a sec ] sec ] hallo ]end"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RecTabStops_ZeroTSisNothingSpecial_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "[ ${1:first} $0 ${2:sec} ]"),
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "one" + JF + "two" + \
|
|
|
|
|
JF + "three" + JF + "four" + JF + "end"
|
|
|
|
|
wanted = "[ [ one three two ] four ]end"
|
|
|
|
|
class RecTabStops_MirroredZeroTS_ECR(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "[ ${1:first} ${0:Year, some default text} $0 ${2:sec} ]"),
|
|
|
|
|
("m", "[ ${1:first} ${2:sec} ]"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + "one" + JF + "two" + \
|
|
|
|
|
JF + "three" + JF + "four" + JF + "end"
|
|
|
|
|
wanted = "[ [ one three three two ] four ]end"
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class RecTabStops_ChildTriggerContainsParentTextObjects(_VimTest):
|
2014-02-15 07:16:12 -05:00
|
|
|
|
# https://bugs.launchpad.net/bugs/1191617
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2013-06-21 16:12:39 -04:00
|
|
|
|
global !p
|
|
|
|
|
def complete(t, opts):
|
|
|
|
|
if t:
|
|
|
|
|
opts = [ q[len(t):] for q in opts if q.startswith(t) ]
|
|
|
|
|
if len(opts) == 0:
|
|
|
|
|
return ''
|
|
|
|
|
return opts[0] if len(opts) == 1 else "(" + '|'.join(opts) + ')'
|
|
|
|
|
def autocomplete_options(t, string, attr=None):
|
|
|
|
|
return complete(t[1], [opt for opt in attr if opt not in string])
|
|
|
|
|
endglobal
|
|
|
|
|
snippet /form_for(.*){([^|]*)/ "form_for html options" rw!
|
|
|
|
|
`!p
|
|
|
|
|
auto = autocomplete_options(t, match.group(2), attr=["id: ", "class: ", "title: "])
|
|
|
|
|
snip.rv = "form_for" + match.group(1) + "{"`$1`!p if (snip.c != auto) : snip.rv=auto`
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2013-06-29 09:44:02 -04:00
|
|
|
|
keys = "form_for user, namespace: some_namespace, html: {i" + EX + "i" + EX
|
|
|
|
|
wanted = "form_for user, namespace: some_namespace, html: {(id: |class: |title: )d: "
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Recursive (Nested) Snippets #}}}
|
2012-01-18 01:32:17 -05:00
|
|
|
|
# List Snippets {{{#
|
|
|
|
|
class _ListAllSnippets(_VimTest):
|
|
|
|
|
snippets = ( ("testblah", "BLAAH", "Say BLAH"),
|
|
|
|
|
("test", "TEST ONE", "Say tst one"),
|
|
|
|
|
("aloha", "OHEEEE", "Say OHEE"),
|
|
|
|
|
)
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_NothingTyped_ExpectCorrectResult(_ListAllSnippets):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "" + LS + "3\n"
|
|
|
|
|
wanted = "BLAAH"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_SpaceInFront_ExpectCorrectResult(_ListAllSnippets):
|
2012-02-01 15:39:33 -05:00
|
|
|
|
keys = " " + LS + "3\n"
|
|
|
|
|
wanted = " BLAAH"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_BraceInFront_ExpectCorrectResult(_ListAllSnippets):
|
2012-02-01 17:37:37 -05:00
|
|
|
|
keys = "} " + LS + "3\n"
|
|
|
|
|
wanted = "} BLAAH"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_testtyped_ExpectCorrectResult(_ListAllSnippets):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "hallo test" + LS + "2\n"
|
|
|
|
|
wanted = "hallo BLAAH"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_testtypedSecondOpt_ExpectCorrectResult(_ListAllSnippets):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "hallo test" + LS + "1\n"
|
|
|
|
|
wanted = "hallo TEST ONE"
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class ListAllAvailable_NonDefined_NoExpectionShouldBeRaised(_ListAllSnippets):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "hallo qualle" + LS + "Hi"
|
|
|
|
|
wanted = "hallo qualleHi"
|
|
|
|
|
# End: List Snippets #}}}
|
|
|
|
|
# Selecting Between Same Triggers {{{#
|
|
|
|
|
class _MultipleMatches(_VimTest):
|
|
|
|
|
snippets = ( ("test", "Case1", "This is Case 1"),
|
|
|
|
|
("test", "Case2", "This is Case 2") )
|
|
|
|
|
class Multiple_SimpleCaseSelectFirst_ECR(_MultipleMatches):
|
|
|
|
|
keys = "test" + EX + "1\n"
|
|
|
|
|
wanted = "Case1"
|
|
|
|
|
class Multiple_SimpleCaseSelectSecond_ECR(_MultipleMatches):
|
|
|
|
|
keys = "test" + EX + "2\n"
|
|
|
|
|
wanted = "Case2"
|
|
|
|
|
class Multiple_SimpleCaseSelectTooHigh_ESelectLast(_MultipleMatches):
|
|
|
|
|
keys = "test" + EX + "5\n"
|
|
|
|
|
wanted = "Case2"
|
|
|
|
|
class Multiple_SimpleCaseSelectZero_EEscape(_MultipleMatches):
|
|
|
|
|
keys = "test" + EX + "0\n" + "hi"
|
|
|
|
|
wanted = "testhi"
|
|
|
|
|
class Multiple_SimpleCaseEscapeOut_ECR(_MultipleMatches):
|
|
|
|
|
keys = "test" + EX + ESC + "hi"
|
|
|
|
|
wanted = "testhi"
|
|
|
|
|
class Multiple_ManySnippetsOneTrigger_ECR(_VimTest):
|
|
|
|
|
# Snippet definition {{{#
|
|
|
|
|
snippets = (
|
|
|
|
|
("test", "Case1", "This is Case 1"),
|
|
|
|
|
("test", "Case2", "This is Case 2"),
|
|
|
|
|
("test", "Case3", "This is Case 3"),
|
|
|
|
|
("test", "Case4", "This is Case 4"),
|
|
|
|
|
("test", "Case5", "This is Case 5"),
|
|
|
|
|
("test", "Case6", "This is Case 6"),
|
|
|
|
|
("test", "Case7", "This is Case 7"),
|
|
|
|
|
("test", "Case8", "This is Case 8"),
|
|
|
|
|
("test", "Case9", "This is Case 9"),
|
|
|
|
|
("test", "Case10", "This is Case 10"),
|
|
|
|
|
("test", "Case11", "This is Case 11"),
|
|
|
|
|
("test", "Case12", "This is Case 12"),
|
|
|
|
|
("test", "Case13", "This is Case 13"),
|
|
|
|
|
("test", "Case14", "This is Case 14"),
|
|
|
|
|
("test", "Case15", "This is Case 15"),
|
|
|
|
|
("test", "Case16", "This is Case 16"),
|
|
|
|
|
("test", "Case17", "This is Case 17"),
|
|
|
|
|
("test", "Case18", "This is Case 18"),
|
|
|
|
|
("test", "Case19", "This is Case 19"),
|
|
|
|
|
("test", "Case20", "This is Case 20"),
|
|
|
|
|
("test", "Case21", "This is Case 21"),
|
|
|
|
|
("test", "Case22", "This is Case 22"),
|
|
|
|
|
("test", "Case23", "This is Case 23"),
|
|
|
|
|
("test", "Case24", "This is Case 24"),
|
|
|
|
|
("test", "Case25", "This is Case 25"),
|
|
|
|
|
("test", "Case26", "This is Case 26"),
|
|
|
|
|
("test", "Case27", "This is Case 27"),
|
|
|
|
|
("test", "Case28", "This is Case 28"),
|
|
|
|
|
("test", "Case29", "This is Case 29"),
|
|
|
|
|
) #}}}
|
|
|
|
|
keys = "test" + EX + " " + ESC + ESC + "ahi"
|
|
|
|
|
wanted = "testhi"
|
|
|
|
|
# End: Selecting Between Same Triggers #}}}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
# Snippet Priority {{{#
|
|
|
|
|
class SnippetPriorities_MultiWordTriggerOverwriteExisting(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test me", "${1:Hallo}", "Types Hallo"),
|
|
|
|
|
("test me", "${1:World}", "Types World"),
|
|
|
|
|
("test me", "We overwrite", "Overwrite the two", "", 1),
|
|
|
|
|
)
|
|
|
|
|
keys = "test me" + EX
|
|
|
|
|
wanted = "We overwrite"
|
|
|
|
|
class SnippetPriorities_DoNotCareAboutNonMatchings(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test1", "Hallo", "Types Hallo"),
|
|
|
|
|
("test2", "We overwrite", "Overwrite the two", "", 1),
|
|
|
|
|
)
|
|
|
|
|
keys = "test1" + EX
|
|
|
|
|
wanted = "Hallo"
|
|
|
|
|
class SnippetPriorities_OverwriteExisting(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "${1:Hallo}", "Types Hallo"),
|
|
|
|
|
("test", "${1:World}", "Types World"),
|
2014-02-19 15:04:52 -05:00
|
|
|
|
("test", "We overwrite", "Overwrite the two", "", 1),
|
2012-01-18 01:32:17 -05:00
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "We overwrite"
|
2014-02-19 15:04:52 -05:00
|
|
|
|
class SnippetPriorities_OverwriteTwice_ECR(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "${1:Hallo}", "Types Hallo"),
|
|
|
|
|
("test", "${1:World}", "Types World"),
|
2014-02-19 15:04:52 -05:00
|
|
|
|
("test", "We overwrite", "Overwrite the two", "", 1),
|
|
|
|
|
("test", "again", "Overwrite again", "", 2),
|
2012-01-18 01:32:17 -05:00
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "again"
|
2014-02-19 15:04:52 -05:00
|
|
|
|
class SnippetPriorities_OverwriteThenChoose_ECR(_VimTest):
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "${1:Hallo}", "Types Hallo"),
|
|
|
|
|
("test", "${1:World}", "Types World"),
|
2014-02-19 15:04:52 -05:00
|
|
|
|
("test", "We overwrite", "Overwrite the two", "", 1),
|
|
|
|
|
("test", "No overwrite", "Not overwritten", "", 1),
|
2012-01-18 01:32:17 -05:00
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX + "1\n\n" + "test" + EX + "2\n"
|
|
|
|
|
wanted = "We overwrite\nNo overwrite"
|
2014-02-19 15:04:52 -05:00
|
|
|
|
class SnippetPriorities_AddedHasHigherThanFile(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
snippet test "Test Snippet" b
|
|
|
|
|
This is a test snippet
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "We overwrite", "Overwrite the two", "", 1),
|
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "We overwrite"
|
|
|
|
|
class SnippetPriorities_FileHasHigherThanAdded(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
snippet test "Test Snippet" b
|
|
|
|
|
This is a test snippet
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "We do not overwrite", "Overwrite the two", "", -1),
|
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "This is a test snippet"
|
|
|
|
|
class SnippetPriorities_FileHasHigherThanAdded(_VimTest):
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2014-02-19 15:04:52 -05:00
|
|
|
|
priority -3
|
|
|
|
|
snippet test "Test Snippet" b
|
|
|
|
|
This is a test snippet
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2014-02-19 15:04:52 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("test", "We overwrite", "Overwrite the two", "", -5),
|
|
|
|
|
)
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "This is a test snippet"
|
|
|
|
|
# End: Snippet Priority #}}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Snippet Options {{{#
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class SnippetOptions_OnlyExpandWhenWSInFront_Expand(_VimTest):
|
|
|
|
|
snippets = ("test", "Expand me!", "", "b")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_OnlyExpandWhenWSInFront_Expand2(_VimTest):
|
|
|
|
|
snippets = ("test", "Expand me!", "", "b")
|
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " Expand me!"
|
|
|
|
|
class SnippetOptions_OnlyExpandWhenWSInFront_DontExpand(_VimTest):
|
|
|
|
|
snippets = ("test", "Expand me!", "", "b")
|
|
|
|
|
keys = "a test" + EX
|
|
|
|
|
wanted = "a test" + EX
|
|
|
|
|
class SnippetOptions_OnlyExpandWhenWSInFront_OneWithOneWO(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test", "Expand me!", "", "b"),
|
|
|
|
|
("test", "not at beginning", "", ""),
|
|
|
|
|
)
|
|
|
|
|
keys = "a test" + EX
|
|
|
|
|
wanted = "a not at beginning"
|
|
|
|
|
class SnippetOptions_OnlyExpandWhenWSInFront_OneWithOneWOChoose(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test", "Expand me!", "", "b"),
|
|
|
|
|
("test", "not at beginning", "", ""),
|
|
|
|
|
)
|
|
|
|
|
keys = " test" + EX + "1\n"
|
|
|
|
|
wanted = " Expand me!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SnippetOptions_ExpandInwordSnippets_SimpleExpand(_VimTest):
|
|
|
|
|
snippets = (("test", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "atest" + EX
|
|
|
|
|
wanted = "aExpand me!"
|
|
|
|
|
class SnippetOptions_ExpandInwordSnippets_ExpandSingle(_VimTest):
|
|
|
|
|
snippets = (("test", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandInwordSnippetsWithOtherChars_Expand(_VimTest):
|
|
|
|
|
snippets = (("test", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "$test" + EX
|
|
|
|
|
wanted = "$Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandInwordSnippetsWithOtherChars_Expand2(_VimTest):
|
|
|
|
|
snippets = (("test", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "-test" + EX
|
|
|
|
|
wanted = "-Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandInwordSnippetsWithOtherChars_Expand3(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-18 01:32:17 -05:00
|
|
|
|
snippets = (("test", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "ßßtest" + EX
|
|
|
|
|
wanted = "ßßExpand me!"
|
|
|
|
|
|
|
|
|
|
class _SnippetOptions_ExpandWordSnippets(_VimTest):
|
|
|
|
|
snippets = (("test", "Expand me!", "", "w"), )
|
|
|
|
|
class SnippetOptions_ExpandWordSnippets_NormalExpand(
|
|
|
|
|
_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandWordSnippets_NoExpand(
|
|
|
|
|
_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "atest" + EX
|
|
|
|
|
wanted = "atest" + EX
|
|
|
|
|
class SnippetOptions_ExpandWordSnippets_ExpandSuffix(
|
|
|
|
|
_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "a-test" + EX
|
|
|
|
|
wanted = "a-Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandWordSnippets_ExpandSuffix2(
|
|
|
|
|
_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "a(test" + EX
|
|
|
|
|
wanted = "a(Expand me!"
|
|
|
|
|
class SnippetOptions_ExpandWordSnippets_ExpandSuffix3(
|
|
|
|
|
_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "[[test" + EX
|
|
|
|
|
wanted = "[[Expand me!"
|
|
|
|
|
|
|
|
|
|
class _No_Tab_Expand(_VimTest):
|
|
|
|
|
snippets = ("test", "\t\tExpand\tme!\t", "", "t")
|
|
|
|
|
class No_Tab_Expand_Simple(_No_Tab_Expand):
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_Leading_Spaces(_No_Tab_Expand):
|
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " \t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_Leading_Tabs(_No_Tab_Expand):
|
|
|
|
|
keys = "\ttest" + EX
|
|
|
|
|
wanted = "\t\t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_No_TS(_No_Tab_Expand):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set sts=3")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_ET(_No_Tab_Expand):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_ET_Leading_Spaces(_No_Tab_Expand):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = " test" + EX
|
|
|
|
|
wanted = " \t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_ET_SW(_No_Tab_Expand):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=8")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\t\tExpand\tme!\t"
|
|
|
|
|
class No_Tab_Expand_ET_SW_TS(_No_Tab_Expand):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set sts=3")
|
|
|
|
|
vim_config.append("set ts=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "\t\tExpand\tme!\t"
|
|
|
|
|
|
2012-03-11 12:30:05 -04:00
|
|
|
|
class _TabExpand_RealWorld(object):
|
|
|
|
|
snippets = ("hi",
|
|
|
|
|
r"""hi
|
|
|
|
|
`!p snip.rv="i1\n"
|
|
|
|
|
snip.rv += snip.mkline("i1\n")
|
|
|
|
|
snip.shift(1)
|
|
|
|
|
snip.rv += snip.mkline("i2\n")
|
|
|
|
|
snip.unshift(2)
|
|
|
|
|
snip.rv += snip.mkline("i0\n")
|
|
|
|
|
snip.shift(3)
|
|
|
|
|
snip.rv += snip.mkline("i3")`
|
|
|
|
|
snip.rv = repr(snip.rv)
|
|
|
|
|
End""")
|
|
|
|
|
|
|
|
|
|
class No_Tab_Expand_RealWorld(_TabExpand_RealWorld,_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set noexpandtab")
|
2012-03-24 15:15:43 -04:00
|
|
|
|
keys = "\t\thi" + EX
|
|
|
|
|
wanted = """\t\thi
|
|
|
|
|
\t\ti1
|
|
|
|
|
\t\ti1
|
|
|
|
|
\t\t\ti2
|
|
|
|
|
\ti0
|
|
|
|
|
\t\t\t\ti3
|
|
|
|
|
\t\tsnip.rv = repr(snip.rv)
|
|
|
|
|
\t\tEnd"""
|
2012-03-11 12:30:05 -04:00
|
|
|
|
|
2012-01-18 01:32:17 -05:00
|
|
|
|
|
|
|
|
|
class SnippetOptions_Regex_Expand(_VimTest):
|
|
|
|
|
snippets = ("(test)", "Expand me!", "", "r")
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_Regex_Multiple(_VimTest):
|
|
|
|
|
snippets = ("(test *)+", "Expand me!", "", "r")
|
|
|
|
|
keys = "test test test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
|
|
|
|
|
class _Regex_Self(_VimTest):
|
2012-01-29 11:03:11 -05:00
|
|
|
|
snippets = ("((?<=\W)|^)(\.)", "self.", "", "r")
|
2012-01-18 01:32:17 -05:00
|
|
|
|
class SnippetOptions_Regex_Self_Start(_Regex_Self):
|
|
|
|
|
keys = "." + EX
|
|
|
|
|
wanted = "self."
|
|
|
|
|
class SnippetOptions_Regex_Self_Space(_Regex_Self):
|
|
|
|
|
keys = " ." + EX
|
|
|
|
|
wanted = " self."
|
|
|
|
|
class SnippetOptions_Regex_Self_TextAfter(_Regex_Self):
|
|
|
|
|
keys = " .a" + EX
|
|
|
|
|
wanted = " .a" + EX
|
|
|
|
|
class SnippetOptions_Regex_Self_TextBefore(_Regex_Self):
|
|
|
|
|
keys = "a." + EX
|
|
|
|
|
wanted = "a." + EX
|
|
|
|
|
class SnippetOptions_Regex_PythonBlockMatch(_VimTest):
|
|
|
|
|
snippets = (r"([abc]+)([def]+)", r"""`!p m = match
|
|
|
|
|
snip.rv += m.group(2)
|
|
|
|
|
snip.rv += m.group(1)
|
|
|
|
|
`""", "", "r")
|
|
|
|
|
keys = "test cabfed" + EX
|
|
|
|
|
wanted = "test fedcab"
|
|
|
|
|
class SnippetOptions_Regex_PythonBlockNoMatch(_VimTest):
|
|
|
|
|
snippets = (r"cabfed", r"""`!p snip.rv = match or "No match"`""")
|
|
|
|
|
keys = "test cabfed" + EX
|
|
|
|
|
wanted = "test No match"
|
|
|
|
|
# Tests for Bug #691575
|
|
|
|
|
class SnippetOptions_Regex_SameLine_Long_End(_VimTest):
|
|
|
|
|
snippets = ("(test.*)", "Expand me!", "", "r")
|
|
|
|
|
keys = "test test abc" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_Regex_SameLine_Long_Start(_VimTest):
|
|
|
|
|
snippets = ("(.*test)", "Expand me!", "", "r")
|
|
|
|
|
keys = "abc test test" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class SnippetOptions_Regex_SameLine_Simple(_VimTest):
|
|
|
|
|
snippets = ("(test)", "Expand me!", "", "r")
|
|
|
|
|
keys = "abc test test" + EX
|
|
|
|
|
wanted = "abc test Expand me!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MultiWordSnippet_Simple(_VimTest):
|
|
|
|
|
snippets = ("test me", "Expand me!")
|
|
|
|
|
keys = "test me" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class MultiWord_SnippetOptions_OnlyExpandWhenWSInFront_Expand(_VimTest):
|
|
|
|
|
snippets = ("test it", "Expand me!", "", "b")
|
|
|
|
|
keys = "test it" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class MultiWord_SnippetOptions_OnlyExpandWhenWSInFront_Expand2(_VimTest):
|
|
|
|
|
snippets = ("test it", "Expand me!", "", "b")
|
|
|
|
|
keys = " test it" + EX
|
|
|
|
|
wanted = " Expand me!"
|
|
|
|
|
class MultiWord_SnippetOptions_OnlyExpandWhenWSInFront_DontExpand(_VimTest):
|
|
|
|
|
snippets = ("test it", "Expand me!", "", "b")
|
|
|
|
|
keys = "a test it" + EX
|
|
|
|
|
wanted = "a test it" + EX
|
|
|
|
|
class MultiWord_SnippetOptions_OnlyExpandWhenWSInFront_OneWithOneWO(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test it", "Expand me!", "", "b"),
|
|
|
|
|
("test it", "not at beginning", "", ""),
|
|
|
|
|
)
|
|
|
|
|
keys = "a test it" + EX
|
|
|
|
|
wanted = "a not at beginning"
|
|
|
|
|
class MultiWord_SnippetOptions_OnlyExpandWhenWSInFront_OneWithOneWOChoose(_VimTest):
|
|
|
|
|
snippets = (
|
|
|
|
|
("test it", "Expand me!", "", "b"),
|
|
|
|
|
("test it", "not at beginning", "", ""),
|
|
|
|
|
)
|
|
|
|
|
keys = " test it" + EX + "1\n"
|
|
|
|
|
wanted = " Expand me!"
|
|
|
|
|
|
|
|
|
|
class MultiWord_SnippetOptions_ExpandInwordSnippets_SimpleExpand(_VimTest):
|
|
|
|
|
snippets = (("test it", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "atest it" + EX
|
|
|
|
|
wanted = "aExpand me!"
|
|
|
|
|
class MultiWord_SnippetOptions_ExpandInwordSnippets_ExpandSingle(_VimTest):
|
|
|
|
|
snippets = (("test it", "Expand me!", "", "i"), )
|
|
|
|
|
keys = "test it" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
|
|
|
|
|
class _MultiWord_SnippetOptions_ExpandWordSnippets(_VimTest):
|
|
|
|
|
snippets = (("test it", "Expand me!", "", "w"), )
|
|
|
|
|
class MultiWord_SnippetOptions_ExpandWordSnippets_NormalExpand(
|
|
|
|
|
_MultiWord_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "test it" + EX
|
|
|
|
|
wanted = "Expand me!"
|
|
|
|
|
class MultiWord_SnippetOptions_ExpandWordSnippets_NoExpand(
|
|
|
|
|
_MultiWord_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "atest it" + EX
|
|
|
|
|
wanted = "atest it" + EX
|
|
|
|
|
class MultiWord_SnippetOptions_ExpandWordSnippets_ExpandSuffix(
|
|
|
|
|
_MultiWord_SnippetOptions_ExpandWordSnippets):
|
|
|
|
|
keys = "a-test it" + EX
|
|
|
|
|
wanted = "a-Expand me!"
|
|
|
|
|
# Snippet Options #}}}
|
2012-01-16 05:30:20 -05:00
|
|
|
|
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# Anonymous Expansion {{{#
|
|
|
|
|
class _AnonBase(_VimTest):
|
|
|
|
|
args = ""
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("inoremap <silent> %s <C-R>=UltiSnips#Anon(%s)<cr>"
|
|
|
|
|
% (EA, self.args))
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
class Anon_NoTrigger_Simple(_AnonBase):
|
|
|
|
|
args = '"simple expand"'
|
|
|
|
|
keys = "abc" + EA
|
|
|
|
|
wanted = "abcsimple expand"
|
|
|
|
|
|
|
|
|
|
class Anon_NoTrigger_AfterSpace(_AnonBase):
|
|
|
|
|
args = '"simple expand"'
|
|
|
|
|
keys = "abc " + EA
|
|
|
|
|
wanted = "abc simple expand"
|
|
|
|
|
|
|
|
|
|
class Anon_NoTrigger_BeginningOfLine(_AnonBase):
|
|
|
|
|
args = r"':latex:\`$1\`$0'"
|
|
|
|
|
keys = EA + "Hello" + JF + "World"
|
|
|
|
|
wanted = ":latex:`Hello`World"
|
|
|
|
|
class Anon_NoTrigger_FirstCharOfLine(_AnonBase):
|
|
|
|
|
args = r"':latex:\`$1\`$0'"
|
|
|
|
|
keys = " " + EA + "Hello" + JF + "World"
|
|
|
|
|
wanted = " :latex:`Hello`World"
|
|
|
|
|
|
|
|
|
|
class Anon_NoTrigger_Multi(_AnonBase):
|
|
|
|
|
args = '"simple $1 expand $1 $0"'
|
|
|
|
|
keys = "abc" + EA + "123" + JF + "456"
|
|
|
|
|
wanted = "abcsimple 123 expand 123 456"
|
|
|
|
|
|
|
|
|
|
class Anon_Trigger_Multi(_AnonBase):
|
|
|
|
|
args = '"simple $1 expand $1 $0", "abc"'
|
|
|
|
|
keys = "123 abc" + EA + "123" + JF + "456"
|
|
|
|
|
wanted = "123 simple 123 expand 123 456"
|
|
|
|
|
|
|
|
|
|
class Anon_Trigger_Simple(_AnonBase):
|
|
|
|
|
args = '"simple expand", "abc"'
|
|
|
|
|
keys = "abc" + EA
|
|
|
|
|
wanted = "simple expand"
|
|
|
|
|
|
|
|
|
|
class Anon_Trigger_Twice(_AnonBase):
|
|
|
|
|
args = '"simple expand", "abc"'
|
|
|
|
|
keys = "abc" + EA + "\nabc" + EX
|
|
|
|
|
wanted = "simple expand\nabc" + EX
|
|
|
|
|
|
|
|
|
|
class Anon_Trigger_Opts(_AnonBase):
|
|
|
|
|
args = '"simple expand", ".*abc", "desc", "r"'
|
|
|
|
|
keys = "blah blah abc" + EA
|
|
|
|
|
wanted = "simple expand"
|
|
|
|
|
# End: Anonymous Expansion #}}}
|
|
|
|
|
# AddSnippet Function {{{#
|
|
|
|
|
class _AddFuncBase(_VimTest):
|
|
|
|
|
args = ""
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append(":call UltiSnips#AddSnippetWithPriority(%s)" %
|
|
|
|
|
self.args)
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
class AddFunc_Simple(_AddFuncBase):
|
2014-02-19 15:04:52 -05:00
|
|
|
|
args = '"test", "simple expand", "desc", "", "all", 0'
|
2012-01-18 03:30:34 -05:00
|
|
|
|
keys = "abc test" + EX
|
|
|
|
|
wanted = "abc simple expand"
|
|
|
|
|
|
|
|
|
|
class AddFunc_Opt(_AddFuncBase):
|
2014-02-19 15:04:52 -05:00
|
|
|
|
args = '".*test", "simple expand", "desc", "r", "all", 0'
|
2012-01-18 03:30:34 -05:00
|
|
|
|
keys = "abc test" + EX
|
|
|
|
|
wanted = "simple expand"
|
|
|
|
|
# End: AddSnippet Function #}}}
|
|
|
|
|
|
|
|
|
|
# ExpandTab {{{#
|
|
|
|
|
class _ExpandTabs(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set sw=3")
|
|
|
|
|
vim_config.append("set expandtab")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
class RecTabStopsWithExpandtab_SimpleExample_ECR(_ExpandTabs):
|
|
|
|
|
snippets = ("m", "\tBlaahblah \t\t ")
|
|
|
|
|
keys = "m" + EX
|
|
|
|
|
wanted = " Blaahblah \t\t "
|
|
|
|
|
|
|
|
|
|
class RecTabStopsWithExpandtab_SpecialIndentProblem_ECR(_ExpandTabs):
|
|
|
|
|
# Windows indents the Something line after pressing return, though it
|
|
|
|
|
# shouldn't because it contains a manual indent. All other vim versions do
|
|
|
|
|
# not do this. Windows vim does not interpret the changes made by :py as
|
|
|
|
|
# changes made 'manually', while the other vim version seem to do so. Since
|
|
|
|
|
# the fault is not with UltiSnips, we simply skip this test on windows
|
|
|
|
|
# completely.
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows()
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = (
|
|
|
|
|
("m1", "Something"),
|
|
|
|
|
("m", "\t$0"),
|
|
|
|
|
)
|
|
|
|
|
keys = "m" + EX + "m1" + EX + '\nHallo'
|
|
|
|
|
wanted = " Something\n Hallo"
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
|
|
|
|
_ExpandTabs._extra_options_pre_init(self, vim_config)
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set indentkeys=o,O,*<Return>,<>>,{,}")
|
|
|
|
|
vim_config.append("set indentexpr=8")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: ExpandTab #}}}
|
|
|
|
|
# Proper Indenting {{{#
|
|
|
|
|
class ProperIndenting_SimpleCase_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "for\n blah")
|
|
|
|
|
keys = " test" + EX + "Hui"
|
|
|
|
|
wanted = " for\n blahHui"
|
|
|
|
|
class ProperIndenting_SingleLineNoReindenting_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "hui")
|
|
|
|
|
keys = " test" + EX + "blah"
|
|
|
|
|
wanted = " huiblah"
|
|
|
|
|
class ProperIndenting_AutoIndentAndNewline_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "hui")
|
|
|
|
|
keys = " test" + EX + "\n"+ "blah"
|
|
|
|
|
wanted = " hui\n blah"
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set autoindent")
|
2013-04-14 07:09:33 -04:00
|
|
|
|
# Test for bug 1073816
|
2014-02-14 17:58:00 -05:00
|
|
|
|
class ProperIndenting_FirstLineInFile_ECR(_VimTest):
|
2013-04-14 07:09:33 -04:00
|
|
|
|
text_before = ""
|
|
|
|
|
text_after = ""
|
2014-02-20 14:08:47 -05:00
|
|
|
|
files = { "us/all.snippets": r"""
|
2013-04-14 07:09:33 -04:00
|
|
|
|
global !p
|
|
|
|
|
def complete(t, opts):
|
|
|
|
|
if t:
|
|
|
|
|
opts = [ m[len(t):] for m in opts if m.startswith(t) ]
|
|
|
|
|
if len(opts) == 1:
|
|
|
|
|
return opts[0]
|
|
|
|
|
elif len(opts) > 1:
|
|
|
|
|
return "(" + "|".join(opts) + ")"
|
|
|
|
|
else:
|
|
|
|
|
return ""
|
|
|
|
|
endglobal
|
|
|
|
|
|
|
|
|
|
snippet '^#?inc' "#include <>" !r
|
|
|
|
|
#include <$1`!p snip.rv = complete(t[1], ['cassert', 'cstdio', 'cstdlib', 'cstring', 'fstream', 'iostream', 'sstream'])`>
|
|
|
|
|
endsnippet
|
2014-02-20 14:08:47 -05:00
|
|
|
|
"""}
|
2013-04-14 07:09:33 -04:00
|
|
|
|
keys = "inc" + EX + "foo"
|
|
|
|
|
wanted = "#include <foo>"
|
|
|
|
|
class ProperIndenting_FirstLineInFileComplete_ECR(ProperIndenting_FirstLineInFile_ECR):
|
|
|
|
|
keys = "inc" + EX + "cstdl"
|
|
|
|
|
wanted = "#include <cstdlib>"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Proper Indenting #}}}
|
|
|
|
|
# Format options tests {{{#
|
|
|
|
|
class _FormatoptionsBase(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set tw=20")
|
|
|
|
|
vim_config.append("set fo=lrqntc")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class FOSimple_Break_ExpectCorrectResult(_FormatoptionsBase):
|
2012-01-27 17:10:56 -05:00
|
|
|
|
snippets = ("test", "${1:longer expand}\n$1\n$0", "", "f")
|
|
|
|
|
keys = "test" + EX + "This is a longer text that should wrap as formatoptions are enabled" + JF + "end"
|
|
|
|
|
wanted = "This is a longer\ntext that should\nwrap as\nformatoptions are\nenabled\n" + \
|
|
|
|
|
"This is a longer\ntext that should\nwrap as\nformatoptions are\nenabled\n" + "end"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class FOTextBeforeAndAfter_ExpectCorrectResult(_FormatoptionsBase):
|
2012-01-27 17:10:56 -05:00
|
|
|
|
snippets = ("test", "Before${1:longer expand}After\nstart$1end")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
keys = "test" + EX + "This is a longer text that should wrap"
|
|
|
|
|
wanted = \
|
|
|
|
|
"""BeforeThis is a
|
|
|
|
|
longer text that
|
|
|
|
|
should wrapAfter
|
|
|
|
|
startThis is a
|
|
|
|
|
longer text that
|
|
|
|
|
should wrapend"""
|
|
|
|
|
|
|
|
|
|
|
2014-02-15 07:16:12 -05:00
|
|
|
|
# Tests for https://bugs.launchpad.net/bugs/719998
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class FOTextAfter_ExpectCorrectResult(_FormatoptionsBase):
|
2012-01-27 17:10:56 -05:00
|
|
|
|
snippets = ("test", "${1:longer expand}after\nstart$1end")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
keys = ("test" + EX + "This is a longer snippet that should wrap properly "
|
|
|
|
|
"and the mirror below should work as well")
|
|
|
|
|
wanted = \
|
|
|
|
|
"""This is a longer
|
|
|
|
|
snippet that should
|
|
|
|
|
wrap properly and
|
|
|
|
|
the mirror below
|
|
|
|
|
should work as wellafter
|
|
|
|
|
startThis is a longer
|
|
|
|
|
snippet that should
|
|
|
|
|
wrap properly and
|
|
|
|
|
the mirror below
|
|
|
|
|
should work as wellend"""
|
|
|
|
|
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class FOWrapOnLongWord_ExpectCorrectResult(_FormatoptionsBase):
|
2012-01-27 17:10:56 -05:00
|
|
|
|
snippets = ("test", "${1:longer expand}after\nstart$1end")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
keys = ("test" + EX + "This is a longersnippet that should wrap properly")
|
|
|
|
|
wanted = \
|
|
|
|
|
"""This is a
|
|
|
|
|
longersnippet that
|
|
|
|
|
should wrap properlyafter
|
|
|
|
|
startThis is a
|
|
|
|
|
longersnippet that
|
|
|
|
|
should wrap properlyend"""
|
|
|
|
|
# End: Format options tests #}}}
|
|
|
|
|
# Langmap Handling {{{#
|
|
|
|
|
# Test for bug 501727 #
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TestNonEmptyLangmap_ExpectCorrectResult(_VimTest):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("testme",
|
|
|
|
|
"""my snipped ${1:some_default}
|
|
|
|
|
and a mirror: $1
|
|
|
|
|
$2...$3
|
|
|
|
|
$0""")
|
|
|
|
|
keys = "testme" + EX + "hi1" + JF + "hi2" + JF + "hi3" + JF + "hi4"
|
|
|
|
|
wanted ="""my snipped hi1
|
|
|
|
|
and a mirror: hi1
|
|
|
|
|
hi2...hi3
|
|
|
|
|
hi4"""
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set langmap=dj,rk,nl,ln,jd,kr,DJ,RK,NL,LN,JD,KR")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
2014-02-17 14:55:39 -05:00
|
|
|
|
# Test for https://bugs.launchpad.net/bugs/501727 #
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TestNonEmptyLangmapWithSemi_ExpectCorrectResult(_VimTest):
|
2012-08-15 08:13:50 -04:00
|
|
|
|
snippets = ("testme",
|
|
|
|
|
"""my snipped ${1:some_default}
|
|
|
|
|
and a mirror: $1
|
|
|
|
|
$2...$3
|
|
|
|
|
$0""")
|
|
|
|
|
keys = "testme" + EX + "hi;" + JF + "hi2" + JF + "hi3" + JF + "hi4" + ESC + ";Hello"
|
|
|
|
|
wanted ="""my snipped hi;
|
|
|
|
|
and a mirror: hi;
|
|
|
|
|
hi2...hi3
|
|
|
|
|
hi4Hello"""
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def _before_test(self):
|
|
|
|
|
self.vim.send(":set langmap=\\\\;;A\n")
|
2012-08-15 08:13:50 -04:00
|
|
|
|
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# Test for bug 871357 #
|
2014-02-23 05:19:11 -05:00
|
|
|
|
class TestLangmapWithUtf8_ExpectCorrectResult(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows() # SendKeys can't send UTF characters
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("testme",
|
|
|
|
|
"""my snipped ${1:some_default}
|
|
|
|
|
and a mirror: $1
|
|
|
|
|
$2...$3
|
|
|
|
|
$0""")
|
|
|
|
|
keys = "testme" + EX + "hi1" + JF + "hi2" + JF + "hi3" + JF + "hi4"
|
|
|
|
|
wanted ="""my snipped hi1
|
|
|
|
|
and a mirror: hi1
|
|
|
|
|
hi2...hi3
|
|
|
|
|
hi4"""
|
|
|
|
|
|
2014-02-20 17:06:58 -05:00
|
|
|
|
def _before_test(self):
|
|
|
|
|
self.vim.send(":set langmap=йq,цw,уe,кr,еt,нy,гu,шi,щo,зp,х[,ъ],фa,ыs,вd,аf,пg,рh,оj,лk,дl,ж\\;,э',яz,чx,сc,мv,иb,тn,ьm,ю.,ё',ЙQ,ЦW,УE,КR,ЕT,НY,ГU,ШI,ЩO,ЗP,Х\{,Ъ\},ФA,ЫS,ВD,АF,ПG,РH,ОJ,ЛK,ДL,Ж\:,Э\",ЯZ,ЧX,СC,МV,ИB,ТN,ЬM,Б\<,Ю\>\n")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
# End: Langmap Handling #}}}
|
|
|
|
|
# Unmap SelectMode Mappings {{{#
|
|
|
|
|
# Test for bug 427298 #
|
|
|
|
|
class _SelectModeMappings(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:World}")
|
|
|
|
|
keys = "test" + EX + "Hello"
|
|
|
|
|
wanted = "Hello"
|
|
|
|
|
maps = ("", "")
|
|
|
|
|
buffer_maps = ("", "")
|
|
|
|
|
do_unmapping = True
|
|
|
|
|
ignores = []
|
|
|
|
|
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append(":let g:UltiSnipsRemoveSelectModeMappings=%i" % int(self.do_unmapping))
|
|
|
|
|
vim_config.append(":let g:UltiSnipsMappingsToIgnore=%s" % repr(self.ignores))
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
if not isinstance(self.maps[0], tuple):
|
|
|
|
|
self.maps = (self.maps,)
|
|
|
|
|
if not isinstance(self.buffer_maps[0], tuple):
|
|
|
|
|
self.buffer_maps = (self.buffer_maps,)
|
|
|
|
|
|
|
|
|
|
for key, m in self.maps:
|
|
|
|
|
if not len(key): continue
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append(":smap %s %s" % (key,m))
|
2012-01-18 03:30:34 -05:00
|
|
|
|
for key, m in self.buffer_maps:
|
|
|
|
|
if not len(key): continue
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append(":smap <buffer> %s %s" % (key,m))
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
class SelectModeMappings_RemoveBeforeSelecting_ECR(_SelectModeMappings):
|
|
|
|
|
maps = ("H", "x")
|
|
|
|
|
wanted = "Hello"
|
|
|
|
|
class SelectModeMappings_DisableRemoveBeforeSelecting_ECR(_SelectModeMappings):
|
|
|
|
|
do_unmapping = False
|
|
|
|
|
maps = ("H", "x")
|
|
|
|
|
wanted = "xello"
|
|
|
|
|
class SelectModeMappings_IgnoreMappings_ECR(_SelectModeMappings):
|
|
|
|
|
ignores = ["e"]
|
|
|
|
|
maps = ("H", "x"), ("e", "l")
|
|
|
|
|
wanted = "Hello"
|
|
|
|
|
class SelectModeMappings_IgnoreMappings1_ECR(_SelectModeMappings):
|
|
|
|
|
ignores = ["H"]
|
|
|
|
|
maps = ("H", "x"), ("e", "l")
|
|
|
|
|
wanted = "xello"
|
|
|
|
|
class SelectModeMappings_IgnoreMappings2_ECR(_SelectModeMappings):
|
|
|
|
|
ignores = ["e", "H"]
|
|
|
|
|
maps = ("e", "l"), ("H", "x")
|
|
|
|
|
wanted = "xello"
|
|
|
|
|
class SelectModeMappings_BufferLocalMappings_ECR(_SelectModeMappings):
|
|
|
|
|
buffer_maps = ("H", "blah")
|
|
|
|
|
wanted = "Hello"
|
|
|
|
|
|
|
|
|
|
# End: Unmap SelectMode Mappings #}}}
|
|
|
|
|
# Folding Interaction {{{#
|
|
|
|
|
class FoldingEnabled_SnippetWithFold_ExpectNoFolding(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set foldlevel=0")
|
|
|
|
|
vim_config.append("set foldmethod=marker")
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ("test", r"""Hello {{{
|
|
|
|
|
${1:Welt} }}}""")
|
|
|
|
|
keys = "test" + EX + "Ball"
|
|
|
|
|
wanted = """Hello {{{
|
|
|
|
|
Ball }}}"""
|
2012-02-01 14:31:03 -05:00
|
|
|
|
class FoldOverwrite_Simple_ECR(_VimTest):
|
|
|
|
|
snippets = ("fold",
|
|
|
|
|
"""# ${1:Description} `!p snip.rv = vim.eval("&foldmarker").split(",")[0]`
|
|
|
|
|
|
|
|
|
|
# End: $1 `!p snip.rv = vim.eval("&foldmarker").split(",")[1]`""")
|
|
|
|
|
keys = "fold" + EX + "hi"
|
|
|
|
|
wanted = "# hi {{{\n\n# End: hi }}}"
|
|
|
|
|
class Fold_DeleteMiddleLine_ECR(_VimTest):
|
|
|
|
|
snippets = ("fold",
|
|
|
|
|
"""# ${1:Description} `!p snip.rv = vim.eval("&foldmarker").split(",")[0]`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# End: $1 `!p snip.rv = vim.eval("&foldmarker").split(",")[1]`""")
|
|
|
|
|
keys = "fold" + EX + "hi" + ESC + "jdd"
|
|
|
|
|
wanted = "# hi {{{\n\n# End: hi }}}"
|
2012-08-09 13:09:49 -04:00
|
|
|
|
|
|
|
|
|
class PerlSyntaxFold(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set foldlevel=0")
|
|
|
|
|
vim_config.append("syntax enable")
|
|
|
|
|
vim_config.append("set foldmethod=syntax")
|
|
|
|
|
vim_config.append("let g:perl_fold = 1")
|
|
|
|
|
vim_config.append("so $VIMRUNTIME/syntax/perl.vim")
|
2012-08-09 13:09:49 -04:00
|
|
|
|
snippets = ("test", r"""package ${1:`!v printf('c%02d', 3)`};
|
|
|
|
|
${0}
|
|
|
|
|
1;""")
|
|
|
|
|
keys = "test" + EX + JF + "sub junk {}"
|
|
|
|
|
wanted = "package c03;\nsub junk {}\n1;"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Folding Interaction #}}}
|
2012-11-13 11:07:43 -05:00
|
|
|
|
# Trailing whitespace {{{#
|
|
|
|
|
class RemoveTrailingWhitespace(_VimTest):
|
|
|
|
|
snippets = ("test", """Hello\t ${1:default}\n$2""", "", "s")
|
|
|
|
|
wanted = """Hello\nGoodbye"""
|
|
|
|
|
keys = "test" + EX + BS + JF + "Goodbye"
|
|
|
|
|
class LeaveTrailingWhitespace(_VimTest):
|
|
|
|
|
snippets = ("test", """Hello \t ${1:default}\n$2""")
|
|
|
|
|
wanted = """Hello \t \nGoodbye"""
|
|
|
|
|
keys = "test" + EX + BS + JF + "Goodbye"
|
2014-02-10 15:06:04 -05:00
|
|
|
|
# End: Trailing whitespace #}}}
|
2012-01-18 03:30:34 -05:00
|
|
|
|
|
|
|
|
|
# Cursor Movement {{{#
|
|
|
|
|
class CursorMovement_Multiline_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1:a tab}")
|
|
|
|
|
keys = "test" + EX + "this is something\nvery nice\nnot" + JF + "more text"
|
|
|
|
|
wanted = "this is something\nvery nice\nnot " \
|
|
|
|
|
"this is something\nvery nice\nnotmore text"
|
2012-01-28 08:36:52 -05:00
|
|
|
|
class CursorMovement_BS_InEditMode(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set backspace=eol,indent,start")
|
2012-01-28 08:36:52 -05:00
|
|
|
|
snippets = ("<trh", "<tr>\n\t<th>$1</th>\n\t$2\n</tr>\n$3")
|
|
|
|
|
keys = "<trh" + EX + "blah" + JF + BS + BS + JF + "end"
|
|
|
|
|
wanted = "<tr>\n\t<th>blah</th>\n</tr>\nend"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Cursor Movement #}}}
|
|
|
|
|
# Insert Mode Moving {{{#
|
|
|
|
|
class IMMoving_CursorsKeys_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:Some}")
|
|
|
|
|
keys = "test" + EX + "text" + 3*ARR_U + 6*ARR_D
|
|
|
|
|
wanted = "text"
|
|
|
|
|
class IMMoving_AcceptInputWhenMoved_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${1:a tab}")
|
|
|
|
|
keys = "test" + EX + "this" + 2*ARR_L + "hallo\nwelt"
|
|
|
|
|
wanted = "thhallo\nweltis thhallo\nweltis"
|
|
|
|
|
class IMMoving_NoExiting_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 7*ARR_L + \
|
|
|
|
|
JF + "hallo"
|
|
|
|
|
wanted = "hello tab hallo tab this"
|
|
|
|
|
class IMMoving_NoExitingEventAtEnd_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + JF + "hallo"
|
|
|
|
|
wanted = "hello tab hallo tab this"
|
|
|
|
|
class IMMoving_ExitWhenOutsideRight_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1 ${2:blub} ${1:Tab}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + ARR_R + JF + "hallo"
|
2014-02-05 11:45:45 -05:00
|
|
|
|
wanted = "hello tab blub tab " + JF + "hallothis"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
class IMMoving_NotExitingWhenBarelyOutsideLeft_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"${1:Hi} ${2:blub}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 3*ARR_L + \
|
|
|
|
|
JF + "hallo"
|
|
|
|
|
wanted = "hello tab hallo this"
|
|
|
|
|
class IMMoving_ExitWhenOutsideLeft_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"${1:Hi} ${2:blub}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 4*ARR_L + \
|
|
|
|
|
JF + "hallo"
|
2014-02-05 11:45:45 -05:00
|
|
|
|
wanted = "hello" + JF + "hallo tab blub this"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
class IMMoving_ExitWhenOutsideAbove_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:Hi}\n${2:blub}")
|
2014-02-05 11:45:45 -05:00
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 1*ARR_U + "\n" + JF + \
|
|
|
|
|
"hallo"
|
|
|
|
|
wanted = JF + "hallo\nhello tab\nblub this"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
class IMMoving_ExitWhenOutsideBelow_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:Hi}\n${2:blub}")
|
|
|
|
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 2*ARR_D + JF + \
|
|
|
|
|
"testhallo\n"
|
2014-02-05 11:45:45 -05:00
|
|
|
|
wanted = "hello tab\nblub this\n" + JF + "testhallo"
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# End: Insert Mode Moving #}}}
|
2012-01-20 18:50:56 -05:00
|
|
|
|
# Undo of Snippet insertion {{{#
|
|
|
|
|
class Undo_RemoveMultilineSnippet(_VimTest):
|
|
|
|
|
snippets = ("test", "Hello\naaa ${1} bbb\nWorld")
|
|
|
|
|
keys = "test" + EX + ESC + "u" + "inothing"
|
|
|
|
|
wanted = "nothing"
|
|
|
|
|
class Undo_RemoveEditInTabstop(_VimTest):
|
|
|
|
|
snippets = ("test", "$1 Hello\naaa ${1} bbb\nWorld")
|
|
|
|
|
keys = "hello test" + EX + "upsi" + ESC + "hh" + "iabcdef" + ESC + "u"
|
|
|
|
|
wanted = "hello upsi Hello\naaa upsi bbb\nWorld"
|
2012-01-27 16:48:36 -05:00
|
|
|
|
class Undo_RemoveWholeSnippet(_VimTest):
|
|
|
|
|
snippets = ("test", "Hello\n${1:Hello}World")
|
|
|
|
|
keys = "first line\n\n\n\n\n\nthird line" + \
|
|
|
|
|
ESC + "3k0itest" + EX + ESC + "uiupsy"
|
|
|
|
|
wanted = "first line\n\n\nupsy\n\n\nthird line"
|
|
|
|
|
class JumpForward_DefSnippet(_VimTest):
|
|
|
|
|
snippets = ("test", "${1}\n`!p snip.rv = '\\n'.join(t[1].split())`\n\n${0:pass}")
|
2014-02-05 13:13:34 -05:00
|
|
|
|
keys = "test" + EX + "a b c" + JF + "shallnot"
|
|
|
|
|
wanted = "a b c\na\nb\nc\n\nshallnot"
|
2012-02-12 02:14:21 -05:00
|
|
|
|
class DeleteSnippetInsertion0(_VimTest):
|
2012-01-31 02:12:05 -05:00
|
|
|
|
snippets = ("test", "${1:hello} $1")
|
|
|
|
|
keys = "test" + EX + ESC + "Vkx" + "i\nworld\n"
|
|
|
|
|
wanted = "world"
|
2012-02-12 02:14:21 -05:00
|
|
|
|
class DeleteSnippetInsertion1(_VimTest):
|
|
|
|
|
snippets = ("test", r"$1${1/(.*)/(?0::.)/}")
|
|
|
|
|
keys = "test" + EX + ESC + "u" + "i" + JF + "\t"
|
|
|
|
|
wanted = "\t"
|
2012-01-20 18:50:56 -05:00
|
|
|
|
# End: Undo of Snippet insertion #}}}
|
2012-01-18 03:30:34 -05:00
|
|
|
|
# Tab Completion of Words {{{#
|
|
|
|
|
class Completion_SimpleExample_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", "$1 ${1:blah}")
|
|
|
|
|
keys = "superkallifragilistik\ntest" + EX + "sup" + COMPL_KW + \
|
|
|
|
|
COMPL_ACCEPT + " some more"
|
|
|
|
|
wanted = "superkallifragilistik\nsuperkallifragilistik some more " \
|
|
|
|
|
"superkallifragilistik some more"
|
|
|
|
|
|
|
|
|
|
# We need >2 different words with identical starts to create the
|
|
|
|
|
# popup-menu:
|
|
|
|
|
COMPLETION_OPTIONS = "completion1\ncompletion2\n"
|
|
|
|
|
|
|
|
|
|
class Completion_ForwardsJumpWithoutCOMPL_ACCEPT(_VimTest):
|
|
|
|
|
# completions should not be truncated when JF is activated without having
|
|
|
|
|
# pressed COMPL_ACCEPT (Bug #598903)
|
|
|
|
|
snippets = ("test", "$1 $2")
|
|
|
|
|
keys = COMPLETION_OPTIONS + "test" + EX + "com" + COMPL_KW + JF + "foo"
|
|
|
|
|
wanted = COMPLETION_OPTIONS + "completion1 foo"
|
|
|
|
|
|
|
|
|
|
class Completion_BackwardsJumpWithoutCOMPL_ACCEPT(_VimTest):
|
|
|
|
|
# completions should not be truncated when JB is activated without having
|
|
|
|
|
# pressed COMPL_ACCEPT (Bug #598903)
|
|
|
|
|
snippets = ("test", "$1 $2")
|
|
|
|
|
keys = COMPLETION_OPTIONS + "test" + EX + "foo" + JF + "com" + COMPL_KW + \
|
|
|
|
|
JB + "foo"
|
|
|
|
|
wanted = COMPLETION_OPTIONS + "foo completion1"
|
|
|
|
|
# End: Tab Completion of Words #}}}
|
|
|
|
|
# Pressing BS in TabStop {{{#
|
|
|
|
|
# Test for Bug #774917
|
|
|
|
|
class Backspace_TabStop_Zero(_VimTest):
|
|
|
|
|
snippets = ("test", "A${1:C} ${0:DDD}", "This is Case 1")
|
|
|
|
|
keys = "test" + EX + "A" + JF + BS + "BBB"
|
|
|
|
|
wanted = "AA BBB"
|
|
|
|
|
|
|
|
|
|
class Backspace_TabStop_NotZero(_VimTest):
|
|
|
|
|
snippets = ("test", "A${1:C} ${2:DDD}", "This is Case 1")
|
|
|
|
|
keys = "test" + EX + "A" + JF + BS + "BBB"
|
|
|
|
|
wanted = "AA BBB"
|
|
|
|
|
# End: Pressing BS in TabStop #}}}
|
|
|
|
|
# Newline in default text {{{#
|
|
|
|
|
# Tests for bug 616315 #
|
|
|
|
|
class TrailingNewline_TabStop_NLInsideStuffBehind(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:
|
|
|
|
|
}<-behind1
|
|
|
|
|
$2<-behind2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj<-behind1
|
|
|
|
|
k<-behind2"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_JustNL(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:
|
|
|
|
|
}
|
|
|
|
|
$2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_EndNL(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:a
|
|
|
|
|
}
|
|
|
|
|
$2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_StartNL(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:
|
|
|
|
|
a}
|
|
|
|
|
$2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_EndStartNL(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:
|
|
|
|
|
a
|
|
|
|
|
}
|
|
|
|
|
$2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_NotEndStartNL(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:a
|
|
|
|
|
a}
|
|
|
|
|
$2""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k"""
|
|
|
|
|
|
|
|
|
|
class TrailingNewline_TabStop_ExtraNL_ECR(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:a
|
|
|
|
|
a}
|
|
|
|
|
$2
|
|
|
|
|
""")
|
|
|
|
|
keys = "test" + EX + "j" + JF + "k"
|
|
|
|
|
wanted = """
|
|
|
|
|
xj
|
|
|
|
|
k
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
class _MultiLineDefault(_VimTest):
|
|
|
|
|
snippets = ("test", r"""
|
|
|
|
|
x${1:a
|
|
|
|
|
b
|
|
|
|
|
c
|
|
|
|
|
d
|
|
|
|
|
e
|
|
|
|
|
f}
|
|
|
|
|
$2""")
|
|
|
|
|
|
|
|
|
|
class MultiLineDefault_Jump(_MultiLineDefault):
|
|
|
|
|
keys = "test" + EX + JF + "y"
|
|
|
|
|
wanted = """
|
|
|
|
|
xa
|
|
|
|
|
b
|
|
|
|
|
c
|
|
|
|
|
d
|
|
|
|
|
e
|
|
|
|
|
f
|
|
|
|
|
y"""
|
|
|
|
|
|
|
|
|
|
class MultiLineDefault_Type(_MultiLineDefault):
|
|
|
|
|
keys = "test" + EX + "z" + JF + "y"
|
|
|
|
|
wanted = """
|
|
|
|
|
xz
|
|
|
|
|
y"""
|
|
|
|
|
|
|
|
|
|
class MultiLineDefault_BS(_MultiLineDefault):
|
|
|
|
|
keys = "test" + EX + BS + JF + "y"
|
|
|
|
|
wanted = """
|
|
|
|
|
x
|
|
|
|
|
y"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# End: Newline in default text #}}}
|
|
|
|
|
# Quotes in Snippets {{{#
|
|
|
|
|
# Test for Bug #774917
|
|
|
|
|
def _snip_quote(qt):
|
|
|
|
|
return (
|
|
|
|
|
("te" + qt + "st", "Expand me" + qt + "!", "test: "+qt),
|
|
|
|
|
("te", "Bad", ""),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
class Snippet_With_SingleQuote(_VimTest):
|
|
|
|
|
snippets = _snip_quote("'")
|
|
|
|
|
keys = "te'st" + EX
|
|
|
|
|
wanted = "Expand me'!"
|
|
|
|
|
|
|
|
|
|
class Snippet_With_SingleQuote_List(_VimTest):
|
|
|
|
|
snippets = _snip_quote("'")
|
|
|
|
|
keys = "te" + LS + "2\n"
|
|
|
|
|
wanted = "Expand me'!"
|
|
|
|
|
|
|
|
|
|
class Snippet_With_DoubleQuote(_VimTest):
|
|
|
|
|
snippets = _snip_quote('"')
|
|
|
|
|
keys = 'te"st' + EX
|
|
|
|
|
wanted = "Expand me\"!"
|
|
|
|
|
|
|
|
|
|
class Snippet_With_DoubleQuote_List(_VimTest):
|
|
|
|
|
snippets = _snip_quote('"')
|
|
|
|
|
keys = "te" + LS + "2\n"
|
|
|
|
|
wanted = "Expand me\"!"
|
|
|
|
|
# End: Quotes in Snippets #}}}
|
|
|
|
|
# Umlauts and Special Chars {{{#
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class _UmlautsBase(_VimTest):
|
2014-02-14 17:58:00 -05:00
|
|
|
|
skip_if = lambda self: running_on_windows() # SendKeys can't send UTF characters
|
2012-01-29 10:51:22 -05:00
|
|
|
|
|
|
|
|
|
class Snippet_With_Umlauts_List(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = _snip_quote('ü')
|
|
|
|
|
keys = 'te' + LS + "2\n"
|
|
|
|
|
wanted = "Expand meü!"
|
|
|
|
|
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = _snip_quote('ü')
|
|
|
|
|
keys = 'teüst' + EX
|
|
|
|
|
wanted = "Expand meü!"
|
|
|
|
|
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_TypeOn(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üüüüüßßßß')
|
|
|
|
|
keys = 'te ül' + EX + "more text"
|
|
|
|
|
wanted = "te üüüüüßßßßmore text"
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_OverwriteFirst(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üü ${1:world} üü ${2:hello}ßß\nüüüü')
|
|
|
|
|
keys = 'te ül' + EX + "more text" + JF + JF + "end"
|
|
|
|
|
wanted = "te üü more text üü helloßß\nüüüüend"
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_OverwriteSecond(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üü ${1:world} üü ${2:hello}ßß\nüüüü')
|
|
|
|
|
keys = 'te ül' + EX + JF + "more text" + JF + "end"
|
|
|
|
|
wanted = "te üü world üü more textßß\nüüüüend"
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_OverwriteNone(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üü ${1:world} üü ${2:hello}ßß\nüüüü')
|
|
|
|
|
keys = 'te ül' + EX + JF + JF + "end"
|
|
|
|
|
wanted = "te üü world üü helloßß\nüüüüend"
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_Mirrors(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üü ${1:world} üü $1')
|
|
|
|
|
keys = 'te ül' + EX + "hello"
|
|
|
|
|
wanted = "te üü hello üü hello"
|
2012-01-29 10:51:22 -05:00
|
|
|
|
class Snippet_With_Umlauts_Python(_UmlautsBase):
|
2012-01-18 03:30:34 -05:00
|
|
|
|
snippets = ('ül', 'üü ${1:world} üü `!p snip.rv = len(t[1])*"a"`')
|
|
|
|
|
keys = 'te ül' + EX + "hüüll"
|
|
|
|
|
wanted = "te üü hüüll üü aaaaa"
|
|
|
|
|
# End: Umlauts and Special Chars #}}}
|
2012-02-01 14:31:03 -05:00
|
|
|
|
# Exclusive Selection {{{#
|
|
|
|
|
class _ES_Base(_VimTest):
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-02-20 17:06:58 -05:00
|
|
|
|
vim_config.append("set selection=exclusive")
|
2012-02-01 14:31:03 -05:00
|
|
|
|
class ExclusiveSelection_SimpleTabstop_Test(_ES_Base):
|
|
|
|
|
snippets = ("test", "h${1:blah}w $1")
|
|
|
|
|
keys = "test" + EX + "ui" + JF
|
|
|
|
|
wanted = "huiw ui"
|
|
|
|
|
|
|
|
|
|
class ExclusiveSelection_RealWorldCase_Test(_ES_Base):
|
|
|
|
|
snippets = ("for",
|
|
|
|
|
"""for ($${1:i} = ${2:0}; $$1 < ${3:count}; $$1${4:++}) {
|
|
|
|
|
${5:// code}
|
|
|
|
|
}""")
|
|
|
|
|
keys = "for" + EX + "k" + JF
|
|
|
|
|
wanted = """for ($k = 0; $k < count; $k++) {
|
|
|
|
|
// code
|
|
|
|
|
}"""
|
|
|
|
|
# End: Exclusive Selection #}}}
|
2012-02-12 02:53:42 -05:00
|
|
|
|
# Normal mode editing {{{#
|
|
|
|
|
# Test for bug #927844
|
|
|
|
|
class DeleteLastTwoLinesInSnippet(_VimTest):
|
|
|
|
|
snippets = ("test", "$1hello\nnice\nworld")
|
|
|
|
|
keys = "test" + EX + ESC + "j2dd"
|
|
|
|
|
wanted = "hello"
|
2012-02-12 03:37:59 -05:00
|
|
|
|
class DeleteCurrentTabStop1_JumpBack(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:hi}\nend")
|
|
|
|
|
keys = "test" + EX + ESC + "ddi" + JB
|
|
|
|
|
wanted = "end"
|
|
|
|
|
class DeleteCurrentTabStop2_JumpBack(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:hi}\n${2:world}\nend")
|
|
|
|
|
keys = "test" + EX + JF + ESC + "ddi" + JB + "hello"
|
|
|
|
|
wanted = "hello\nend"
|
|
|
|
|
class DeleteCurrentTabStop3_JumpAround(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:hi}\n${2:world}\nend")
|
|
|
|
|
keys = "test" + EX + JF + ESC + "ddkji" + JB + "hello" + JF + "world"
|
|
|
|
|
wanted = "hello\nendworld"
|
2012-02-12 02:53:42 -05:00
|
|
|
|
|
|
|
|
|
# End: Normal mode editing #}}}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
# Test for bug 1251994 {{{#
|
2013-12-28 16:56:32 -05:00
|
|
|
|
class Bug1251994(_VimTest):
|
|
|
|
|
snippets = ("test", "${2:#2} ${1:#1};$0")
|
|
|
|
|
keys = " test" + EX + "hello" + JF + "world" + JF + "blub"
|
|
|
|
|
wanted = " world hello;blub"
|
|
|
|
|
# End: 1251994 #}}}
|
2014-02-10 15:06:04 -05:00
|
|
|
|
# Test for Github Pull Request #134 - Retain unnamed register {{{#
|
2014-01-31 19:43:43 -05:00
|
|
|
|
class RetainsTheUnnamedRegister(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:hello} ${2:world} ${0}")
|
|
|
|
|
keys = "yank" + ESC + "by4lea test" + EX + "HELLO" + JF + JF + ESC + "p"
|
|
|
|
|
wanted = "yank HELLO world yank"
|
2014-02-10 15:06:04 -05:00
|
|
|
|
class RetainsTheUnnamedRegister_ButOnlyOnce(_VimTest):
|
|
|
|
|
snippets = ("test", "${1:hello} ${2:world} ${0}")
|
|
|
|
|
keys = "blahfasel" + ESC + "v" + 4*ARR_L + "xotest" + EX + ESC + ARR_U + "v0xo" + ESC + "p"
|
|
|
|
|
wanted = "\nblah\nhello world "
|
2014-01-31 19:43:43 -05:00
|
|
|
|
# End: Github Pull Request # 134 #}}}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
# snipMate support {{{#
|
|
|
|
|
class snipMate_SimpleSnippet(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet hello
|
|
|
|
|
\tThis is a test snippet
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\t# With a comment"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "hello" + EX
|
|
|
|
|
wanted = "This is a test snippet\n# With a comment"
|
|
|
|
|
class snipMate_OtherFiletype(_VimTest):
|
|
|
|
|
files = { "snippets/blubi.snippets": """
|
|
|
|
|
snippet hello
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tworked"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "hello" + EX + ESC + ":set ft=blubi\nohello" + EX
|
|
|
|
|
wanted = "hello" + EX + "\nworked"
|
|
|
|
|
class snipMate_MultiMatches(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet hello The first snippet."
|
|
|
|
|
\tone
|
|
|
|
|
snippet hello The second snippet.
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\ttwo"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "hello" + EX + "2\n"
|
|
|
|
|
wanted = "two"
|
|
|
|
|
class snipMate_SimpleSnippetSubDirectory(_VimTest):
|
|
|
|
|
files = { "snippets/_/blub.snippets": """
|
|
|
|
|
snippet hello
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tThis is a test snippet"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "hello" + EX
|
|
|
|
|
wanted = "This is a test snippet"
|
|
|
|
|
class snipMate_SimpleSnippetInSnippetFile(_VimTest):
|
|
|
|
|
files = {
|
|
|
|
|
"snippets/_/hello.snippet": """This is a stand alone snippet""",
|
|
|
|
|
"snippets/_/hello1.snippet": """This is two stand alone snippet""",
|
|
|
|
|
"snippets/_/hello2/this_is_my_cool_snippet.snippet": """Three""",
|
|
|
|
|
}
|
|
|
|
|
keys = "hello" + EX + "\nhello1" + EX + "\nhello2" + EX
|
|
|
|
|
wanted = "This is a stand alone snippet\nThis is two stand alone snippet\nThree"
|
|
|
|
|
class snipMate_Interpolation(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet test
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tla`printf('c%02d', 3)`lu"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "lac03lu"
|
|
|
|
|
class snipMate_InterpolationWithSystem(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet test
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tla`system('echo -ne öäü')`lu"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "laöäülu"
|
|
|
|
|
class snipMate_TestMirrors(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet for
|
|
|
|
|
\tfor (${2:i}; $2 < ${1:count}; $1++) {
|
|
|
|
|
\t\t${4}
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\t}"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "for" + EX + "blub" + JF + "j" + JF + "hi"
|
|
|
|
|
wanted = "for (j; j < blub; blub++) {\n\thi\n}"
|
|
|
|
|
class snipMate_TestMirrorsInPlaceholders(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet opt
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\t<option value="${1:option}">${2:$1}</option>"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "opt" + EX + "some" + JF + JF + "ende"
|
|
|
|
|
wanted = """<option value="some">some</option>ende"""
|
|
|
|
|
class snipMate_TestMirrorsInPlaceholders_Overwrite(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet opt
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\t<option value="${1:option}">${2:$1}</option>"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "opt" + EX + "some" + JF + "not" + JF + "ende"
|
|
|
|
|
wanted = """<option value="some">not</option>ende"""
|
|
|
|
|
class snipMate_Visual_Simple(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet v
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\th${VISUAL}b"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "blablub" + ESC + "0v6l" + EX + "v" + EX
|
|
|
|
|
wanted = "hblablubb"
|
|
|
|
|
class snipMate_NoNestedTabstops(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet test
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\th$${1:${2:blub}}$$"""}
|
2014-02-23 05:19:11 -05:00
|
|
|
|
keys = "test" + EX + JF + "hi"
|
|
|
|
|
wanted = "h$${2:blub}$$hi"
|
|
|
|
|
class snipMate_Extends(_VimTest):
|
|
|
|
|
files = { "snippets/a.snippets": """
|
|
|
|
|
extends b
|
|
|
|
|
snippet test
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tblub""", "snippets/b.snippets": """
|
2014-02-23 05:19:11 -05:00
|
|
|
|
snippet test1
|
2014-02-25 17:17:05 -05:00
|
|
|
|
\tblah"""
|
2014-02-23 05:19:11 -05:00
|
|
|
|
}
|
|
|
|
|
keys = ESC + ":set ft=a\n" + "itest1" + EX
|
|
|
|
|
wanted = "blah"
|
2014-02-25 17:17:05 -05:00
|
|
|
|
class snipMate_EmptyLinesContinueSnippets(_VimTest):
|
|
|
|
|
files = { "snippets/_.snippets": """
|
|
|
|
|
snippet test
|
|
|
|
|
\tblub
|
|
|
|
|
|
|
|
|
|
\tblah
|
|
|
|
|
|
|
|
|
|
snippet test1
|
|
|
|
|
\ta"""
|
|
|
|
|
}
|
|
|
|
|
keys = "test" + EX
|
|
|
|
|
wanted = "blub\n\nblah\n"
|
2014-02-23 05:19:11 -05:00
|
|
|
|
# End: snipMate support #}}}
|
2014-03-04 14:36:27 -05:00
|
|
|
|
# SnippetsInCurrentScope {{{#
|
2013-06-10 12:27:48 -04:00
|
|
|
|
class VerifyVimDict1(_VimTest):
|
|
|
|
|
"""check:
|
|
|
|
|
correct type (4 means vim dictionary)
|
|
|
|
|
correct length of dictionary (in this case we have on element if the use same prefix, dictionary should have 1 element)
|
2013-08-05 14:49:03 -04:00
|
|
|
|
correct description (including the apostrophe)
|
2013-06-10 12:27:48 -04:00
|
|
|
|
if the prefix is mismatched no resulting dict should have 0 elements
|
|
|
|
|
"""
|
|
|
|
|
|
2013-08-05 14:49:03 -04:00
|
|
|
|
snippets = ('testâ', 'abc123ά', '123\'êabc')
|
2014-02-11 01:56:56 -05:00
|
|
|
|
keys = ('test=(type(UltiSnips#SnippetsInCurrentScope()) . len(UltiSnips#SnippetsInCurrentScope()) . ' +
|
|
|
|
|
'UltiSnips#SnippetsInCurrentScope()["testâ"]' + ')\n' +
|
|
|
|
|
'=len(UltiSnips#SnippetsInCurrentScope())\n')
|
2013-06-10 12:27:48 -04:00
|
|
|
|
|
2013-08-05 14:49:03 -04:00
|
|
|
|
wanted = 'test41123\'êabc0'
|
2013-06-10 12:27:48 -04:00
|
|
|
|
|
|
|
|
|
class VerifyVimDict2(_VimTest):
|
|
|
|
|
"""check:
|
|
|
|
|
can use " in trigger
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
snippets = ('te"stâ', 'abc123ά', '123êabc')
|
|
|
|
|
akey = "'te{}stâ'".format('"')
|
2014-02-11 01:56:56 -05:00
|
|
|
|
keys = ('te"=(UltiSnips#SnippetsInCurrentScope()[{}]'.format(akey) + ')\n')
|
2013-06-10 12:27:48 -04:00
|
|
|
|
wanted = 'te"123êabc'
|
|
|
|
|
|
|
|
|
|
class VerifyVimDict3(_VimTest):
|
|
|
|
|
"""check:
|
|
|
|
|
can use ' in trigger
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
snippets = ("te'stâ", 'abc123ά', '123êabc')
|
|
|
|
|
akey = '"te{}stâ"'.format("'")
|
2014-02-11 01:56:56 -05:00
|
|
|
|
keys = ("te'=(UltiSnips#SnippetsInCurrentScope()[{}]".format(akey) + ')\n')
|
2013-06-10 12:27:48 -04:00
|
|
|
|
wanted = "te'123êabc"
|
2014-03-04 14:36:27 -05:00
|
|
|
|
# End: SnippetsInCurrentScope #}}}
|
2014-03-05 13:02:30 -05:00
|
|
|
|
# Snippet Source {{{#
|
|
|
|
|
class AddNewSnippetSource(_VimTest):
|
|
|
|
|
keys = ( "blumba" + EX + ESC +
|
|
|
|
|
":%(python)s UltiSnips_Manager.register_snippet_source(" +
|
|
|
|
|
"'temp', MySnippetSource())\n" +
|
|
|
|
|
"oblumba" + EX + ESC +
|
|
|
|
|
":%(python)s UltiSnips_Manager.unregister_snippet_source('temp')\n" +
|
|
|
|
|
"oblumba" + EX ) % { 'python': 'py3' if PYTHON3 else 'py' }
|
|
|
|
|
wanted = (
|
|
|
|
|
"blumba" + EX + "\n" +
|
|
|
|
|
"this is a dynamic snippet" + "\n" +
|
|
|
|
|
"blumba" + EX
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def _extra_options_post_init(self, vim_config):
|
|
|
|
|
self._create_file("snippet_source.py","""
|
|
|
|
|
from UltiSnips.snippet.source import SnippetSource
|
|
|
|
|
from UltiSnips.snippet.definition import UltiSnipsSnippetDefinition
|
|
|
|
|
|
|
|
|
|
class MySnippetSource(SnippetSource):
|
|
|
|
|
def get_snippets(self, filetypes, before, possible):
|
|
|
|
|
if before.endswith('blumba'):
|
|
|
|
|
return [
|
|
|
|
|
UltiSnipsSnippetDefinition(
|
|
|
|
|
-100, "blumba", "this is a dynamic snippet", "", "", {})
|
|
|
|
|
]
|
|
|
|
|
return []
|
|
|
|
|
""")
|
|
|
|
|
pyfile = 'py3file' if PYTHON3 else 'pyfile'
|
|
|
|
|
vim_config.append("%s %s" % (pyfile, os.path.join(
|
|
|
|
|
self._temporary_directory, "snippet_source.py")))
|
|
|
|
|
# End: Snippet Source #}}}
|
2014-03-04 14:36:27 -05:00
|
|
|
|
|
|
|
|
|
# Plugin: YouCompleteMe {{{#
|
|
|
|
|
class YouCompleteMe_IntegrationTest(_VimTest):
|
2014-03-05 01:50:23 -05:00
|
|
|
|
def skip_if(self):
|
|
|
|
|
r = python3()
|
|
|
|
|
if r:
|
|
|
|
|
return r
|
|
|
|
|
if "7.4" not in self.version:
|
|
|
|
|
return "Needs Vim 7.4."
|
2014-03-04 14:36:27 -05:00
|
|
|
|
plugins = ["Valloric/YouCompleteMe"]
|
|
|
|
|
snippets = ("superlongtrigger", "Hello")
|
|
|
|
|
keys = "superlo\ty"
|
|
|
|
|
wanted = "Hello"
|
|
|
|
|
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-03-04 14:36:27 -05:00
|
|
|
|
# Not sure why, but I need to make a new tab for this to work.
|
|
|
|
|
vim_config.append('let g:UltiSnipsExpandTrigger="y"')
|
|
|
|
|
vim_config.append('tabnew')
|
|
|
|
|
|
|
|
|
|
def _before_test(self):
|
|
|
|
|
self.vim.send(":set ft=python\n")
|
|
|
|
|
# Give ycm a chance to catch up.
|
|
|
|
|
time.sleep(1)
|
2014-03-05 02:14:53 -05:00
|
|
|
|
# End: Plugin: YouCompleteMe #}}}
|
|
|
|
|
# Plugin: Neocomplete {{{#
|
|
|
|
|
class Neocomplete_BugTest(_VimTest):
|
|
|
|
|
# Test for https://github.com/SirVer/ultisnips/issues/228
|
|
|
|
|
def skip_if(self):
|
|
|
|
|
if "+lua" not in self.version:
|
|
|
|
|
return "Needs +lua"
|
|
|
|
|
plugins = ["Shougo/neocomplete.vim"]
|
|
|
|
|
snippets = ("t", "Hello", "", "w")
|
|
|
|
|
keys = "iab\\ t" + EX
|
|
|
|
|
wanted = "iab\\ Hello"
|
2014-03-04 14:36:27 -05:00
|
|
|
|
|
2014-03-05 13:02:30 -05:00
|
|
|
|
def _extra_options_pre_init(self, vim_config):
|
2014-03-05 02:14:53 -05:00
|
|
|
|
vim_config.append(r'set iskeyword+=\\ ')
|
|
|
|
|
vim_config.append('let g:neocomplete#enable_at_startup = 1')
|
|
|
|
|
vim_config.append('let g:neocomplete#enable_smart_case = 1')
|
|
|
|
|
vim_config.append('let g:neocomplete#enable_camel_case = 1')
|
|
|
|
|
vim_config.append('let g:neocomplete#enable_auto_delimiter = 1')
|
|
|
|
|
vim_config.append('let g:neocomplete#enable_refresh_always = 1')
|
|
|
|
|
# End: Plugin: Neocomplete #}}}
|
2014-03-05 13:22:55 -05:00
|
|
|
|
# Plugin: Supertab {{{#
|
|
|
|
|
class SuperTab_SimpleTest(_VimTest):
|
|
|
|
|
plugins = ["ervandew/supertab"]
|
|
|
|
|
snippets = ("long", "Hello", "", "w")
|
|
|
|
|
keys = ( "longtextlongtext\n" +
|
|
|
|
|
"longt" + EX + "\n" + # Should complete word
|
|
|
|
|
"long" + EX ) # Should expand
|
|
|
|
|
wanted = "longtextlongtext\nlongtextlongtext\nHello"
|
|
|
|
|
|
|
|
|
|
def _before_test(self):
|
|
|
|
|
# Make sure that UltiSnips has the keymap
|
|
|
|
|
self.vim.send(":call UltiSnips#map_keys#MapKeys()\n")
|
|
|
|
|
|
|
|
|
|
def _extra_options_post_init(self, vim_config):
|
|
|
|
|
assert EX == "\t" # Otherwise this test needs changing.
|
|
|
|
|
vim_config.append('let g:SuperTabDefaultCompletionType = "<c-p>"')
|
|
|
|
|
vim_config.append('let g:SuperTabRetainCompletionDuration = "insert"')
|
|
|
|
|
vim_config.append('let g:SuperTabLongestHighlight = 1')
|
|
|
|
|
vim_config.append('let g:SuperTabCrMapping = 0')
|
|
|
|
|
# End: Plugin: Supertab #}}}
|
2013-06-10 12:27:48 -04:00
|
|
|
|
|
2009-07-04 15:58:13 -04:00
|
|
|
|
###########################################################################
|
|
|
|
|
# END OF TEST #
|
|
|
|
|
###########################################################################
|
2012-01-16 05:30:20 -05:00
|
|
|
|
|
|
|
|
|
|
2009-06-23 08:45:04 -04:00
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
import sys
|
2009-07-01 09:20:40 -04:00
|
|
|
|
import optparse
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
|
p = optparse.OptionParser("%prog [OPTIONS] <test case names to run>")
|
|
|
|
|
|
2014-02-17 14:55:39 -05:00
|
|
|
|
p.set_defaults(session="vim", interrupt=False,
|
2014-03-04 14:36:27 -05:00
|
|
|
|
verbose=False, interface="screen", retries=4, plugins=False)
|
2009-07-01 09:20:40 -04:00
|
|
|
|
|
2009-07-04 09:01:19 -04:00
|
|
|
|
p.add_option("-v", "--verbose", dest="verbose", action="store_true",
|
|
|
|
|
help="print name of tests as they are executed")
|
2014-03-05 02:39:37 -05:00
|
|
|
|
p.add_option("--clone-plugins", action="store_true",
|
|
|
|
|
help="Only clones dependant plugins and exits the test runner.")
|
2014-03-04 14:36:27 -05:00
|
|
|
|
p.add_option("--plugins", action="store_true",
|
|
|
|
|
help="Run integration tests with other Vim plugins.")
|
2014-02-17 14:55:39 -05:00
|
|
|
|
p.add_option("--interface", type=str,
|
|
|
|
|
help="interface to vim to use on Mac and or Linux [screen|tmux].")
|
2009-07-01 09:20:40 -04:00
|
|
|
|
p.add_option("-s", "--session", dest="session", metavar="SESSION",
|
2014-02-17 14:55:39 -05:00
|
|
|
|
help="session parameters for the terminal multiplexer SESSION [%default]")
|
2009-07-01 09:20:40 -04:00
|
|
|
|
p.add_option("-i", "--interrupt", dest="interrupt",
|
|
|
|
|
action="store_true",
|
2010-08-22 07:57:19 -04:00
|
|
|
|
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."
|
2009-07-01 09:20:40 -04:00
|
|
|
|
)
|
2014-02-19 15:12:39 -05:00
|
|
|
|
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.")
|
2009-06-28 08:51:27 -04:00
|
|
|
|
|
2009-07-01 09:20:40 -04:00
|
|
|
|
o, args = p.parse_args()
|
2014-02-17 14:55:39 -05:00
|
|
|
|
if o.interface not in ("screen", "tmux"):
|
|
|
|
|
p.error("--interface must be [screen|tmux].")
|
|
|
|
|
|
2009-07-01 09:20:40 -04:00
|
|
|
|
return o, args
|
|
|
|
|
|
2014-03-05 02:39:37 -05:00
|
|
|
|
def main():
|
|
|
|
|
options,selected_tests = parse_args()
|
2009-07-01 09:20:40 -04:00
|
|
|
|
|
2014-03-05 02:39:37 -05:00
|
|
|
|
test_loader = unittest.TestLoader()
|
|
|
|
|
all_test_suites = test_loader.loadTestsFromModule(__import__("test"))
|
2009-07-01 09:20:40 -04:00
|
|
|
|
|
2014-03-05 02:39:37 -05:00
|
|
|
|
vim = None
|
|
|
|
|
if not options.clone_plugins:
|
|
|
|
|
if platform.system() == "Windows":
|
|
|
|
|
raise RuntimeError("TODO: TestSuite is broken under windows. Volunteers wanted!.")
|
|
|
|
|
# vim = VimInterfaceWindows()
|
|
|
|
|
vim.focus()
|
|
|
|
|
else:
|
|
|
|
|
if options.interface == "screen":
|
|
|
|
|
vim = VimInterfaceScreen(options.session)
|
|
|
|
|
elif options.interface == "tmux":
|
|
|
|
|
vim = VimInterfaceTmux(options.session)
|
|
|
|
|
|
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
|
all_other_plugins = set()
|
|
|
|
|
for s in all_test_suites:
|
|
|
|
|
for test in s:
|
|
|
|
|
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]
|
|
|
|
|
if not any([ id.startswith(t) for t in selected_tests ]):
|
|
|
|
|
continue
|
|
|
|
|
suite.addTest(test)
|
|
|
|
|
|
|
|
|
|
if options.plugins or options.clone_plugins:
|
|
|
|
|
setup_other_plugins(all_other_plugins)
|
|
|
|
|
if options.clone_plugins:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if options.verbose:
|
|
|
|
|
v = 2
|
|
|
|
|
else:
|
|
|
|
|
v = 1
|
|
|
|
|
res = unittest.TextTestRunner(verbosity=v).run(suite)
|
|
|
|
|
|
|
|
|
|
main()
|
2009-07-01 09:20:40 -04:00
|
|
|
|
|
2012-01-16 05:30:20 -05:00
|
|
|
|
# vim:fileencoding=utf-8:foldmarker={{{#,#}}}:
|