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 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
|
# -*- coding: utf-8 -*-
# Copyright 2009-2014 Jaap Karssenberg <jaap.karssenberg@gmail.com>
from __future__ import with_statement
import tests
import os
import gtk
from zim.errors import Error
from zim.config import ConfigManager, VirtualConfigManager
from zim.notebook import get_notebook_list, Path, Page, NotebookInfo, NotebookConfig
from zim.formats import ParseTree
from zim.fs import File, Dir
from zim.gui.clipboard import Clipboard
import zim.gui
def setupGtkInterface(test, klass=None, notebook=None):
'''Setup a new GtkInterface object for testing.
Will have test notebook, and default preferences.
@param test: the test that wants to use this ui object
@param klass: the klass to use, defaults to L{GtkInterface}, but
could be partially mocked subclass
'''
if klass is None:
klass = zim.gui.GtkInterface
# start filtering
filter = FilterNoSuchImageWarning()
filter.wrap_test(test)
# create interface object with new notebook
if notebook is None:
dirpath = test.get_tmp_name()
notebook = tests.new_notebook(fakedir=dirpath)
config = VirtualConfigManager()
ui = klass(config=config, notebook=notebook)
ui.mainwindow.init_uistate()
ui.open_page(Path('Test:foo:bar'))
return ui
@tests.slowTest
class TestDialogs(tests.TestCase):
def setUp(self):
path = self.create_tmp_dir()
self.ui = MockUI('Test:foo:bar', fakedir=path)
def testOpenPageDialog(self):
'''Test OpenPageDialog dialog (Jump To...)'''
for name, path in (
(':foo', ':foo'),
('foo', ':Test:foo'),
('baz', ':Test:foo:baz'),
('+baz', ':Test:foo:bar:baz'),
):
dialog = zim.gui.OpenPageDialog(self.ui)
dialog.form.widgets['page'].set_text(name)
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1], ('open_page', Path(path)))
def testNewPageDialog(self):
'''Test NewPageDialog'''
self.ui.mainwindow = tests.MockObject()
self.ui.mainwindow.pageview = tests.MockObject()
for name, path in (
(':new', ':new'),
('foo:new', ':Test:foo:new'),
('new', ':Test:foo:new'),
('+new', ':Test:foo:bar:new'),
):
dialog = zim.gui.NewPageDialog(self.ui)
dialog.form.widgets['page'].set_text(name)
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1], ('save_page',))
self.assertEqual(self.ui.mock_calls[-2], ('open_page', Path(path)))
page = self.ui.notebook.get_page(Path(path))
self.assertTrue(page.exists())
page.modified = False # HACK so we can clean up
self.ui.notebook.delete_page(page)
for name, path in (
(':new', ':Test:foo:bar:new'),
('foo:new', ':Test:foo:bar:foo:new'),
('new', ':Test:foo:bar:new'),
('+new', ':Test:foo:bar:new'),
):
dialog = zim.gui.NewPageDialog(self.ui, subpage=True)
dialog.form.widgets['page'].set_text(name)
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1], ('save_page',))
self.assertEqual(self.ui.mock_calls[-2], ('open_page', Path(path)))
page = self.ui.notebook.get_page(Path(path))
self.assertTrue(page.exists())
page.modified = False # HACK so we can clean up
self.ui.notebook.delete_page(page)
dialog = zim.gui.NewPageDialog(self.ui)
dialog.form.widgets['page'].set_text(':Test:foo')
self.assertRaises(Error, dialog.assert_response_ok)
def testSaveCopyDialog(self):
'''Test SaveCopyDialog'''
tmp_dir = self.create_tmp_dir('testSaveCopyDialog')
file = File((tmp_dir, 'save_copy.txt'))
self.assertFalse(file.exists())
dialog = zim.gui.SaveCopyDialog(self.ui)
dialog.set_file(file)
#~ dialog.assert_response_ok()
#~ self.assertTrue(file.exists())
def testImportPageDialog(self):
'''Test ImportPageDialog'''
tmp_dir = self.create_tmp_dir('testImportPageDialog')
file = File((tmp_dir, 'import_page.txt'))
file.write('test 123\n')
self.assertTrue(file.exists())
dialog = zim.gui.ImportPageDialog(self.ui)
dialog.set_file(file)
#~ dialog.assert_response_ok()
#~ self.assertEqual(self.ui.mock_calls[-1], ('open_page', Path(':import_page')))
#~ self.assertTrue(self.ui.notebook.get_page(':import_page').exists())
def testMovePageDialog(self):
'''Test MovePageDialog'''
# Can't test much here except for the call to do_move_page
self.ui.mock_method('do_move_page', True)
dialog = zim.gui.MovePageDialog(self.ui, path=Path('Test:foo:bar'))
self.assertTrue(dialog.form['update'])
self.assertTrue(dialog.form.widgets['update'].get_property('sensitive'))
dialog.form['parent'] = Path('New')
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1],
('do_move_page', Path('Test:foo:bar'), Path('New:bar'), True))
dialog = zim.gui.MovePageDialog(self.ui, path=Path('New:bar'))
self.assertFalse(dialog.form['update'])
self.assertFalse(dialog.form.widgets['update'].get_property('sensitive'))
dialog.form['parent'] = Path('foo')
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1],
('do_move_page', Path('New:bar'), Path('foo:bar'), False))
def testRenamePageDialog(self):
'''Test RenamePageDialog'''
# Can't test much here except for the call to do_rename_page
self.ui.mock_method('do_rename_page', True)
dialog = zim.gui.RenamePageDialog(self.ui, path=Path('Test:foo:bar'))
self.assertTrue(dialog.form['update'])
self.assertTrue(dialog.form.widgets['update'].get_property('sensitive'))
self.assertFalse(dialog.form['head']) # There is no heading
self.assertTrue(dialog.form.widgets['head'].get_property('sensitive'))
dialog.form['name'] = 'New'
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1],
('do_rename_page', Path('Test:foo:bar'), 'New', False, True))
dialog = zim.gui.RenamePageDialog(self.ui, path=Path('New:bar'))
self.assertFalse(dialog.form['update'])
self.assertFalse(dialog.form.widgets['update'].get_property('sensitive'))
self.assertFalse(dialog.form['head'])
self.assertFalse(dialog.form.widgets['head'].get_property('sensitive'))
dialog.form['name'] = 'New'
dialog.assert_response_ok()
self.assertEqual(self.ui.mock_calls[-1],
('do_rename_page', Path('New:bar'), 'New', False, False))
def testRenamePageDialogWithHeadingChanges(self):
'''Test RenamePageDialog's heading auto-change option depending on
whether we have a changed heading or not.
'''
tree = ParseTree().fromstring('<zim-tree></zim-tree>')
tree.set_heading("bar")
self.ui.page = Page(Path("Test:foo:bar"), parsetree=tree)
self.ui.notebook.get_page = lambda path: self.ui.page
dialog = zim.gui.RenamePageDialog(self.ui, path=Path("Test:foo:bar"))
self.assertTrue(dialog.form['head'])
tree.set_heading("different")
dialog = zim.gui.RenamePageDialog(self.ui, path=Path("Test:foo:bar"))
self.assertFalse(dialog.form['head'])
def testDeletePageDialog(self):
'''Test DeletePageDialog'''
# just check inputs are OK - skip output
dialog = zim.gui.DeletePageDialog(self.ui, path=Path('Test:foo:bar'))
self.assertTrue(dialog.links_checkbox.get_active())
self.assertTrue(dialog.links_checkbox.get_property('sensitive'))
dialog = zim.gui.DeletePageDialog(self.ui, path=Path('New'))
self.assertFalse(dialog.links_checkbox.get_active())
self.assertFalse(dialog.links_checkbox.get_property('sensitive'))
dialog.assert_response_ok()
def testAttachFileDialog(self):
'''Test AttachFileDialog'''
tmp_dir = self.create_tmp_dir('testAttachFileDialog')
file = File((tmp_dir, 'file_to_be_attached'))
file.write('Test 1 2 3\n')
newfile = File((tmp_dir, 'attachments', 'Test', 'foo', 'file_to_be_attached'))
self.assertTrue(file.exists())
self.assertFalse(newfile.exists())
dialog = zim.gui.AttachFileDialog(self.ui, path=Path('Test:foo'))
dialog.set_file(file)
#~ dialog.assert_response_ok()
#~ self.assertTrue(file.exists()) # No move or delete happened
#~ self.assertTrue(newfile.exists())
#~ self.assertTrue(newfile.compare(file))
def testSearchDialog(self):
'''Test SearchDialog'''
from zim.gui.searchdialog import SearchDialog
self.ui.notebook = tests.new_notebook()
dialog = SearchDialog(self.ui)
dialog.query_entry.set_text('Foo')
dialog.query_entry.activate()
model = dialog.results_treeview.get_model()
self.assertTrue(len(model) > 3)
self.ui.mainwindow = tests.MockObject()
self.ui.mainwindow.pageview = tests.MockObject()
col = dialog.results_treeview.get_column(0)
dialog.results_treeview.row_activated((0,), col)
def testCustomToolDialog(self):
'''Test CustomTool dialogs'''
from zim.gui.customtools import CustomToolManagerDialog
from zim.gui.customtools import EditCustomToolDialog
## CustomToolManager dialog
dialog = CustomToolManagerDialog(self.ui)
properties = {
'Name': 'Foo',
'Comment': 'Test Foo',
'X-Zim-ExecTool': 'foo %u',
'X-Zim-ReadOnly': False,
'X-Zim-ShowInToolBar': False,
'X-Zim-ReplaceSelection': False,
}
dialog.manager.create(**properties)
dialog.listview.refresh()
dialog.destroy()
## Edit custom tool dialog
dialog = EditCustomToolDialog(self.ui)
input = {
'Name': 'Foo',
'Comment': 'Test Foo',
'X-Zim-ExecTool': 'foo %u',
'X-Zim-ReadOnly': False,
'X-Zim-ShowInToolBar': False,
'X-Zim-ReplaceSelection': False,
}
dialog.form.update(input)
output = dialog.assert_response_ok()
input['Icon'] = None
self.assertEqual(output, input)
def testPropertiesDialog(self):
'''Test PropertiesDialog'''
from zim.gui.propertiesdialog import PropertiesDialog
self.ui.readonly = True
dialog = PropertiesDialog(self.ui)
dialog.assert_response_ok()
from zim.config import INIConfigFile
notebook = self.ui.notebook
file = notebook.dir.file('notebook.zim')
notebook.config = NotebookConfig(file)
self.ui.readonly = False
config1 = {
'name': 'Notebook Foo',
'interwiki': None,
'home': Path('Home'),
'icon': './icon.png',
'document_root': File('/foo').path, # win32 save test
'profile': None,
}
config2 = {
'name': 'Notebook Bar',
'interwiki': 'FooBar',
'home': Path('HomeSweetHome'),
'icon': './picture.png',
'document_root': File('/bar').path, # win32 save test
'profile': 'foo',
}
notebook.save_properties(**config1)
for key in config1:
self.assertEqual(notebook.config['Notebook'][key], config1[key])
dialog = PropertiesDialog(self.ui)
dialog.assert_response_ok()
for key in config1:
self.assertEqual(notebook.config['Notebook'][key], config1[key])
self.assertEqual(notebook.name, config1['name'])
self.assertEqual(notebook.get_home_page(), config1['home'])
self.assertEqual(notebook.icon, notebook.dir.file(config1['icon']).path)
self.assertEqual(notebook.document_root, Dir(config1['document_root']))
dialog = PropertiesDialog(self.ui)
dialog.form.update(config2)
dialog.assert_response_ok()
for key in config1:
self.assertEqual(notebook.config['Notebook'][key], config2[key])
self.assertEqual(notebook.name, config2['name'])
self.assertEqual(notebook.get_home_page(), config2['home'])
self.assertEqual(notebook.icon, notebook.dir.file(config2['icon']).path)
self.assertEqual(notebook.document_root, Dir(config2['document_root']))
def testPreferencesDialog(self):
'''Test PreferencesDialog'''
from zim.gui.preferencesdialog import PreferencesDialog, PluginConfigureDialog
self.clear_tmp_dir()
gui = setupGtkInterface(self)
gui.register_preferences('GtkInterface', zim.gui.ui_preferences)
gui.register_preferences('PageView', zim.gui.pageview.ui_preferences)
self.ui.preferences_register = gui.preferences_register
self.ui.preferences = gui.preferences
self.ui.plugins = gui.plugins
self.ui.config = gui.config
## Test get/set simple value
self.assertEquals(self.ui.preferences['GtkInterface']['toggle_on_ctrlspace'], False)
dialog = PreferencesDialog(self.ui)
self.assertEquals(dialog.forms['Interface']['toggle_on_ctrlspace'], False)
dialog.assert_response_ok()
self.assertEquals(self.ui.preferences['GtkInterface']['toggle_on_ctrlspace'], False)
dialog = PreferencesDialog(self.ui)
dialog.forms['Interface']['toggle_on_ctrlspace'] = True
dialog.assert_response_ok()
self.assertEquals(self.ui.preferences['GtkInterface']['toggle_on_ctrlspace'], True)
## Test font button
text_style = gui.config.get_config_dict('<profile>/style.conf')
text_style['TextView']['font'] = 'Sans 12'
dialog = PreferencesDialog(self.ui)
self.assertEquals(dialog.forms['Interface']['use_custom_font'], True)
dialog.assert_response_ok()
self.assertEqual(text_style['TextView']['font'], 'Sans 12')
self.assertFalse(any(['use_custom_font' in d for d in self.ui.preferences.values()]))
text_style['TextView']['font'] = 'Sans 12'
dialog = PreferencesDialog(self.ui)
self.assertEquals(dialog.forms['Interface']['use_custom_font'], True)
dialog.forms['Interface']['use_custom_font'] = False
dialog.assert_response_ok()
self.assertEqual(text_style['TextView']['font'], None)
self.assertFalse(any(['use_custom_font' in d for d in self.ui.preferences.values()]))
## Plugin Config dialog
from zim.plugins.calendar import CalendarPlugin
plugin = CalendarPlugin()
pref_dialog = PreferencesDialog(self.ui)
dialog = PluginConfigureDialog(pref_dialog, plugin)
dialog.assert_response_ok()
def testTemplateEditorDialog(self):
from zim.gui.templateeditordialog import TemplateEditorDialog
dialog = TemplateEditorDialog(self.ui)
# TODO what to test here ??
dialog.assert_response_ok()
def testRecentChangesDialog(self):
from zim.gui.recentchangesdialog import RecentChangesDialog
self.clear_tmp_dir()
ui = setupGtkInterface(self)
dialog = RecentChangesDialog(ui)
dialog.assert_response_ok()
# Test for ExportDialog can be found in test/export.py
# Test for NotebookDialog is in separate class below
class FilterNoSuchImageWarning(tests.LoggingFilter):
logger = 'zim.gui.pageview'
message = 'No such image:'
@tests.slowTest
class TestGtkInterface(tests.TestCase):
def setUp(self):
self.ui = setupGtkInterface(self)
def tearDown(self):
self.ui.close()
def testInitialization(self):
'''Test Gtk interface initialization'''
# test read only (starts readonly because notebook has no dir or file)
self.assertTrue(self.ui.readonly)
self.ui.set_readonly(False)
self.assertFalse(self.ui.readonly)
self.ui.set_readonly(True)
self.assertTrue(self.ui.readonly)
# TODO more tests for readonly pages etc.
# test populating menus
menu = gtk.Menu()
self.ui.populate_popup('page_popup', menu)
items = menu.get_children()
self.assertGreater(len(items), 3)
# check registering an URL handler
func = tests.Counter(True)
self.ui.register_url_handler('foo', func)
self.ui.open_url('foo://bar')
self.assertTrue(func.count == 1)
self.ui.unregister_url_handler(func)
# check default plugins are loaded
self.assertGreaterEqual(len(self.ui.plugins), 3)
def testMainWindow(self):
'''Test main window'''
path = Path('Test:foo:bar')
window = self.ui.mainwindow
self.assertTrue(window.uistate['show_menubar'])
window.toggle_menubar()
self.assertFalse(window.uistate['show_menubar'])
window.toggle_menubar()
self.assertTrue(window.uistate['show_menubar'])
self.assertTrue(window.uistate['show_toolbar'])
window.toggle_toolbar()
self.assertFalse(window.uistate['show_toolbar'])
window.toggle_toolbar()
self.assertTrue(window.uistate['show_toolbar'])
self.assertTrue(window.uistate['show_statusbar'])
window.toggle_statusbar()
self.assertFalse(window.uistate['show_statusbar'])
window.toggle_statusbar()
self.assertTrue(window.uistate['show_statusbar'])
self.assertTrue(window.uistate['left_pane'][0])
window.toggle_panes()
self.assertFalse(window.uistate['left_pane'][0])
window.toggle_panes()
self.assertTrue(window.uistate['left_pane'][0])
# note: focus starts at sidepane due to toggle_panes above
self.assertEqual(window.get_focus(), window.pageindex.treeview)
self.assertEqual(window.get_selected_path(), path)
window.toggle_sidepane_focus()
self.assertEqual(window.get_focus(), window.pageview.view)
self.assertEqual(window.get_selected_path(), path)
window.toggle_sidepane_focus()
self.assertEqual(window.get_focus(), window.pageindex.treeview)
# TODO also check this with "show_sidepane" off
self.assertEqual(window.uistate['pathbar_type'], zim.gui.PATHBAR_RECENT)
for style in (
zim.gui.PATHBAR_NONE,
zim.gui.PATHBAR_HISTORY,
zim.gui.PATHBAR_PATH,
zim.gui.PATHBAR_RECENT,
):
window.set_pathbar(style)
self.assertEqual(window.uistate['pathbar_type'], style)
# TODO specific test for pathbar to exercize history, add / move / remove pages etc.
# note: no default style here - system default unknown
for style in (
zim.gui.TOOLBAR_ICONS_AND_TEXT,
zim.gui.TOOLBAR_ICONS_ONLY,
zim.gui.TOOLBAR_TEXT_ONLY,
):
window.set_toolbar_style(style)
self.assertEqual(window.preferences['GtkInterface']['toolbar_style'], style)
# note: no default style here - system default unknown
for size in (
zim.gui.TOOLBAR_ICONS_LARGE,
zim.gui.TOOLBAR_ICONS_SMALL,
zim.gui.TOOLBAR_ICONS_TINY,
):
window.set_toolbar_size(size)
self.assertEqual(window.preferences['GtkInterface']['toolbar_size'], size)
# FIXME: test fails because "readonly" not active because notebook was already readonly, so action never activatable
#~ self.assertTrue(ui.readonly)
#~ self.assertTrue(window.uistate['readonly'])
#~ window.toggle_readonly()
#~ self.assertFalse(ui.readonly)
#~ self.assertFalse(window.uistate['readonly'])
#~ window.toggle_readonly()
#~ self.assertTrue(ui.readonly)
#~ self.assertTrue(window.uistate['readonly'])
def testNavigation(self):
'''Test navigating the notebook with gtk interface'''
# build up some history
history = (
Path('Test:foo:bar'),
Path('Test:'),
Path('Test:foo:'),
Path('Test:foo:bar'),
)
for path in history:
self.ui.open_page(path)
self.assertEqual(self.ui.page, path)
# check forward & backward
for path in reversed(history[:-1]):
self.assertTrue(self.ui.open_page_back())
self.assertEqual(self.ui.page, path)
self.assertFalse(self.ui.open_page_back())
for path in history[1:]:
self.assertTrue(self.ui.open_page_forward())
self.assertEqual(self.ui.page, path)
self.assertFalse(self.ui.open_page_forward())
# check upward and downward
for path in (Path('Test:foo:'), Path('Test:')):
self.assertTrue(self.ui.open_page_parent())
self.assertEqual(self.ui.page, path)
self.assertFalse(self.ui.open_page_parent())
for path in (Path('Test:foo:'), Path('Test:foo:bar')):
self.assertTrue(self.ui.open_page_child())
self.assertEqual(self.ui.page, path)
self.assertFalse(self.ui.open_page_child())
# previous and next
self.assertTrue(self.ui.open_page_previous())
self.assertTrue(self.ui.open_page_next())
self.assertEqual(self.ui.page, Path('Test:foo:bar'))
def testSave(self):
'''Test saving a page from the interface'''
self.ui.set_readonly(False)
self.ui.open_page(Path('Non-exsiting:page'))
self.assertFalse(self.ui.page.exists())
self.assertTrue(self.ui.page.get_parsetree() is None)
self.assertTrue(self.ui.mainwindow.pageview._showing_template) # check HACK
self.ui.save_page()
self.assertFalse(self.ui.page.get_parsetree() is None)
def testPageMove(self):
oldpath, newpath = Path('Movers:Stator:Mover'), Path('Movers:Mover')
# Open page and process message queue to sync tree view
indexpath = self.ui.notebook.index.lookup_path(oldpath)
self.ui.open_page(indexpath)
while gtk.events_pending():
gtk.main_iteration(False)
# Test actual moving
page = self.ui.notebook.get_page(oldpath)
text = page.dump('wiki')
self.ui.notebook.index.ensure_update()
self.ui.notebook.move_page(oldpath, newpath)
self.ui.notebook.index.ensure_update()
# newpath should exist and look like the old one
page = self.ui.notebook.get_page(newpath)
self.assertEqual(page.dump('wiki'), text)
# oldpath should be deleted
page = self.ui.notebook.get_page(oldpath)
self.assertFalse(page.haschildren)
self.assertFalse(page.hascontent)
# TODO notebook manipulation (new (sub)page, rename, delete ..)
# merge with tests for dialogs (?)
def testClipboard(self):
self.ui.copy_location()
self.assertEqual(Clipboard.get_text(), 'Test:foo:bar')
@tests.slowTest
class TestClickLink(tests.TestCase):
'''Test to check pageview and GtkInterface play together nicely when
a link is clicked
'''
def setUp(self):
class MyMock(zim.gui.GtkInterface, tests.MockObjectBase):
def __init__(self, *arg, **kwarg):
zim.gui.GtkInterface.__init__(self, *arg, **kwarg)
tests.MockObjectBase.__init__(self)
for method in (
'open_notebook',
'open_page',
'open_file',
'_open_with_emailclient',
'_open_with_webbrowser',
'_open_with_filebrowser',
'_open_with',
):
self.mock_method(method, None)
self.ui = setupGtkInterface(self, klass=MyMock)
def runTest(self):
self.assertRaises(AssertionError, self.ui.open_url, 'foo@bar.com')
# this is not a URI, "mailto:foo@bar.com" is
# Note: same list of test uris is testing in tests.parsing as well
for href, type in (
('zim+file://foo/bar?dus.txt', 'notebook'),
('file:///foo/bar', 'file'),
('http://foo/bar', 'http'),
('http://192.168.168.100', 'http'),
('file+ssh://foo/bar', 'file+ssh'),
('mailto:foo@bar.com', 'mailto'),
('mailto:foo.com', 'page'),
('foo@bar.com', 'mailto'),
('mailto:foo//bar@bar.com', 'mailto'), # is this a valid mailto uri ?
('mid:foo@bar.org', 'mid'),
('cid:foo@bar.org', 'cid'),
('./foo/bar', 'file'),
('/foo/bar', 'file'),
('~/foo', 'file'),
('C:\\foo', 'file'),
('wp?foo', 'interwiki'),
('http://foo?bar', 'http'),
('\\\\host\\foo\\bar', 'smb'),
('foo', 'page'),
('foo:bar', 'page'),
):
#~ print ">> LINK %s (%s)" % (href, type)
#~ self.ui.open_url(href)
self.ui.mainwindow.pageview.do_link_clicked({'href': href})
msg = "Clicked: \"%s\" resulted in: \"%s\"" % (href, self.ui.mock_calls[-1])
if type == 'notebook':
self.assertTrue(self.ui.mock_calls[-1][0] == 'open_notebook', msg=msg)
elif type == 'page':
self.assertTrue(self.ui.mock_calls[-1][0] == 'open_page', msg=msg)
elif type == 'file':
self.assertTrue(self.ui.mock_calls[-1][0] == 'open_file', msg=msg)
elif type == 'mailto':
self.assertTrue(self.ui.mock_calls[-1][0] in ('_open_with_emailclient', '_open_with'), msg=msg)
elif type == 'smb' and os.name == 'nt':
self.assertTrue(self.ui.mock_calls[-1][0] == '_open_with_filebrowser', msg=msg)
else:
self.assertTrue(self.ui.mock_calls[-1][0] in ('_open_with_webbrowser', '_open_with'), msg=msg)
self.ui.mock_calls = [] # reset
# Some more tests that may not be covered above
for href, type in (
('zim+file://foo/bar?dus.txt', 'notebook'),
('file:///foo/bar', 'file'),
('mailto:foo@bar.com', 'mailto'),
):
#~ print ">> OPEN_URL %s (%s)" % (href, type)
self.ui.open_url(href)
msg = "open_url('%s')\nResulted in: %s" % (href, self.ui.mock_calls[-1])
if type == 'notebook':
self.assertTrue(self.ui.mock_calls[-1][0] == 'open_notebook', msg=msg)
elif type == 'file':
self.assertTrue(self.ui.mock_calls[-1][0] == '_open_with_webbrowser', msg=msg)
elif type == 'mailto':
self.assertTrue(self.ui.mock_calls[-1][0] in ('_open_with_emailclient', '_open_with'), msg=msg)
self.ui.mock_calls = [] # reset
# TODO test plugin with custom handler
@tests.slowTest
class TestNotebookDialog(tests.TestCase):
def setUp(self):
config = ConfigManager()
list = config.get_config_file('notebooks.list')
file = list.file
if file.exists():
file.remove()
def runTest(self):
from zim.gui.notebookdialog import prompt_notebook, \
AddNotebookDialog, NotebookDialog
tmpdir = self.create_tmp_dir()
dir1 = Dir(tmpdir + '/mynotebook1')
dir2 = Dir(tmpdir + '/mynotebook2')
# First time we get directly the AddNotebookDialog
def doAddNotebook(dialog):
self.assertTrue(isinstance(dialog, AddNotebookDialog))
dialog.form['name'] = 'Foo'
dialog.form['folder'] = dir1.path
dialog.assert_response_ok()
with tests.DialogContext(doAddNotebook):
info = prompt_notebook()
self.assertIsNotNone(info)
self.assertEqual(info.uri, dir1.uri)
# Second time we get the list
def testNotebookDialog(dialog):
self.assertTrue(isinstance(dialog, NotebookDialog))
selection = dialog.treeview.get_selection()
selection.select_path((0,)) # select first and only notebook
dialog.assert_response_ok()
with tests.DialogContext(testNotebookDialog):
info = prompt_notebook()
self.assertIsNotNone(info)
self.assertEqual(info.uri, dir1.uri)
# Third time we add a notebook and set the default
def doAddNotebook(dialog):
self.assertTrue(isinstance(dialog, AddNotebookDialog))
dialog.form['name'] = 'Bar'
dialog.form['folder'] = dir2.path
dialog.assert_response_ok()
def testAddNotebook(dialog):
self.assertTrue(isinstance(dialog, NotebookDialog))
with tests.DialogContext(doAddNotebook):
dialog.do_add_notebook()
dialog.combobox.set_active(0)
selection = dialog.treeview.get_selection()
selection.select_path((1,)) # select newly added notebook
dialog.assert_response_ok()
with tests.DialogContext(testAddNotebook):
info = prompt_notebook()
self.assertIsNotNone(info)
self.assertEqual(info.uri, dir2.uri)
# Check the notebook exists and the notebook list looks like it should
for dir in (dir1, dir2):
self.assertTrue(dir.exists())
self.assertTrue(dir.file('notebook.zim').exists())
list = get_notebook_list()
self.assertTrue(len(list) == 2)
self.assertEqual(list[0], NotebookInfo(dir1.uri, name='Foo'))
self.assertEqual(list[1], NotebookInfo(dir2.uri, name='Bar'))
self.assertEqual(list.default, NotebookInfo(dir1.uri, name='Foo'))
# Now unset the default and again check the notebook list
def unsetDefault(dialog):
self.assertTrue(isinstance(dialog, NotebookDialog))
dialog.combobox.set_active(-1)
selection = dialog.treeview.get_selection()
selection.select_path((1,)) # select newly added notebook
dialog.assert_response_ok()
with tests.DialogContext(unsetDefault):
info = prompt_notebook()
self.assertIsNotNone(info)
self.assertEqual(info.uri, dir2.uri)
list = get_notebook_list()
self.assertTrue(len(list) == 2)
self.assertTrue(list.default is None)
class MockUI(tests.MockObject):
def __init__(self, page=None, fakedir=None):
tests.MockObject.__init__(self)
self.tmp_dir = self.create_tmp_dir()
if page and not isinstance(page, Path):
self.page = Path(page)
else:
self.page = page
self.mainwindow = None
self.notebook = tests.new_notebook(fakedir=fakedir)
|