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 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
|
# Copyright 2008-2017 Jaap Karssenberg <jaap.karssenberg@gmail.com>
'''Test cases for the zim.notebook module.'''
import tests
from tests import os_native_path
import os
import time
from zim.fs import adapt_from_oldfs
from zim.newfs import LocalFile, LocalFolder, Folder, FileChangedError
from zim.newfs.mock import MockFile
from zim.config import ConfigManager, XDG_CONFIG_HOME
from zim.formats import ParseTree
from zim.formats.wiki import Parser as WikiParser
from zim.parse.links import is_interwiki_keyword_re
from zim.notebook import *
from zim.notebook.notebook import NotebookConfig, IndexNotUptodateError, PageExistsError
from zim.notebook.layout import FilesLayout, FILE_TYPE_PAGE_SOURCE, FILE_TYPE_ATTACHMENT
class TestNotebookInfo(tests.TestCase):
def testLocationToURI(self):
if os.name == 'nt':
test = [
(LocalFile('file:///C:/foo/bar'), 'file:///C:/foo/bar'),
('file:///C:/foo/bar', 'file:///C:/foo/bar'),
('zim+file:///C:/foo?bar', 'zim+file:///C:/foo?bar'),
# specifically ensure the "?" does not get url encoded
]
else:
test = [
(LocalFile('file:///foo/bar'), 'file:///foo/bar'),
('file:///foo/bar', 'file:///foo/bar'),
('zim+file:///foo?bar', 'zim+file:///foo?bar'),
# specifically ensure the "?" does not get url encoded
]
for location, uri in test:
info = NotebookInfo(location)
self.assertEqual(info.uri, uri)
def testRelIconPath(self):
uri = 'file:///C:/foo/bar' if os.name == 'nt' else 'file:///foo/bar'
icon = './my_icon.png'
info = NotebookInfo(uri, icon=icon)
self.assertEqual(info.icon, uri + '/my_icon.png')
def testCreateValidInterwikiKey(self):
for name, key in (
('Foo', 'Foo'),
('Foo Bar', 'Foo_Bar'),
('Foo*Bar', 'Foo_Bar'),
('Foo-Bar', 'Foo-Bar'),
('Foo.Bar', 'Foo.Bar'),
('.Foo.Bar', '_Foo.Bar'),
):
self.assertEqual(create_valid_interwiki_key(name), key)
self.assertTrue(is_interwiki_keyword_re.match(key))
@tests.slowTest
class TestNotebookInfoList(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):
root = self.setUpFolder(name='some_utf8_here_\u0421\u0430\u0439', mock=tests.MOCK_ALWAYS_REAL)
# Start empty - see this is no issue
list = get_notebook_list()
self.assertTrue(isinstance(list, NotebookInfoList))
self.assertTrue(len(list) == 0)
info = list.get_by_name('foo')
self.assertIsNone(info)
# Now create it
dir = root.folder('/notebook')
init_notebook(dir, name='foo')
# And put it in the list and resolve it by name
list = get_notebook_list()
list.append(NotebookInfo(dir.uri, name='foo'))
list.write()
self.assertTrue(len(list) == 1)
self.assertTrue(isinstance(list[0], NotebookInfo))
info = list.get_by_name('foo')
self.assertEqual(info.uri, dir.uri)
self.assertEqual(info.name, 'foo')
newlist = get_notebook_list() # just to be sure re-laoding works..
self.assertTrue(len(list) == 1)
info = newlist.get_by_name('foo')
self.assertEqual(info.uri, dir.uri)
self.assertEqual(info.name, 'foo')
# Add a second entry
if os.name == 'nt':
uri1 = 'file:///C:/foo/bar'
else:
uri1 = 'file:///foo/bar'
list = get_notebook_list()
self.assertTrue(len(list) == 1)
list.append(NotebookInfo(uri1, interwiki='foobar'))
# on purpose do not set name, should default to basename
list.write()
self.assertTrue(len(list) == 2)
self.assertEqual(list[:], [NotebookInfo(dir.uri), NotebookInfo(uri1)])
# And check all works OK
info = list.get_by_name('foo')
self.assertEqual(info.uri, dir.uri)
nb, path = build_notebook(info)
self.assertIsInstance(nb, Notebook)
self.assertIsNone(path)
for name in ('bar', 'Bar'):
info = list.get_by_name(name)
self.assertEqual(info.uri, uri1)
self.assertRaises(FileNotFoundError, build_notebook, info)
# path should not exist
# Test default
list.set_default(uri1)
list.write()
list = get_notebook_list()
self.assertIsNotNone(list.default)
self.assertEqual(list.default.uri, uri1)
# Check interwiki parsing - included here since it interacts with the notebook list
self.assertEqual(interwiki_link('wp?Foo'), 'https://en.wikipedia.org/wiki/Foo')
self.assertEqual(interwiki_link('foo?Foo'), 'zim+' + dir.uri + '?Foo')
self.assertEqual(interwiki_link('foobar?Foo'), 'zim+' + uri1 + '?Foo') # interwiki key
self.assertEqual(interwiki_link('FooBar?Foo'), 'zim+' + uri1 + '?Foo') # interwiki key
self.assertEqual(interwiki_link('bar?Foo'), 'zim+' + uri1 + '?Foo') # name
self.assertEqual(interwiki_link('Bar?Foo'), 'zim+' + uri1 + '?Foo') # name
class TestNotebookInfoListBackwardCompatibility(tests.TestCase):
def runTest(self):
# Check backward compatibility for old file format
# Format is name, value pair separated by whitespace (tab or space)
folder = self.setUpFolder()
file = folder.file('notebook-list-old-format.list')
lines = [
"_default_\tdebug\n",
"Notes\t~/Notes\n",
" \n",
"# some comment \n",
"debug\t%s\n" % os_native_path('/home/user/code/zim.debug').replace('\\', '/'),
"Foo\\ Bar %s\n" % os_native_path('/home/user/Foo Bar').replace('\\', '/').replace(' ', '\\ '),
]
file.writelines(lines)
list = NotebookInfoList(file)
self.assertEqual(list[:], [
NotebookInfo(LocalFolder(path).uri) for path in
map(os_native_path, ('~/Notes', '/home/user/code/zim.debug', '/home/user/Foo Bar'))
])
self.assertEqual(list.default,
NotebookInfo(LocalFolder(os_native_path('/home/user/code/zim.debug')).uri))
@tests.slowTest
class TestResolveNotebook(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):
# First test some paths
if os.name == 'nt':
test_paths = (
('file:///C:/foo/bar', 'file:///C:/foo/bar'),
('~/bar', LocalFolder('~/bar').uri),
)
else:
test_paths =(
('file:///foo/bar', 'file:///foo/bar'),
('~/bar', LocalFolder('~/bar').uri),
)
for input, uri in test_paths:
info = resolve_notebook(input)
self.assertEqual(info.uri, uri)
# Then test with (empty) notebook list
info = resolve_notebook('foobar')
self.assertIsNone(info)
# add an entry and show we get it
root = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
dir = root.folder('foo')
init_notebook(dir, name='foo')
list = get_notebook_list()
list.append(NotebookInfo(dir.uri, name='foo'))
list.write()
info = resolve_notebook('foo')
self.assertIsNotNone(info)
self.assertEqual(info.uri, dir.uri)
@tests.slowTest
class TestBuildNotebook(tests.TestCase):
# Test including automount and uniqueness !
def setUp(self):
folder = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
self.notebookdir = folder.folder('notebook')
script = folder.file('mount.py')
script.write('''\
### NOTE: The script fails when called twice - this is intentional ###
import os
import sys
notebook = sys.argv[1]
notebookfile = notebook + "/notebook.zim"
assert not os.path.exists(notebookfile), "Already exists: %s" % notebookfile
try:
os.mkdir(notebook)
os.mkdir(notebook + '/foo')
except FileExistsError:
pass
for path in (
notebook + "/notebook.zim",
notebook + "/foo/bar.txt"
):
fh = open(path, 'w')
fh.write("")
fh.close()
''')
automount = XDG_CONFIG_HOME.file('zim/automount.conf')
assert not automount.exists(), "Exists: %s" % automount
automount.write('''\
[Path %s]
mount=%s %s
''' % (self.notebookdir.path, script.path, self.notebookdir.path))
#~ def tearDown(self):
#~ automount = XDG_CONFIG_HOME.file('zim/automount.conf')
#~ automount.remove()
def runTest(self):
def mockconstructor(dir):
return dir
nbid = None
for uri, href in (
(self.notebookdir.uri, None), # first run triggers automount
(self.notebookdir.uri, None), # repeat to check automount & check uniqueness
(self.notebookdir.file('notebook.zim').uri, None),
(self.notebookdir.file('foo/bar.txt').uri, HRef.new_from_wiki_link('foo:bar')),
):
info = NotebookInfo(uri)
nb, pl = build_notebook(info)
self.assertEqual(nb.folder.path, self.notebookdir.path)
if pl:
self.assertEqual(pl, href)
else:
self.assertIsNone(pl)
if nbid is None:
nbid = id(nb)
else:
self.assertEqual(id(nb), nbid, 'Check uniqueness')
info = NotebookInfo(self.notebookdir.file('nonexistingfile.txt'))
self.assertRaises(FileNotFoundError, build_notebook, info)
class TestNotebook(tests.TestCase):
def setUp(self):
self.notebook = self.setUpNotebook(content=tests.FULL_NOTEBOOK)
def testAPI(self):
'''Test various notebook methods'''
self.assertTrue(
isinstance(self.notebook.get_home_page(), Page))
page1 = self.notebook.get_page(Path('Tree:foo'))
page2 = self.notebook.get_page(Path('Tree:foo'))
self.assertTrue(id(page2) == id(page1)) # check usage of weakref
page = self.notebook.get_page(Path('Test:foo'))
text = page.dump('plain')
newtext = ['Some new content\n']
assert newtext != text
self.assertEqual(page.dump('plain'), text)
#~ page.parse('plain', newtext)
#~ self.assertEqual(page.dump('plain'), newtext)
#~ self.assertTrue(page.modified)
#~ re = self.notebook.revert_page(page)
#~ self.assertFalse(re) # no return value
#~ self.assertEqual(page.dump('plain'), text) # object reverted
#~ self.assertFalse(page.modified)
self.assertEqual(page.dump('plain'), text)
page.parse('plain', newtext)
self.assertEqual(page.dump('plain'), newtext)
self.notebook.store_page(page)
self.assertEqual(page.dump('plain'), newtext)
# ensure storing empty tree works
emptytree = ParseTree()
self.assertFalse(emptytree.hascontent)
page.set_parsetree(emptytree)
self.notebook.store_page(page)
def testManipulate(self):
'''Test renaming, moving and deleting pages in the notebook'''
# check test setup OK
for path in (Path('Test:BAR'), Path('NewPage')):
page = self.notebook.get_page(path)
self.assertFalse(page.haschildren)
self.assertFalse(page.hascontent)
self.assertFalse(page.exists())
for path in (Path('Test:foo'), Path('TaskList')):
page = self.notebook.get_page(path)
self.assertTrue(page.haschildren or page.hascontent)
self.assertTrue(page.exists())
# check errors
self.assertRaises(PageExistsError,
self.notebook.move_page, Path('Test:foo'), Path('TaskList'))
self.notebook.index.flush()
self.assertFalse(self.notebook.index.is_uptodate)
self.assertRaises(IndexNotUptodateError,
self.notebook.move_page, Path('Test:foo'), Path('Test:BAR'))
self.notebook.index.check_and_update()
# Test actual moving
for oldpath, newpath in (
(Path('Test:foo'), Path('Test:BAR')),
(Path('TaskList'), Path('NewPage:Foo:Bar:Baz')),
):
page = self.notebook.get_page(oldpath)
text = page.dump('wiki')
self.assertTrue(page.haschildren)
self.notebook.move_page(oldpath, newpath)
# newpath should exist and look like the old one
page = self.notebook.get_page(newpath)
self.assertTrue(page.haschildren)
text = [l.replace('[[foo:bar]]', '[[+bar]]') for l in text] # fix one updated link
self.assertEqual(page.dump('wiki'), text)
# oldpath should be deleted
page = self.notebook.get_page(oldpath)
self.assertFalse(page.hascontent, msg="%s still has content" % page)
#self.assertFalse(page.haschildren, msg="%s still has children" % page)
# Can still have remaining placeholders
# Test moving a page below it's own namespace
oldpath = Path('Test:Section')
newpath = Path('Test:Section:newsubpage')
page = self.notebook.get_page(oldpath)
page.parse('wiki', 'Test 123')
self.notebook.store_page(page)
self.notebook.move_page(oldpath, newpath)
page = self.notebook.get_page(newpath)
self.assertEqual(page.dump('wiki'), ['Test 123\n'])
page = self.notebook.get_page(oldpath)
self.assertTrue(page.haschildren)
self.assertFalse(page.hascontent)
# Check delete and cleanup
path = Path('AnotherNewPage:Foo:bar')
page = self.notebook.get_page(path)
page.parse('plain', 'foo bar\n')
self.notebook.store_page(page)
page = self.notebook.get_page(Path('SomePageWithLinks'))
page.parse('wiki',
'[[:AnotherNewPage:Foo:bar]]\n'
'**bold** [[:AnotherNewPage]]\n')
self.notebook.store_page(page)
page = self.notebook.get_page(Path('AnotherNewPage'))
self.assertTrue(page.haschildren)
self.assertFalse(page.hascontent)
nlinks = self.notebook.links.n_list_links_section(page, LINK_DIR_BACKWARD)
self.assertEqual(nlinks, 2)
self.notebook.delete_page(Path('AnotherNewPage:Foo:bar'))
page = self.notebook.get_page(path)
self.assertFalse(page.haschildren)
self.assertFalse(page.hascontent)
self.assertRaises(IndexNotFoundError,
self.notebook.links.n_list_links_section, page, LINK_DIR_BACKWARD)
self.assertRaises(IndexNotFoundError,
self.notebook.links.list_links_section, page, LINK_DIR_BACKWARD)
# if links are removed and placeholder is cleaned up the
# page doesn't exist anymore in the index so we get this error
page = self.notebook.get_page(Path('SomePageWithLinks'))
content = page.dump('wiki')
self.assertEqual(''.join(content),
':AnotherNewPage:Foo:bar\n'
'**bold** [[:AnotherNewPage]]\n')
self.notebook.delete_page(Path('AnotherNewPage:Foo:bar')) # now should fail silently
page = self.notebook.get_page(Path('AnotherNewPage'))
self.assertFalse(page.haschildren)
self.assertFalse(page.hascontent)
nlinks = self.notebook.links.n_list_links_section(page, LINK_DIR_BACKWARD)
self.assertEqual(nlinks, 1)
self.notebook.delete_page(page)
self.assertRaises(IndexNotFoundError,
self.notebook.links.n_list_links_section, page, LINK_DIR_BACKWARD)
self.assertRaises(IndexNotFoundError,
self.notebook.links.list_links_section, page, LINK_DIR_BACKWARD)
# if links are removed and placeholder is cleaned up the
# page doesn't exist anymore in the index so we get this error
page = self.notebook.get_page(Path('SomePageWithLinks'))
content = page.dump('wiki')
self.assertEqual(''.join(content),
':AnotherNewPage:Foo:bar\n'
'**bold** :AnotherNewPage\n')
#~ print('\n==== DB ====')
#~ self.notebook.index.update()
#~ cursor = self.notebook.index.db.cursor()
#~ cursor.execute('select * from pages')
#~ for row in cursor:
#~ print row
#~ cursor.execute('select * from links')
#~ for row in cursor:
#~ print row
# Try rename
page = self.notebook.get_page(Path('Test:wiki'))
self.assertTrue(page.hascontent)
copy = page
# we now have a copy of the page object - this is an important
# part of the test - see if caching of page objects doesn't bite
with tests.LoggingFilter('zim.notebook', message='Number of links'):
self.notebook.move_page(Path('Test:wiki'), Path('Test:foo'))
page = self.notebook.get_page(Path('Test:wiki'))
self.assertFalse(page.hascontent)
page = self.notebook.get_page(Path('Test:foo'))
# If we get an error here because notebook resolves Test:Foo
# probably the index did not clean up placeholders correctly
self.assertTrue(page.hascontent)
def testCaseSensitiveMove(self):
from zim.notebook.index import LINK_DIR_BACKWARD
self.notebook.move_page(Path('Test:foo'), Path('Test:Foo'))
pages = list(self.notebook.pages.list_pages(Path('Test')))
self.assertNotIn(Path('Test:foo'), pages)
self.assertIn(Path('Test:Foo'), pages)
def testResolveFile(self):
'''Test notebook.resolve_file()'''
dir = LocalFolder(self.notebook.folder.path) # XXX - resolve_file does not use mock files
path = Path('Foo:Bar')
self.notebook.config['Notebook']['document_root'] = './notebook_document_root'
doc_root = adapt_from_oldfs(self.notebook.document_root)
self.assertEqual(doc_root, dir.folder('notebook_document_root'))
for link, wanted, cleaned in (
('~/test.txt', LocalFile('~/test.txt'), '~/test.txt'),
(r'~\test.txt', LocalFile('~/test.txt'), '~/test.txt'),
('~/test/', LocalFolder('~/test'), '~/test/'),
(os_native_path('file:///test.txt'), LocalFile(os_native_path('file:///test.txt')), None),
(os_native_path('file:/test.txt'), LocalFile(os_native_path('file:///test.txt')), None),
(os_native_path('file://localhost/test.txt'), LocalFile(os_native_path('file:///test.txt')), None),
('file:///C:/test.txt', LocalFile('file:///C:/test.txt'), None),
('file:///C:/test/', LocalFolder('file:///C:/test'), None),
('/test.txt', doc_root.file('test.txt'), '/test.txt'),
('../../notebook_document_root/test.txt', doc_root.file('test.txt'), '/test.txt'),
('./test.txt', dir.file('Foo/Bar/test.txt'), './test.txt'),
('./test/', dir.folder('Foo/Bar/test'), './test/'),
(r'.\test.txt', dir.file('Foo/Bar/test.txt'), './test.txt'),
('../test.txt', dir.file('Foo/test.txt'), '../test.txt'),
('../test/', dir.folder('Foo/test'), '../test/'),
(r'..\test.txt', dir.file('Foo/test.txt'), '../test.txt'),
('../Bar/Baz/test.txt', dir.file('Foo/Bar/Baz/test.txt'), './Baz/test.txt'),
('../Other/Baz/test.txt', dir.file('Foo/Other/Baz/test.txt'), '../Other/Baz/test.txt'),
('./../Other/Baz/test.txt', dir.file('Foo/Other/Baz/test.txt'), '../Other/Baz/test.txt'),
(r'C:\foo\bar', LocalFile('file:///C:/foo/bar'), None),
(r'Z:\foo\bar', LocalFile('file:///Z:/foo/bar'), None),
(r'Z:\foo\bar\\', LocalFolder('file:///Z:/foo/bar'), None),
):
#print("== LINK", link)
#print('>>', self.notebook.resolve_file(link, path))
if cleaned is not None and not cleaned.startswith('/'):
cleaned = os_native_path(cleaned)
self.assertEqual(
self.notebook.resolve_file(link, path), wanted)
self.assertEqual(
self.notebook.relative_filepath(wanted, path), cleaned)
# check relative path without Path
self.assertEqual(
self.notebook.relative_filepath(doc_root.file('foo.txt')), '/foo.txt')
self.assertEqual(
self.notebook.relative_filepath(dir.file('foo.txt')), os_native_path('./foo.txt'))
def testReadOnlyNotebookGivesReadOnlyPages(self):
page = self.notebook.get_page(Path('Test'))
self.assertFalse(page.readonly)
self.notebook._page_cache.clear() # XXX
self.notebook.readonly = True # XXX: should not be assigned like this in normal application usage
page = self.notebook.get_page(Path('Test'))
self.assertTrue(page.readonly)
class TestNotebookCaseInsensitiveFileSystem(TestNotebook):
def setUp(self):
TestNotebook.setUp(self)
fs = self.notebook.folder._fs
fs.set_case_sensitive(False)
def testReallyCaseInsensitive(self):
page1 = self.notebook.get_page(Path('PAGE'))
page2 = self.notebook.get_page(Path('page'))
file1 = page1.source_file
file2 = page2.source_file
self.assertNotEqual(file1.path, file2.path)
self.assertTrue(file1.isequal(file2))
file1.write('TEST 123')
self.assertEqual(file2.read(), 'TEST 123')
@tests.slowTest
class TestEndOfLine(tests.TestCase):
def _test_eol(self, eol, literal_eol):
dir = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
config = NotebookConfig(dir.file('notebook.zim'))
config['Notebook']['endofline'] = eol
config.write()
notebook, x = build_notebook(dir)
page = notebook.get_page(Path('Test'))
page.parse('wiki', 'test 123\n456\n')
notebook.store_page(page)
with open(page.source_file.path, 'rb') as fh:
text = fh.read()
self.assertTrue(text.endswith(literal_eol))
def testUnix(self):
self._test_eol('unix', b'\n')
def testWindows(self):
self._test_eol('dos', b'\r\n')
@tests.slowTest
class TestNotebookSharedProperty(tests.TestCase):
def _create_notebook(self, shared):
folder = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
config = NotebookConfig(folder.file('notebook.zim'))
config['Notebook']['shared'] = shared
config.write()
notebook = Notebook.new_from_dir(folder)
return notebook
def testSharedTrue(self):
notebook = self._create_notebook(shared=True)
self.assertFalse(notebook.cache_dir.ischild(notebook.folder))
def testSharedFalse(self):
notebook = self._create_notebook(shared=False)
self.assertTrue(notebook.cache_dir.ischild(notebook.folder))
@tests.slowTest
class TestEmptyNotebookFolderNotRemoved(tests.TestCase):
# Due to "clenup" on removing tmp files an emty folder can be removed
# ensure this does not happen during initalization when using an empty
# folder as notebook
def runTest(self):
folder = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
folder.touch()
self.assertTrue(folder.exists())
notebook = Notebook.new_from_dir(folder)
self.assertTrue(folder.exists())
class TestUpdateLinksOnMovePage(tests.TestCase):
def getNotebookContent(self, notebook):
pages = {}
for path in notebook.pages.walk():
page = notebook.get_page(path)
content = page.dump('wiki')
pages[path.name] = ''.join(content)
return pages
def getNotebookLinks(self, notebook):
links = set()
for path in notebook.pages.walk():
for link in notebook.links.list_links(path):
links.add((link.source.name, link.target.name))
return links
def movePage(self, pre, move, post, update_links=True):
notebook = self.setUpNotebook(content=pre[0])
self.assertEqual(self.getNotebookLinks(notebook), set(pre[1]))
with tests.LoggingFilter('zim.notebook', message='Number of links after move'):
notebook.move_page(Path(move[0]), Path(move[1]), update_links=update_links)
self.assertEqual(self.getNotebookContent(notebook), post[0])
self.assertEqual(self.getNotebookLinks(notebook), set(post[1]))
def testFloatingLink(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B': '[[A]]\n[[A|page a]]\n[[A#anchor]]\n'},
[('B', 'A')]
),
move=('A', 'C'),
post=(
{'C': 'test 123\n', 'B': '[[C]]\n[[C|page a]]\n[[C#anchor]]\n'},
[('B', 'C')]
)
)
def testFloatingLinkOnceRemoved(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B:B1': '[[A]]\n'},
[('B:B1', 'A')]
),
move=('A', 'C'),
post=(
{'C': 'test 123\n', 'B:B1': '[[C]]\n', 'B': ''},
[('B:B1', 'C')]
)
)
def testFloatingLinkNotChanged(self):
self.movePage(
pre=(
{'SomePage:A': 'Test 123\n', 'SomePage:B': '[[SomePage]]\n'},
[('SomePage:B', 'SomePage')]
),
move=('SomePage:A', 'OtherPage:SomePage'),
post=(
{'OtherPage:SomePage': 'Test 123\n', 'SomePage:B': '[[SomePage]]\n', 'SomePage': '', 'OtherPage': ''},
[('SomePage:B', 'SomePage')]
)
)
def testFloatingLinkToChildPage(self):
self.movePage(
pre=(
{'A:A1': 'test 123\n', 'B:B1': '[[A:A1]]\n'},
[('B:B1', 'A:A1')]
),
move=('A', 'C'),
post=(
{'C:A1': 'test 123\n', 'B:B1': '[[C:A1]]\n', 'B': '', 'C': ''},
[('B:B1', 'C:A1')]
)
)
def testFloatingLinkViaParent(self):
self.movePage(
pre=(
{'Parent:A': 'test 123\n', 'Parent:B': '[[Parent:A]]\n'},
[('Parent:B', 'Parent:A')]
),
move=('Parent:A', 'Parent:C'),
post=(
{'Parent:C': 'test 123\n', 'Parent:B': '[[C]]\n', 'Parent': ''},
[('Parent:B', 'Parent:C')]
)
)
def testFloatingLinkWithFallback(self):
# floating link that can resolve higher up as well
self.movePage(
pre=(
{'A': 'test 123\n', 'B:A': 'test 123\n', 'B:B1': '[[A]]\n'},
[('B:B1', 'B:A')],
),
move=('B:A', 'C'),
post=(
{'A': 'test 123\n', 'C': 'test 123\n', 'B:B1': '[[C]]\n', 'B': ''},
[('B:B1', 'C')],
)
)
def testFloatingLinkFromChildToChild(self):
self.movePage(
pre=(
{'A:Child1': '[[Child2]]\n', 'A:Child2': 'Test123\n'},
[('A:Child1', 'A:Child2')]
),
move=('A', 'B'),
post=(
{'B:Child1': '[[Child2]]\n', 'B:Child2': 'Test123\n', 'B': ''},
[('B:Child1', 'B:Child2')]
)
)
def testFloatingLinkFromGrandchildToOtherChild(self):
self.movePage(
pre=(
{'A:Child1:GrandChild': '[[Child2]]\n', 'A:Child2': 'Test123\n'},
[('A:Child1:GrandChild', 'A:Child2')]
),
move=('A', 'B'),
post=(
{'B:Child1:GrandChild': '[[Child2]]\n', 'B:Child2': 'Test123\n', 'B': '', 'B:Child1': ''},
[('B:Child1:GrandChild', 'B:Child2')]
)
)
def testFloatingLinkFromChildToChildViaMovedPage(self):
self.movePage(
pre=(
{'A:Child1': '[[A:Child2]]\n', 'A:Child2': 'Test123\n'},
[('A:Child1', 'A:Child2')]
),
move=('A', 'B'),
post=(
{'B:Child1': '[[Child2]]\n', 'B:Child2': 'Test123\n', 'B': ''},
[('B:Child1', 'B:Child2')]
)
)
def testFloatingLinkFromChildToChildViaParent(self):
self.movePage(
pre=(
{'Parent:A:Child1': '[[A:Child2]]\n', 'Parent:A:Child2': 'Test123\n'},
[('Parent:A:Child1', 'Parent:A:Child2')]
),
move=('Parent:A', 'Parent:B'),
post=(
{'Parent:B:Child1': '[[Child2]]\n', 'Parent:B:Child2': 'Test123\n', 'Parent': '', 'Parent:B': ''},
[('Parent:B:Child1', 'Parent:B:Child2')]
)
)
def testFloatingLinkFromMovedPageNotChangedIfNotNeeded(self):
self.movePage(
pre=(
{'A': '[[B]]\n', 'B': 'test 123\n'},
[('A', 'B')],
),
move=('A', 'C:C1'),
post=(
{'C:C1': '[[B]]\n', 'B': 'test 123\n', 'C': ''},
[('C:C1', 'B')],
)
)
def testFloatingLinkFromMovedPageChangedIfNeeded(self):
self.movePage(
pre=(
{'A': '[[B]]\n', 'B': 'test 123\n', 'C:B': 'test 123\n'},
[('A', 'B')],
),
move=('A', 'C:C1'),
post=(
{'C:C1': '[[:B]]\n', 'B': 'test 123\n', 'C:B': 'test 123\n', 'C': ''},
[('C:C1', 'B')],
)
)
def testFloatingLinkWithinMovedPageNotChanged(self):
self.movePage(
pre=({
'TheParent': 'Loves [[+FirstChild]] and [[+SecondChild]]',
'TheParent:FirstChild': 'Hates the [[SecondChild|other one]]',
'TheParent:SecondChild': 'Loves the [[FirstChild]]',
},
[
('TheParent', 'TheParent:FirstChild'),
('TheParent', 'TheParent:SecondChild'),
('TheParent:FirstChild', 'TheParent:SecondChild'),
('TheParent:SecondChild', 'TheParent:FirstChild'),
]
),
move=('TheParent', 'NewName'),
post=({
'NewName': 'Loves [[+FirstChild]] and [[+SecondChild]]\n',
'NewName:FirstChild': 'Hates the [[SecondChild|other one]]\n',
'NewName:SecondChild': 'Loves the [[FirstChild]]\n',
},
[
('NewName', 'NewName:FirstChild'),
('NewName', 'NewName:SecondChild'),
('NewName:FirstChild', 'NewName:SecondChild'),
('NewName:SecondChild', 'NewName:FirstChild'),
]
)
)
def testFloatingLinkToSelf(self):
self.movePage(
pre=({'A': '[[A]]\n'}, [('A', 'A')]),
move=('A', 'B'),
post=({'B': '[[B]]\n'}, [('B', 'B')])
)
def testAbsoluteLink(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B:B1': '[[:A]]\n'},
[('B:B1', 'A')]
),
move=('A', 'C'),
post=(
{'C': 'test 123\n', 'B:B1': '[[:C]]\n', 'B': ''},
[('B:B1', 'C')]
)
)
def testAbsoluteLinkToChildPage(self):
self.movePage(
pre=(
{'A:A1': 'test 123\n', 'B:B1': '[[:A:A1]]\n'},
[('B:B1', 'A:A1')],
),
move=('A', 'C'),
post=(
{'C:A1': 'test 123\n', 'B:B1': '[[:C:A1]]\n', 'C': '', 'B': ''},
[('B:B1', 'C:A1')],
)
)
def testAbsoluteLinkFromChildToParent(self):
self.movePage(
pre=(
{'A:Child1': '[[:A]]\n'},
[('A:Child1', 'A')]
),
move=('A', 'B'),
post=(
{'B:Child1': '[[:B]]\n', 'B': ''},
[('B:Child1', 'B')]
)
)
def testAbsoluteLinkFromChildToChild(self):
self.movePage(
pre=(
{'A:Child1': '[[:A:Child2]]\n', 'A:Child2': 'Test123\n'},
[('A:Child1', 'A:Child2')]
),
move=('A', 'B'),
post=(
{'B:Child1': '[[:B:Child2]]\n', 'B:Child2': 'Test123\n', 'B': ''},
[('B:Child1', 'B:Child2')]
)
)
def testAbsoluteLinkFromMovedPageNotChanged(self):
self.movePage(
pre=(
{'A': '[[:B]]\n', 'B': 'test 123\n', 'C:B': 'test 123\n'},
[('A', 'B')],
),
move=('A', 'C:C1'),
post=(
{'C:C1': '[[:B]]\n', 'B': 'test 123\n', 'C:B': 'test 123\n', 'C': ''},
[('C:C1', 'B')],
)
)
def testAbsoluteLinkToSelf(self):
self.movePage(
pre=({'A': '[[:A]]\n'}, [('A', 'A')]),
move=('A', 'B'),
post=({'B': '[[:B]]\n'}, [('B', 'B')])
)
def testRelativeLink(self):
self.movePage(
pre=(
{'A': '[[+A1]]\n', 'A:A1': 'test 123\n'},
[('A', 'A:A1')]
),
move=('A:A1', 'A:C'),
post=(
{'A': '[[+C]]\n', 'A:C': 'test 123\n'},
[('A', 'A:C')]
)
)
def testRelativeLinkToChild(self):
self.movePage(
pre=(
{'Parent': '[[+A:Child]]\n', 'Parent:A:Child': 'test 123\n'},
[('Parent', 'Parent:A:Child')]
),
move=('Parent:A', 'Parent:C'),
post=(
{'Parent': '[[+C:Child]]\n', 'Parent:C:Child': 'test 123\n', 'Parent:C': ''},
[('Parent', 'Parent:C:Child')]
)
)
def testRelativeLinkFromMovedPageNotChanged(self):
self.movePage(
pre=(
{'A': '[[+Child]]\n', 'A:Child': 'test 123\n'},
[('A', 'A:Child')]
),
move=('A', 'B'),
post=(
{'B': '[[+Child]]\n', 'B:Child': 'test 123\n'},
[('B', 'B:Child')]
)
)
def testTextNotChangedForLinkWithText(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B': '[[A|Text]]\n'},
[('B', 'A')]
),
move=('A', 'C'),
post=(
{'C': 'test 123\n', 'B': '[[C|Text]]\n'},
[('B', 'C')]
)
)
def testShortNamesAsTextUpdated(self):
# Short link name behavior in this case is *not* depending on notebook
# property - should always do the logical thing
self.movePage(
pre=(
{'SomePage:A': 'test 123\n', 'B': '[[SomePage:A|A]]\n'},
[('B', 'SomePage:A')]
),
move=('SomePage:A', 'SomePage:C'),
post=(
{'SomePage': '', 'SomePage:C': 'test 123\n', 'B': '[[SomePage:C|C]]\n'},
[('B', 'SomePage:C')]
)
)
def testOtherLinksNotChanged(self):
self.movePage(
pre=(
{
'A': '[[A]]\n[[wiki?Page]]\n',
'B': '[[A]]\nhttp://example.com\nwp?example\nmailto:user@example.com\n'
}, [('A', 'A'), ('B', 'A')]
),
move=('A', 'C'),
post=(
{
'C': '[[C]]\n[[wiki?Page]]\n',
'B': '[[C]]\nhttp://example.com\nwp?example\nmailto:user@example.com\n'
}, [('C', 'C'), ('B', 'C')]
)
)
def testMultipleLinksOnePage(self):
self.movePage(
pre=({
'A': 'test 123\n',
'A:A1': 'test 123\n',
'B': '[[A]]\n[[:A]]\n[[D]]\n[[A:A1]]\n',
'D': 'test 123\n',
},
[('B', 'A'), ('B', 'A:A1'), ('B', 'D')]
),
move=('A', 'C'),
post=({
'C': 'test 123\n',
'C:A1': 'test 123\n',
'B': '[[C]]\n[[:C]]\n[[D]]\n[[C:A1]]\n',
'D': 'test 123\n',
},
[('B', 'C'), ('B', 'C:A1'), ('B', 'D')]
)
)
def testMovePlaceholder(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B': '[[C]]\n'},
[('B', 'C')]
),
move=('C', 'A'),
post=(
{'A': 'test 123\n', 'B': '[[A]]\n'},
[('B', 'A')]
)
)
def testRenamePlaceholder(self):
self.movePage(
pre=(
{'A': 'test 123\n', 'B': '[[C]]\n'},
[('B', 'C')]
),
move=('C', 'D'),
post=(
{'A': 'test 123\n', 'B': '[[D]]\n', 'D': ''},
[('B', 'D')]
)
)
def testFloatingLinkFromNestedPage(self):
# Based on report issue #1725
# These links are technically floating even though they look like the
# full path. Default "insert link" will produce this format.
# Error happened because when updating "Calendar:Week 1" the link
# "Project" resolves to "Calendar:Project" which has no relation with
# the old root and we need to figure out the floating behavior.
self.movePage(
pre=(
{
'Archive': 'test 123\n',
'Calendar': '[[Project]]\n[[Project:Note]]\n',
'Calendar:Week 1': '[[Project]]\n[[Project:Note]]\n',
'Project': 'test 123\n',
'Project:Note': 'test 123\n',
},
[
('Calendar', 'Project'),
('Calendar', 'Project:Note'),
('Calendar:Week 1', 'Project'),
('Calendar:Week 1', 'Project:Note'),
]
),
move=('Project', 'Archive:Project'),
post=(
{
'Archive': 'test 123\n',
'Archive:Project': 'test 123\n',
'Archive:Project:Note': 'test 123\n',
'Calendar': '[[Archive:Project]]\n[[Archive:Project:Note]]\n',
'Calendar:Week 1': '[[Archive:Project]]\n[[Archive:Project:Note]]\n',
},
[
('Calendar', 'Archive:Project'),
('Calendar', 'Archive:Project:Note'),
('Calendar:Week 1', 'Archive:Project'),
('Calendar:Week 1', 'Archive:Project:Note'),
]
)
)
def testFloatingLinkFromNestedPage2(self):
# Based on report issue #1725
# Additional issue found while deep diving this issue: need to check
#
# To reproduce that case, run same test as above but *without* updating
# links. Here only link database should be updated on target of the
# links. Before the fix "Calendar:Week 1" kept referring to "Project",
# which seems correct, but isn't because it creates a circular dependency
# between placeholders from "Calendar" and "Calendar:Week 1".
self.movePage(
pre=(
{
'Archive': 'test 123\n',
'Calendar': '[[Project]]\n[[Project:Note]]\n',
'Calendar:Week 1': '[[Project]]\n[[Project:Note]]\n',
'Project': 'test 123\n',
'Project:Note': 'test 123\n',
},
[
('Calendar', 'Project'),
('Calendar', 'Project:Note'),
('Calendar:Week 1', 'Project'),
('Calendar:Week 1', 'Project:Note'),
]
),
move=('Project', 'Archive:Project'),
update_links=False,
post=(
{
'Archive': 'test 123\n',
'Archive:Project': 'test 123\n',
'Archive:Project:Note': 'test 123\n',
'Calendar': '[[Project]]\n[[Project:Note]]\n',
'Calendar:Week 1': '[[Project]]\n[[Project:Note]]\n',
'Project': '',
'Project:Note': '',
'Calendar:Project': '',
'Calendar:Project:Note': '',
},
[
('Calendar', 'Project'),
('Calendar', 'Project:Note'),
('Calendar:Week 1', 'Calendar:Project'),
('Calendar:Week 1', 'Calendar:Project:Note'),
]
)
)
class TestUpdateCacheOnMovePage(tests.TestCase):
# This test case is based on a bug report (issue #1689) where the state
# of the page objects is not properly updated when moving back to a location
# with an existing page object state including a textbuffer.
# For completeness also added version without buffer
def testMoveBackForthWithTextBuffer(self):
self.move_back_forth(with_text_buffer=True)
def testMoveBackForthWithOutTextBuffer(self):
self.move_back_forth(with_text_buffer=False)
def move_back_forth(self, with_text_buffer):
notebook = self.setUpNotebook(mock=tests.MOCK_DEFAULT_REAL, content=('page1',))
page1 = notebook.get_page(Path('page1'))
if with_text_buffer:
buffer1 = page1.get_textbuffer(MockTextBuffer)
self.assertIn('test 123', ''.join(page1.dump('wiki')))
notebook.move_page(page1, Path('page2'))
page2 = notebook.get_page(Path('page2'))
if with_text_buffer:
buffer2 = page1.get_textbuffer(MockTextBuffer)
self.assertEqual(''.join(page1.dump('wiki')), '')
self.assertIn('test 123', ''.join(page2.dump('wiki')))
notebook.move_page(page2, Path('page1'))
self.assertIn('test 123', ''.join(page1.dump('wiki')))
self.assertEqual(''.join(page2.dump('wiki')), '')
class TestPath(tests.TestCase):
'''Test path object'''
def generator(self, name):
return Path(name)
def testValidPageName(self):
for name in ('test', 'test this', 'test (this)', 'test:this (2)', '1) foo'):
Path.assertValidPageName(name) # raises if error
self.assertEqual(Path.makeValidPageName(name), name)
for name, validname in (
(':test', 'test'),
('+test', 'test'),
('foo:_bar', 'foo:bar'),
('foo::bar', 'foo:bar'),
('foo#bar', 'foobar'),
(') foo', 'foo')
):
self.assertRaises(AssertionError, Path.assertValidPageName, name)
self.assertEqual(Path.makeValidPageName(name), validname)
Path.assertValidPageName(validname) # raises if error
def testPathObject(self):
'''Test Path object'''
for name, namespace, basename in [
('Test:foo', 'Test', 'foo'),
('Test', '', 'Test'),
]:
# test name
Path.assertValidPageName(name)
self.assertEqual(Path.makeValidPageName(name), name)
# get object
path = self.generator(name)
# test basic properties
self.assertEqual(path.name, name)
self.assertEqual(path.basename, basename)
self.assertEqual(path.namespace, namespace)
self.assertTrue(path.name in path.__repr__())
# test equality
path = self.generator('Foo:Bar')
self.assertTrue(path == Path('Foo:Bar'))
self.assertFalse(path == Path('Dus'))
self.assertTrue(path.ischild(Path('Foo')))
self.assertFalse(path.ischild(Path('Foo:Bar')))
self.assertTrue(path.match_namespace(Path('Foo')))
self.assertTrue(path.match_namespace(Path('Foo:Bar')))
self.assertFalse(path.match_namespace(Path('Foo:Bar:Baz')))
# TODO test operators on paths > < + - >= <= == !=
class TestShortestUniqueNames(tests.TestCase):
def runTest(self):
from zim.notebook.page import shortest_unique_names
paths = [
Path('Test'),
Path('Foo'),
Path('2017:03:01'),
Path('2018:03:01'),
Path('2018:02:01'),
Path('Foo:Bar'),
Path('Dus:Foo')
]
wanted = [
'Test',
'Foo',
'2017:03:01',
'2018:03:01',
'02:01',
'Bar',
'Dus:Foo'
]
self.assertEqual(shortest_unique_names(paths), wanted)
class TestHRefFromWikiLink(tests.TestCase):
def runTest(self):
for link, rel, names, properlink in (
('Foo:::Bar', HREF_REL_FLOATING, 'Foo:Bar', 'Foo:Bar'),
(':Foo:', HREF_REL_ABSOLUTE, 'Foo', ':Foo'),
(':<Foo>:', HREF_REL_ABSOLUTE, 'Foo', ':Foo'),
('+Foo:Bar', HREF_REL_RELATIVE, 'Foo:Bar', '+Foo:Bar'),
('Child2:AAA', HREF_REL_FLOATING, 'Child2:AAA', 'Child2:AAA'),
('Foo Bar', HREF_REL_FLOATING, 'Foo Bar', 'Foo Bar'),
('Foo_Bar', HREF_REL_FLOATING, 'Foo Bar', 'Foo Bar'),
('#anchor', HREF_REL_FLOATING, '', '#anchor'),
(':Foo#anchor', HREF_REL_ABSOLUTE, 'Foo', ':Foo#anchor'),
('+Foo#anchor', HREF_REL_RELATIVE, 'Foo', '+Foo#anchor'),
('#anchor', HREF_REL_FLOATING, '', '#anchor'),
):
href = HRef.new_from_wiki_link(link)
self.assertEqual(href.rel, rel)
self.assertEqual(href.names, names)
self.assertEqual(href.to_wiki_link(), properlink)
class TestPage(TestPath):
'''Test page object'''
def generator(self, name):
file = MockFile('/mock/test/page.txt')
folder = MockFile('/mock/test/page/')
return Page(Path(name), False, file, folder, 'wiki')
def testPageObject(self):
'''Test Page object'''
tree = ParseTree().fromstring('''\
<zim-tree>
<link href='foo:bar'>foo:bar</link>
<link href='bar'>bar</link>
<tag name='baz'>@baz</tag>
<anchor name='bottom'>#bottom</anchor>
</zim-tree>
''' )
page = self.generator('Foo')
page.set_parsetree(tree)
self.assertEqual(page.get_parsetree().tostring(), tree.tostring())
# ensure we didn't change the tree
# TODO test get / set parse tree with and without source
tree = ParseTree().fromstring('<zim-tree></zim-tree>')
self.assertFalse(tree.hascontent)
page.set_parsetree(tree)
self.assertFalse(page.hascontent)
def testShouldAutochangeHeading(self):
file = MockFile('/mock/test/page.txt')
folder = MockFile('/mock/test/page/')
page = Page(Path('Foo'), False, file, folder, 'wiki')
tree = ParseTree().fromstring('<zim-tree></zim-tree>')
tree.set_heading_text("Foo")
page.set_parsetree(tree)
self.assertTrue(page.heading_matches_pagename())
tree.set_heading_text("Bar")
page.set_parsetree(tree)
self.assertFalse(page.heading_matches_pagename())
def testPageSource(self):
file = MockFile('/mock/test/page.txt')
folder = MockFile('/mock/test/page/')
page = Page(Path('Foo'), False, file, folder, 'wiki')
self.assertFalse(page.readonly)
self.assertFalse(page.hascontent)
self.assertIsNone(page.ctime)
self.assertIsNone(page.mtime)
self.assertIsNone(page.get_parsetree())
page1 = Page(Path('Foo'), False, file, folder, 'wiki')
self.assertTrue(page.isequal(page1))
tree = ParseTree().fromstring('''\
<zim-tree>
<link href='foo:bar'>foo:bar</link>
<link href='bar'>bar</link>
<tag name='baz'>@baz</tag>
<anchor name='bottom'>#bottom</anchor>
</zim-tree>
''' )
page.set_parsetree(tree)
page._store()
self.assertTrue(file.exists())
self.assertTrue(page.hascontent)
self.assertIsInstance(page.ctime, float)
self.assertIsInstance(page.mtime, float)
lines = file.readlines()
self.assertEqual(lines[0], 'Content-Type: text/x-zim-wiki\n')
self.assertEqual(lines[1][:11], 'Wiki-Format')
self.assertEqual(lines[2][:13], 'Creation-Date')
self.assertEqual(page.get_parsetree(), tree)
self.assertTrue(page.isequal(page1))
self.assertTrue(page1.hascontent)
self.assertIsInstance(page1.ctime, float)
self.assertIsInstance(page1.mtime, float)
self.assertIsNotNone(page1.get_parsetree())
file.write('foo 123')
page.set_parsetree(tree)
self.assertRaises(FileChangedError, page._store)
### Custom header should be preserved
### Also when setting new ParseTree - e.g. after edting
file.writelines(lines[0:3] + ['X-Custom-Header: MyTest'] + lines[3:])
page = Page(Path('Foo'), False, file, folder, 'wiki')
tree = page.get_parsetree()
page.set_parsetree(tree)
page._store()
lines = file.readlines()
self.assertEqual(lines[0], 'Content-Type: text/x-zim-wiki\n')
self.assertEqual(lines[1][:11], 'Wiki-Format')
self.assertEqual(lines[2][:13], 'Creation-Date')
self.assertEqual(lines[3], 'X-Custom-Header: MyTest\n')
newtree = ParseTree().fromstring('<zim-tree>Test 123</zim-tree>')
page.set_parsetree(newtree)
page._store()
lines = file.readlines()
self.assertEqual(lines[0], 'Content-Type: text/x-zim-wiki\n')
self.assertEqual(lines[1][:11], 'Wiki-Format')
self.assertEqual(lines[2][:13], 'Creation-Date')
self.assertEqual(lines[3], 'X-Custom-Header: MyTest\n')
###
def testReloadOnChanged(self):
page = self.generator('Test')
file = page.source_file
tree = ParseTree().fromstring('<zim-tree>ABC\n</zim-tree>\n')
buffer = page.get_textbuffer(MockTextBuffer)
self.assertFalse(page.check_source_changed())
page.set_parsetree(tree)
self.assertEqual(page.dump('wiki'), ['ABC\n'])
self.assertFalse(page.check_source_changed())
file.write('DEF\n')
self.assertEqual(page.dump('wiki'), ['ABC\n'])
self.assertTrue(page.check_source_changed())
self.assertEqual(page.dump('wiki'), ['DEF\n'])
self.assertFalse(page.check_source_changed())
def testCanReloadTextBufferIfReadonly(self):
# This is a crucial feature to allow unblocking the application if
# a read-only textbuffer got modified due to a bug
page = self.generator('Test')
page._readonly = True # XXX: never do this in application code
buffer = page.get_textbuffer(MockTextBuffer)
tree = ParseTree().fromstring('<zim-tree>ABC\n</zim-tree>\n')
buffer.set_parsetree(tree)
buffer.set_modified(True)
page.reload_textbuffer()
self.assertFalse(buffer.get_modified())
def testEmptyFile(self):
self._testEmptyFile('')
def testEmptyFileOnlyHeaders(self):
self._testEmptyFile(
'Content-Type: text/x-zim-wiki\n'
'Wiki-Format: zim 0.6\n'
'Creation-Date: 2015-11-01T16:28:31+01:00\n'
'\n'
)
def _testEmptyFile(self, text):
page = self.generator('empty_page')
page.source_file.write(text)
with tests.LoggingFilter('zim.parse', 'Parser got empty string'):
parsetree = page.get_parsetree()
self.assertFalse(parsetree.hascontent)
class MockTextBuffer(object):
def __init__(self, parsetree):
self.parsetree = parsetree
self.modified = False
def set_modified(self, modified):
self.modified = modified
def get_modified(self):
return self.modified
def connect(self, *a):
pass
def set_parsetree(self, parsetree):
self.parsetree = parsetree
def get_parsetree(self):
return self.parsetree
def clear(self):
self.parsetree = None
class TestMovePageNewNotebook(tests.TestCase):
def runTest(self):
'''Try populating a notebook from scratch'''
# Based on bug lp:511481 - should reproduce bug with updating links to child pages
notebook = self.setUpNotebook()
for name, text in (
('page1', 'Foo bar\n'),
('page1:child', 'I have backlinks !\n'),
('page2', '[[page1:child]] !\n'),
('page3', 'Hmm\n'),
):
path = Path(name)
page = notebook.get_page(path)
page.parse('wiki', text)
notebook.store_page(page)
for name, forw, backw in (
('page1', 0, 0),
('page1:child', 0, 1),
('page2', 1, 0),
('page3', 0, 0),
):
path = Path(name)
self.assertEqual(
notebook.links.n_list_links(path, LINK_DIR_FORWARD), forw)
self.assertEqual(
notebook.links.n_list_links(path, LINK_DIR_BACKWARD), backw)
self.assertRaises(IndexNotFoundError,
notebook.links.n_list_links, Path('page3:page1'), LINK_DIR_FORWARD
)
notebook.move_page(Path('page1'), Path('page3:page1'))
for name, forw, backw in (
('page2', 1, 0),
('page3', 0, 0),
('page3:page1', 0, 0),
('page3:page1:child', 0, 1),
):
path = Path(name)
self.assertEqual(
notebook.links.n_list_links(path, LINK_DIR_FORWARD), forw)
self.assertEqual(
notebook.links.n_list_links(path, LINK_DIR_BACKWARD), backw)
self.assertRaises(IndexNotFoundError,
notebook.links.n_list_links, Path('page1'), LINK_DIR_FORWARD
)
text = ''.join(notebook.get_page(Path('page3:page1:child')).dump('wiki'))
self.assertEqual(text, 'I have backlinks !\n')
@tests.slowTest
class TestPageChangeFile(tests.TestCase):
# Test case to ensure page caching doesn't bite after page has
# changed on disk. This is important for use cases where an
# open/cached page gets modified by e.g. syncing Dropbox.
# Reloading the pageshould show the changes.
def runTest(self):
dir = self.setUpFolder(mock=tests.MOCK_ALWAYS_REAL)
notebook = Notebook.new_from_dir(dir)
page = notebook.get_page(Path('SomePage'))
file = LocalFile(page.source_file.path)
self.assertIsNot(file, page.source_file)
def change_file(file, text):
old = file.mtime()
file.write(text)
while file.mtime() == old:
time.sleep(0.01) # new mtime
file.write(text)
## First we don't keep ref, but change params quick enough
## that caching will not have time to clean up
page.parse('wiki', 'Test 123\n')
notebook.store_page(page)
# Page as we stored it
page = notebook.get_page(Path('SomePage'))
self.assertEqual(page.dump('wiki'), ['Test 123\n'])
# Now we change the file and want to see the change
change_file(file, 'Test 5 6 7 8\n')
page = notebook.get_page(Path('SomePage'))
self.assertEqual(page.dump('wiki'), ['Test 5 6 7 8\n'])
## Repeat but keep refs explicitly
page1 = notebook.get_page(Path('SomeOtherPage'))
page1.parse('wiki', 'Test 123\n')
notebook.store_page(page1)
# Page as we stored it
page2 = notebook.get_page(Path('SomeOtherPage'))
self.assertIs(page2, page1)
self.assertEqual(page2.dump('wiki'), ['Test 123\n'])
# Now we change the file and want to see the change
file = LocalFile(page1.source_file.path)
self.assertIsNot(file, page1.source_file)
change_file(file, 'Test 5 6 7 8\n')
page3 = notebook.get_page(Path('SomeOtherPage'))
self.assertIs(page3, page1)
self.assertEqual(page3.dump('wiki'), ['Test 5 6 7 8\n'])
try:
from gi.repository import Gio
except ImportError:
Gio = None
@tests.slowTest
@tests.skipUnless(Gio, 'Trashing not supported, \'gio\' is missing')
class TestTrash(tests.TestCase):
def runTest(self):
notebook = self.setUpNotebook(
mock=tests.MOCK_ALWAYS_REAL,
content={
'TrashMe': 'Test 123\n',
'TrashMe:sub1': 'Test 345\n',
'TrashMe:sub2': 'Test 345\n',
}
)
page = notebook.get_page(Path('TrashMe'))
self.assertTrue(page.exists())
notebook.trash_page(Path('TrashMe'))
page = notebook.get_page(Path('TrashMe'))
self.assertFalse(page.exists())
class TestIndexBackgroundCheck(tests.TestCase):
def runTest(self):
notebook = self.setUpNotebook(content=tests.FULL_NOTEBOOK)
notebook.index.flush()
self.assertFalse(notebook.index.is_uptodate)
notebook.index.start_background_check(notebook)
while notebook.index.background_check.running:
tests.gtk_process_events()
self.assertTrue(notebook.index.is_uptodate)
self.assertTrue(notebook.pages.n_all_pages() > 10)
notebook.index.stop_background_check()
class TestBackgroundSave(tests.TestCase):
def runTest(self):
notebook = self.setUpNotebook()
page = notebook.get_page(Path('Page1'))
tree = WikiParser().parse('test 123\n')
signals = tests.SignalLogger(notebook)
op = notebook.store_page_async(page, tree)
thread = op._thread
while thread.is_alive():
tests.gtk_process_events()
tests.gtk_process_events()
self.assertFalse(op.error_event.is_set())
text = page.dump('wiki')
self.assertEqual(text[-1], 'test 123\n')
self.assertEqual(signals['stored-page'], [(page,)]) # post handler happened as well
class TestFilesLayout(tests.TestCase):
def _test_page_vs_not_a_page(self, folder, layout, pagefile, notapagefile):
self.assertTrue(layout.is_source_file(pagefile))
self.assertFalse(layout.is_source_file(notapagefile))
self.assertEqual(layout.map_file(pagefile), (Path('Page'), FILE_TYPE_PAGE_SOURCE))
self.assertEqual(layout.map_file(notapagefile), (Path(':'), FILE_TYPE_ATTACHMENT))
self.assertEqual(layout.map_filepath(pagefile.relpath(folder)), (Path('Page'), FILE_TYPE_PAGE_SOURCE))
self.assertEqual(layout.map_filepath(notapagefile.relpath(folder)), (Path(':'), FILE_TYPE_ATTACHMENT))
self.assertEqual(layout.index_list_children(Path(':')), [Path('Page')])
def testCheckFirstLineForTextFiles(self):
folder = self.setUpFolder()
pagefile = folder.file('Page.txt')
pagefile.write('Content-Type: text/x-zim-wiki\n\nFoo Bar\n')
notapagefile = folder.file('NotAPage.txt')
notapagefile.write('Foo Bar\n')
layout = FilesLayout(folder, default_extension='.txt')
self._test_page_vs_not_a_page(folder, layout, pagefile, notapagefile)
def testNoCheckFirstLineForNonTextFiles(self):
folder = self.setUpFolder()
pagefile = folder.file('Page.md')
pagefile.write('Foo Bar\n')
notapagefile = folder.file('NotAPage.txt')
notapagefile.write('Foo Bar\n')
layout = FilesLayout(folder, default_extension='.md')
self._test_page_vs_not_a_page(folder, layout, pagefile, notapagefile)
def testInValidFileNamesRejected(self):
folder = self.setUpFolder()
pagefile = folder.file('Page.txt')
pagefile.write('Content-Type: text/x-zim-wiki\n\nFoo Bar\n')
notapagefile = folder.file('Not A Page.txt')
notapagefile.write('Content-Type: text/x-zim-wiki\n\nFoo Bar\n')
layout = FilesLayout(folder, default_extension='.txt')
self._test_page_vs_not_a_page(folder, layout, pagefile, notapagefile)
def testAttachmentsFolderIsinstance(self):
folder = self.setUpFolder()
layout = FilesLayout(folder)
afolder = layout.get_attachments_folder(Path('Test'))
self.assertIsInstance(afolder, Folder)
self.assertIsInstance(afolder, folder.__class__) # Either LocalFolder or MockFolder
|