示例#1
0
def pytest_funcarg__doc(request):
    svc = request.getfuncargvalue('svc')
    doc = Document(svc.boss, __file__)
    mkp = request.getfuncargvalue('monkeypatch')
    mkp.setattr(Document, 'project', None)
    doc.project = None
    return doc
示例#2
0
文件: buffer.py 项目: xmonader/pida
 def open_file(self,
               file_name=None,
               document=None,
               line=None,
               offset=None,
               editor_buffer_id=None,
               do_open=True):
     if file_name:
         file_name = os.path.realpath(file_name)
     if document is None:
         # try to find the document
         if editor_buffer_id is not None:
             document = self._get_document_for_editor_id(editor_buffer_id)
         if document is None and file_name is not None:
             document = self._get_document_for_filename(file_name)
         elif file_name is None and editor_buffer_id is not None:
             #XXX new file just switched, can't know, have to guess!
             # normally fall back to filename
             if self._last_added_document and self._last_added_document.is_new:
                 document = self._last_added_document
                 self._last_added_document = None
         # can't find it
         if document is None:
             document = Document(self.boss, file_name)
             if editor_buffer_id is not None:
                 document.editor_buffer_id = editor_buffer_id
             self._add_document(document)
     self.view_document(document, line=line, offset=offset, do_open=do_open)
     self.emit('document-opened', document=document)
     return document
示例#3
0
    def test_has(self):
        doc1 = Document(BOSS)
        doc2 = Document(BOSS)
        wp = WayStack(max_length=10, threshold=10)
        w1 = WayPoint(doc1, 10)
        w2 = WayPoint(doc1, 10)
        wp.append(w1)

        self.assertTrue(w1 in wp)
        self.assertTrue(w2 in wp)
        self.assertTrue(wp.has_fuzzy(w1))
        self.assertTrue(wp.has_fuzzy(w2))

        self.assertEqual(w1, wp.get_fuzzy(w1.document, w1.line + 4))
        self.assertEqual(w1, wp.get_fuzzy(w1.document, w1.line + 6))
        self.assertNotEqual(w1, wp.get_fuzzy(w1.document, w1.line + 11))

        w3 = WayPoint(doc2, 10)
        w4 = WayPoint(doc2, 19)
        w5 = WayPoint(doc2, 20)
        w6 = WayPoint(doc2, 21)

        self.assertTrue(not w3 in wp)
        self.assertTrue(not w4 in wp)
        wp.append(w3)
        self.assertTrue(w3 in wp)
        self.assertTrue(not w4 in wp)
        self.assertTrue(wp.has_fuzzy(w3))
        self.assertTrue(wp.has_fuzzy(w4))
        self.assertTrue(not wp.has_fuzzy(w5))
        self.assertTrue(not wp.has_fuzzy(w6))

        w3 = WayPoint(doc2, 10)
示例#4
0
def pytest_funcarg__doc(request):
    svc = request.getfuncargvalue('svc')
    doc = Document(svc.boss, __file__)
    mkp = request.getfuncargvalue('monkeypatch')
    mkp.setattr(Document, 'project', None)
    doc.project = None
    return doc
示例#5
0
    def test_maxlength(self):
        doc1 = Document(BOSS)
        wp = WayStack(max_length=10, threshold=10, timespan=5)
        for i in xrange(20):
            wp.notify_change(doc1, 100 * i + 1, time_=(60 * i) + 1)
            wp.notify_change(doc1, 100 * i + 1, time_=(60 * i) + 10)

        self.assertEqual(len(wp), 10)
示例#6
0
 def test_force(self):
     doc1 = Document(BOSS)
     doc2 = Document(BOSS)
     wp = WayStack(max_length=10)
     wp.notify_change(doc1, 10, time_=10)
     wp.notify_change(doc1, 10, time_=20)
     self.assertEqual(wp[0].document, doc1)
     self.assertEqual(wp[0].line, 10)
     wp.notify_change(doc1, 15, time_=22, force=True)
     self.assertEqual(wp[0].document, doc1)
     self.assertEqual(wp[0].line, 15)
     self.assertEqual(wp[1].document, doc1)
     self.assertEqual(wp[1].line, 10)
     wp.notify_change(doc2, 1, time_=32, force=True)
     wp.notify_change(doc1, 15, time_=32, force=True)
     self.assertEqual(wp[0].document, doc2)
     self.assertEqual(wp[0].line, 1)
     self.assertEqual(wp[1].document, doc1)
     self.assertEqual(wp[1].line, 15)
示例#7
0
文件: buffer.py 项目: xmonader/pida
 def open_files(self, files):
     if not files:
         # empty list
         return
     docs = []
     for file_name in files:
         document = Document(self.boss, file_name)
         self._add_document(document)
         docs.append(document)
     self.boss.editor.cmd('open_list', documents=docs)
     for document in docs:
         self.emit('document-opened', document=document)
示例#8
0
    def test_waypoint(self):
        doc1 = Document(BOSS)
        doc2 = Document(BOSS)
        wp = WayStack(max_length=10, threshold=30, timespan=4)
        wp.notify_change(doc1, 10, time_=10)
        wp.notify_change(doc1, 12, time_=20)
        wp.notify_change(doc1, 15, time_=40)
        wp.notify_change(doc1, 10, time_=60)
        self.assertEqual(wp[0].document, doc1)
        self.assertEqual(wp[0].line, 12)

        wp.notify_change(doc2, 100, time_=80)
        self.assertNotEqual(wp[0].document, doc2)
        wp.notify_change(doc2, 109, time_=90)
        self.assertEqual(wp[0].document, doc2)
        print wp
        print wp._considered
        self.assertEqual(wp[0].line, 109)

        wp.notify_change(doc1, 100, time_=100)
        self.assertNotEqual(wp[0].document, doc1)
        wp.notify_change(doc1, 100, time_=104)
        self.assertEqual(wp[0].document, doc1)
        self.assertEqual(wp[0].line, 100)

        # this will not generate a new waypoint as its to near on the first one
        wp.notify_change(doc1, 1, time_=120)
        wp.notify_change(doc1, 1, time_=125)
        self.assertEqual(wp[0].document, doc1)
        self.assertEqual(wp[0].line, 100)

        # this will
        wp.notify_change(doc1, 50, time_=140)
        wp.notify_change(doc1, 50, time_=150)
        self.assertEqual(wp[0].document, doc1)
        self.assertEqual(wp[0].line, 50)

        should = ((doc1, 50), (doc1, 100), (doc2, 109), (doc1, 12))
        self.should(wp, should)
示例#9
0
def test_parser():
    if not py.path.local.sysfind('ctags'):
        py.test.skip('ctags missing')
    doc = Document(None, os.path.join(TESTDIR, 'test.py'))
    outliner = CtagsOutliner(None, document=doc)
    lst = list(outliner.run())
    print lst
    outer = None
    inner = None
    for x in lst:
        if x.name == "Outer":
            outer = x
        elif x.name == "Inner":
            inner = x
    assert outer is not None
    assert outer.parent is None
    assert inner.parent is outer
    for x in lst:
        if x.name[:6] == "outer_":
            assert x.parent is outer
        if x.name[:6] == "inner_":
            assert x.parent is inner
        print x
示例#10
0
    def test_waypoint_jump(self):
        doc1 = Document(BOSS)
        doc2 = Document(BOSS)
        wp = WayStack(max_length=10)
        wp.notify_change(doc1, 10, time_=10)
        wp.notify_change(doc1, 10, time_=20)
        wp.notify_change(doc1, 100, time_=30)
        wp.notify_change(doc1, 100, time_=40)
        wp.notify_change(doc2, 100, time_=50)
        wp.notify_change(doc2, 100, time_=60)
        wp.notify_change(doc1, 43, time_=70)
        wp.notify_change(doc1, 43, time_=80)
        self.assertEqual(wp[0].document, doc1)
        self.assertEqual(wp[0].line, 43)

        cp = wp.jump(0)

        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 43)

        cp = wp.jump(1)

        self.assertEqual(cp.document, doc2)
        self.assertEqual(cp.line, 100)

        cp = wp.jump(0)

        self.assertEqual(cp.document, doc2)
        self.assertEqual(cp.line, 100)

        cp = wp.jump(1)

        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 100)

        cp = wp.jump(10)

        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 10)

        cp = wp.jump(-1)

        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 100)

        cp = wp.jump(-2)

        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 43)

        cp = wp.jump(1)

        self.assertEqual(cp.document, doc2)
        self.assertEqual(cp.line, 100)

        wp.notify_change(doc2, 930, time_=100)
        wp.notify_change(doc2, 932, time_=110)

        should = ((doc2, 932), (doc2, 100), (doc1, 100), (doc1, 10))
        self.should(wp, should)

        cp = wp.jump(2)
        self.assertEqual(cp.document, doc1)
        self.assertEqual(cp.line, 100)

        wp.notify_change(doc1, 103, time_=120)
        wp.notify_change(doc1, 103, time_=130)

        self.assertEqual(wp[0].document, doc2)
        self.assertEqual(wp[0].line, 932)
        self.assertEqual(wp[1].document, doc2)
        self.assertEqual(wp[1].line, 100)

        cp = wp.jump(-1)

        self.assertEqual(cp.document, doc2)
        self.assertEqual(cp.line, 100)

        should = ((doc2, 932), (doc2, 100), (doc1, 100), (doc1, 10))
        self.should(wp, should)