forked from bpython/bpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_autocomplete.py
More file actions
67 lines (52 loc) · 2.05 KB
/
test_autocomplete.py
File metadata and controls
67 lines (52 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from bpython import autocomplete
from functools import partial
import inspect
import unittest
try:
from unittest import skip
except ImportError:
def skip(f):
return lambda self: None
# Parts of autocompletion to test:
# Test that the right matches come back from find_matches (test that priority is correct)
# Test the various complete methods (import, filename) to see if right matches
# Test that MatchesIterator.substitute correctly subs given a match and a completer
"""
def test_cw(self):
self.repl.cpos = 2
self.assertEqual(self.repl.cw(), None)
self.repl.cpos = 0
self.repl.s = ''
self.assertEqual(self.repl.cw(), None)
self.repl.s = "this.is.a.test\t"
self.assertEqual(self.repl.cw(), None)
s = "this.is.a.test"
self.repl.s = s
self.assertEqual(self.repl.cw(), s)
s = "\t\tthis.is.a.test"
self.repl.s = s
self.assertEqual(self.repl.cw(), s.lstrip())
self.repl.s = "import datetime"
self.assertEqual(self.repl.cw(), 'datetime')
"""
class TestSafeEval(unittest.TestCase):
def test_catches_syntax_error(self):
try:
autocomplete.safe_eval('1re',{})
except:
self.fail('safe_eval raises an error')
# make some fake files? Dependency inject? mock?
class TestFilenameCompletion(unittest.TestCase):
pass
class TestFormatters(unittest.TestCase):
@skip('not done yet')
def test_filename(self):
self.assertEqual(autocomplete.last_part_of_filename('abc'), 'abc')
self.assertEqual(autocomplete.last_part_of_filename('abc/'), 'abc/')
self.assertEqual(autocomplete.last_part_of_filename('abc/efg'), 'efg')
self.assertEqual(autocomplete.last_part_of_filename('abc/efg/'), 'efg/')
self.assertEqual(autocomplete.last_part_of_filename('/abc'), 'abc')
self.assertEqual(autocomplete.last_part_of_filename('ab.c/e.f.g/'), 'e.f.g/')
@skip('not done yet')
def test_attribute(self):
self.assertEqual(autocomplete.after_last_dot('abc.edf'), 'edf')