File: test_split_editor_area_pane.py

package info (click to toggle)
python-pyface 8.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,944 kB
  • sloc: python: 54,107; makefile: 82
file content (643 lines) | stat: -rw-r--r-- 22,676 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" Tests for the SplitEditorAreaPane class. """

import os
import tempfile
import unittest

from traits.api import Instance

from pyface.qt import QtGui, QtCore
from pyface.tasks.split_editor_area_pane import (
    EditorAreaWidget,
    SplitEditorAreaPane,
)
from pyface.tasks.api import (
    Editor,
    PaneItem,
    Splitter,
    Tabbed,
    Task,
    TaskWindow,
)
from pyface.util.guisupport import get_app_qt4
from pyface.ui.qt.util.testing import event_loop
from pyface.util.gui_test_assistant import GuiTestAssistant


class ViewWithTabsEditor(Editor):
    """ Test editor, displaying a labels in tabs. """

    name = "Test Editor"

    def create(self, parent):
        """ Create and set the toolkit-specific contents of the editor.
        """
        control = QtGui.QTabWidget()
        control.addTab(QtGui.QLabel("tab 1"), "group 1")
        control.addTab(QtGui.QLabel("tab 2"), "group 2")
        self.control = control

    def destroy(self):
        """ Destroy the toolkit-specific control that represents the editor.
        """
        self.control = None


class SplitEditorAreaPaneTestTask(Task):
    """ A test task containing a SplitEditorAreaPane. """

    id = "test_task"
    name = "Test Task"

    editor_area = Instance(SplitEditorAreaPane, ())

    def create_central_pane(self):
        return self.editor_area


class TestEditorAreaWidget(GuiTestAssistant, unittest.TestCase):
    """ Tests for the SplitEditorAreaPane class. """

    def _setUp_split(self, parent=None):
        """ Sets up the root splitter for splitting. Returns this root.

        parent : parent of the returned root
        """
        root = EditorAreaWidget(
            editor_area=SplitEditorAreaPane(), parent=parent
        )
        btn0 = QtGui.QPushButton("0")
        btn1 = QtGui.QPushButton("1")
        tabwidget = root.tabwidget()
        tabwidget.addTab(btn0, "0")
        tabwidget.addTab(btn1, "1")
        tabwidget.setCurrentIndex(1)

        return root

    def test_split(self):
        """ Does split function work correct?
        """
        # setup
        root = self._setUp_split()
        try:
            tabwidget = root.tabwidget()
            btn0 = tabwidget.widget(0)
            btn1 = tabwidget.widget(1)

            # perform
            root.split(orientation=QtCore.Qt.Orientation.Horizontal)

            # test
            # do we get correct leftchild and rightchild?
            self.assertIsNotNone(root.leftchild)
            self.assertIsNotNone(root.rightchild)
            self.assertIsInstance(root.leftchild, EditorAreaWidget)
            self.assertIsInstance(root.rightchild, EditorAreaWidget)
            self.assertEqual(root.leftchild.count(), 1)
            self.assertEqual(root.rightchild.count(), 1)

            # are the tabwidgets laid out correctly?
            self.assertEqual(root.leftchild.tabwidget(), tabwidget)
            self.assertIsNotNone(root.rightchild.tabwidget().empty_widget)

            # are the contents of the left tabwidget correct?
            self.assertEqual(root.leftchild.tabwidget().count(), 2)
            self.assertEqual(root.leftchild.tabwidget().widget(0), btn0)
            self.assertEqual(root.leftchild.tabwidget().widget(1), btn1)
            self.assertEqual(root.leftchild.tabwidget().currentWidget(), btn1)

            # does the right tabwidget contain nothing but the empty widget?
            self.assertEqual(root.rightchild.tabwidget().count(), 1)
            self.assertEqual(
                root.rightchild.tabwidget().widget(0),
                root.rightchild.tabwidget().empty_widget,
            )

            # do we have an equally sized split?
            self.assertEqual(root.leftchild.width(), root.rightchild.width())

            # is the rightchild active?
            self.assertEqual(
                root.editor_area.active_tabwidget, root.rightchild.tabwidget()
            )
        finally:
            with event_loop():
                root.deleteLater()

    def _setUp_collapse(self, parent=None):
        """ Creates a root, its leftchild and rightchild, so that collapse can
        be tested on one of the children.

        Returns the root, leftchild and rightchild of such layout.

        parent : parent of the returned root
        """
        # setup leftchild
        left = EditorAreaWidget(editor_area=SplitEditorAreaPane(), parent=None)
        btn0 = QtGui.QPushButton("btn0")
        btn1 = QtGui.QPushButton("btn1")
        tabwidget = left.tabwidget()
        tabwidget.addTab(btn0, "0")
        tabwidget.addTab(btn1, "1")
        tabwidget.setCurrentIndex(1)

        # setup rightchild
        right = EditorAreaWidget(editor_area=left.editor_area, parent=None)
        btn2 = QtGui.QPushButton("btn2")
        btn3 = QtGui.QPushButton("btn3")
        tabwidget = right.tabwidget()
        tabwidget.addTab(btn2, "2")
        tabwidget.addTab(btn3, "3")
        tabwidget.setCurrentIndex(0)

        # setup root
        root = EditorAreaWidget(editor_area=left.editor_area, parent=parent)
        tabwidget = root.tabwidget()
        tabwidget.setParent(None)
        root.addWidget(left)
        root.addWidget(right)
        root.leftchild = left
        root.rightchild = right

        return root, left, right

    def test_collapse_nonempty(self):
        """ Test for collapse function when the source of collapse is not an
        empty  tabwidget. This would result in a new tabwidget which merges
        the tabs of the  collapsing tabwidgets.
        """
        # setup root
        root, _, right = self._setUp_collapse()
        try:
            btn2 = right.tabwidget().widget(0)

            # perform collapse on rightchild
            root.rightchild.collapse()

            # test
            # has the root now become the leaf?
            self.assertEqual(root.count(), 1)
            self.assertIsInstance(root.widget(0), QtGui.QTabWidget)

            # how does the combined list look?
            self.assertEqual(root.tabwidget().count(), 4)
            self.assertEqual(root.tabwidget().currentWidget(), btn2)
        finally:
            with event_loop():
                root.deleteLater()

    def test_collapse_empty(self):
        """ Test for collapse function when the collapse origin is an empty
        tabwidget. It's sibling can have an arbitrary layout and the result
        would be such that this layout is transferred to the parent.
        """
        # setup
        editor_area = SplitEditorAreaPane()
        editor_area.create(None)
        root = editor_area.control
        try:
            tabwidget = root.tabwidget()
            tabwidget.setParent(None)
            left, left_left, left_right = self._setUp_collapse(parent=root)
            right = EditorAreaWidget(editor_area=root.editor_area, parent=root)
            root.leftchild = left
            root.rightchild = right

            # perform collapse on leftchild
            right.collapse()

            # test
            # is the layout of root now same as left?
            self.assertEqual(root.count(), 2)
            self.assertEqual(root.leftchild, left_left)
            self.assertEqual(root.rightchild, left_right)

            # are the contents of left_left and left_right preserved
            self.assertEqual(root.leftchild.tabwidget().count(), 2)
            self.assertEqual(root.rightchild.tabwidget().count(), 2)
            self.assertEqual(root.leftchild.tabwidget().currentIndex(), 1)
            self.assertEqual(root.rightchild.tabwidget().currentIndex(), 0)

            # what is the current active_tabwidget?
            self.assertEqual(
                root.editor_area.active_tabwidget, root.leftchild.tabwidget()
            )
        finally:
            editor_area.destroy()

    def test_persistence(self):
        """ Tests whether get_layout/set_layout work correctly by setting a
        given layout and getting back the obtained layout.
        """
        # setup the test layout - one horizontal split and one vertical split
        # on the rightchild of horizontal split, where the top tabwidget of
        # the vertical split is empty.
        layout = Splitter(
            Tabbed(PaneItem(id=0, width=600, height=600), active_tab=0),
            Splitter(
                Tabbed(PaneItem(id=-1, width=600, height=300), active_tab=0),
                Tabbed(
                    PaneItem(id=1, width=600, height=300),
                    PaneItem(id=2, width=600, height=300),
                    active_tab=0,
                ),
                orientation="vertical",
            ),
            orientation="horizontal",
        )
        # a total of 3 files are needed to give this layout - one on the
        # leftchild of horizontal split, and the other two on the bottom
        # tabwidget of the rightchild's vertical split
        file0 = open(os.path.join(tempfile.gettempdir(), "file0"), "w+b")
        file1 = open(os.path.join(tempfile.gettempdir(), "file1"), "w+b")
        file2 = open(os.path.join(tempfile.gettempdir(), "file2"), "w+b")

        # adding the editors
        editor_area = SplitEditorAreaPane()
        editor_area.create(parent=None)
        try:
            editor_area.add_editor(Editor(obj=file0, tooltip="test_tooltip0"))
            editor_area.add_editor(Editor(obj=file1, tooltip="test_tooltip1"))
            editor_area.add_editor(Editor(obj=file2, tooltip="test_tooltip2"))

            # test tooltips

            self.assertEqual(
                editor_area.active_tabwidget.tabToolTip(0), "test_tooltip0"
            )
            self.assertEqual(
                editor_area.active_tabwidget.tabToolTip(1), "test_tooltip1"
            )
            self.assertEqual(
                editor_area.active_tabwidget.tabToolTip(2), "test_tooltip2"
            )

            # test set_layout

            # set the layout
            editor_area.set_layout(layout)

            # file0 goes to left pane?
            left = editor_area.control.leftchild
            editor = editor_area._get_editor(left.tabwidget().widget(0))
            self.assertEqual(editor.obj, file0)

            # right pane is a splitter made of two panes?
            right = editor_area.control.rightchild
            self.assertFalse(right.is_leaf())

            # right pane is vertical splitter?
            self.assertEqual(right.orientation(), QtCore.Qt.Orientation.Vertical)

            # top pane of this vertical split is empty?
            right_top = right.leftchild
            self.assertTrue(right_top.is_empty())

            # bottom pane is not empty?
            right_bottom = right.rightchild
            self.assertFalse(right_bottom.is_empty())

            # file1 goes first on bottom pane?
            editor = editor_area._get_editor(right_bottom.tabwidget().widget(0))
            self.assertEqual(editor.obj, file1)

            # file2 goes second on bottom pane?
            editor = editor_area._get_editor(right_bottom.tabwidget().widget(1))
            self.assertEqual(editor.obj, file2)

            # file1 tab is active?
            self.assertEqual(right_bottom.tabwidget().currentIndex(), 0)

            # test get_layout

            # obtain layout
            layout_new = editor_area.get_layout()

            # is the top level a horizontal splitter?
            self.assertIsInstance(layout_new, Splitter)
            self.assertEqual(layout_new.orientation, "horizontal")

            # tests on left child
            left = layout_new.items[0]
            self.assertIsInstance(left, Tabbed)
            self.assertEqual(left.items[0].id, 0)

            # tests on right child
            right = layout_new.items[1]
            self.assertIsInstance(right, Splitter)
            self.assertEqual(right.orientation, "vertical")

            # tests on top pane of right child
            right_top = right.items[0]
            self.assertIsInstance(right_top, Tabbed)
            self.assertEqual(right_top.items[0].id, -1)

            # tests on bottom pane of right child
            right_bottom = right.items[1]
            self.assertIsInstance(right_bottom, Tabbed)
            self.assertEqual(right_bottom.items[0].id, 1)
            self.assertEqual(right_bottom.items[1].id, 2)

            # Close all of the opened temporary files
            file0.close()
            file1.close()
            file2.close()
        finally:
            with event_loop():
                editor_area.destroy()

    def test_context_menu_merge_text_left_right_split(self):
        # Regression test for enthought/pyface#422
        window = TaskWindow()

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        with event_loop():
            window.open()

        try:
            editor_area_widget = editor_area.control
            with event_loop():
                editor_area_widget.split(orientation=QtCore.Qt.Orientation.Horizontal)

            # Get the tabs.
            left_tab, right_tab = editor_area_widget.tabwidgets()

            # Check left context menu merge text.
            left_tab_center = left_tab.mapToGlobal(left_tab.rect().center())
            left_context_menu = editor_area.get_context_menu(left_tab_center)
            self.assertEqual(
                left_context_menu.find_item("merge").action.name,
                "Merge with right pane",
            )

            # And the right context menu merge text.
            right_tab_center = right_tab.mapToGlobal(right_tab.rect().center())
            right_context_menu = editor_area.get_context_menu(right_tab_center)
            self.assertEqual(
                right_context_menu.find_item("merge").action.name,
                "Merge with left pane",
            )

            with event_loop():
                window.close()
        finally:
            with event_loop():
                window.destroy()

    def test_context_menu_merge_text_top_bottom_split(self):
        # Regression test for enthought/pyface#422
        window = TaskWindow()

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        with event_loop():
            window.open()

        try:
            editor_area_widget = editor_area.control
            with event_loop():
                editor_area_widget.split(orientation=QtCore.Qt.Orientation.Vertical)

            # Get the tabs.
            top_tab, bottom_tab = editor_area_widget.tabwidgets()

            # Check top context menu merge text.
            top_tab_center = top_tab.mapToGlobal(top_tab.rect().center())
            top_context_menu = editor_area.get_context_menu(top_tab_center)
            self.assertEqual(
                top_context_menu.find_item("merge").action.name,
                "Merge with bottom pane",
            )

            # And the bottom context menu merge text.
            bottom_tab_center = bottom_tab.mapToGlobal(bottom_tab.rect().center())
            bottom_context_menu = editor_area.get_context_menu(bottom_tab_center)
            self.assertEqual(
                bottom_context_menu.find_item("merge").action.name,
                "Merge with top pane",
            )

            with event_loop():
                window.close()
        finally:
            with event_loop():
                window.destroy()

    def test_no_context_menu_if_outside_tabwidgets(self):
        # Check that the case of a position not in any of the tab widgets
        # is handled correctly.
        window = TaskWindow()

        task = SplitEditorAreaPaneTestTask()
        window.add_task(task)

        with event_loop():
            window.open()

        try:
            editor_area = task.editor_area
            editor_area_widget = editor_area.control
            tab_widget, = editor_area_widget.tabwidgets()

            # Position is relative to the receiving widget, so (-1, -1) should be
            # reliably outside.
            pos = QtCore.QPoint(-1, -1)
            context_menu_event = QtGui.QContextMenuEvent(
                QtGui.QContextMenuEvent.Reason.Mouse, pos
            )

            global_pos = editor_area_widget.mapToGlobal(pos)
            self.assertIsNone(editor_area.get_context_menu(global_pos))

            # Exercise the context menu code to make sure it doesn't raise. (It
            # should do nothing.)
            with event_loop():
                tab_widget.contextMenuEvent(context_menu_event)

            with event_loop():
                window.close()
        finally:
            with event_loop():
                window.destroy()

    def test_active_tabwidget_after_editor_containing_tabs_gets_focus(self):
        # Regression test: if an editor contains tabs, a change in focus
        # sets the editor area pane `active_tabwidget` to one of those tabs,
        # rather than the editor's tab, after certain operations (e.g.,
        # navigating the editor tabs using keyboard shortcuts).

        window = TaskWindow()

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        # Show the window.
        with event_loop():
            window.open()

        try:
            with event_loop():
                app = get_app_qt4()
                app.setActiveWindow(window.control)

            # Add and activate an editor which contains tabs.
            editor = ViewWithTabsEditor()
            with event_loop():
                editor_area.add_editor(editor)
            with event_loop():
                editor_area.activate_editor(editor)

            # Check that the active tabwidget is the right one.
            self.assertIs(
                editor_area.active_tabwidget, editor_area.control.tabwidget()
            )

            with event_loop():
                window.close()
        finally:
            with event_loop():
                window.destroy()

    def test_active_editor_after_focus_change(self):
        window = TaskWindow(size=(800, 600))

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        # Show the window.
        with event_loop():
            window.open()

        try:
            with event_loop():
                app = get_app_qt4()
                app.setActiveWindow(window.control)

            # Add and activate an editor which contains tabs.
            left_editor = ViewWithTabsEditor()
            right_editor = ViewWithTabsEditor()

            with event_loop():
                editor_area.add_editor(left_editor)
            with event_loop():
                editor_area.control.split(orientation=QtCore.Qt.Orientation.Horizontal)
            with event_loop():
                editor_area.add_editor(right_editor)

            editor_area.activate_editor(right_editor)
            self.assertEqual(editor_area.active_editor, right_editor)

            with event_loop():
                left_editor.control.setFocus()

            self.assertIsNotNone(editor_area.active_editor)
            self.assertEqual(editor_area.active_editor, left_editor)

            with event_loop():
                window.close()
        finally:
            with event_loop():
                window.destroy()

    def test_editor_label_change_inactive(self):
        # regression test for pyface#523
        window = TaskWindow(size=(800, 600))

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        # Show the window.
        with event_loop():
            window.open()

        try:
            with event_loop():
                app = get_app_qt4()
                app.setActiveWindow(window.control)

            # Add and activate an editor which contains tabs.
            left_editor = ViewWithTabsEditor()
            right_editor = ViewWithTabsEditor()

            with event_loop():
                editor_area.add_editor(left_editor)
            with event_loop():
                editor_area.control.split(orientation=QtCore.Qt.Orientation.Horizontal)
            with event_loop():
                editor_area.add_editor(right_editor)

            editor_area.activate_editor(right_editor)

            # change the name of the inactive editor
            left_editor.name = "New Name"

            # the text of the editor's tab should have changed
            left_tabwidget = editor_area.tabwidgets()[0]
            index = left_tabwidget.indexOf(left_editor.control)
            tab_text = left_tabwidget.tabText(index)

            self.assertEqual(tab_text, "New Name")
        finally:
            with event_loop():
                window.destroy()

    def test_editor_tooltip_change_inactive(self):
        # regression test related to pyface#523
        window = TaskWindow(size=(800, 600))

        task = SplitEditorAreaPaneTestTask()
        editor_area = task.editor_area
        window.add_task(task)

        # Show the window.
        with event_loop():
            window.open()

        try:
            with event_loop():
                app = get_app_qt4()
                app.setActiveWindow(window.control)

            # Add and activate an editor which contains tabs.
            left_editor = ViewWithTabsEditor()
            right_editor = ViewWithTabsEditor()

            with event_loop():
                editor_area.add_editor(left_editor)
            with event_loop():
                editor_area.control.split(orientation=QtCore.Qt.Orientation.Horizontal)
            with event_loop():
                editor_area.add_editor(right_editor)

            editor_area.activate_editor(right_editor)

            # change the name of the inactive editor
            left_editor.tooltip = "New Tooltip"

            # the text of the editor's tab should have changed
            left_tabwidget = editor_area.tabwidgets()[0]
            index = left_tabwidget.indexOf(left_editor.control)
            tab_tooltip = left_tabwidget.tabToolTip(index)

            self.assertEqual(tab_tooltip, "New Tooltip")
        finally:
            with event_loop():
                window.destroy()