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
|
# Copyright (C) 2010, Nokia (ivan.frade@nokia.com)
# Copyright (C) 2019-2020, Sam Thursfield (sam@afuera.me.uk)
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
#
# TODO:
# These tests are for files... we need to write them for folders!
#
"""
Monitor a test directory and copy/move/remove/update files and folders there.
Check the basic data of the files is updated accordingly in tracker.
"""
import itertools
import logging
import os
import shutil
import time
import unittest as ut
import configuration as cfg
import fixtures
log = logging.getLogger(__name__)
DEFAULT_TEXT = "Some stupid content, to have a test file"
class MinerCrawlTest(fixtures.TrackerMinerTest):
"""
Tests crawling and monitoring of configured content locations.
"""
def setUp(self):
# We must create the test data before the miner does its
# initial crawl, or it may miss some files due
# https://gitlab.gnome.org/GNOME/tracker-miners/issues/79.
monitored_files = self.create_test_data()
try:
# Start the miner.
fixtures.TrackerMinerTest.setUp(self)
for tf in monitored_files:
url = self.uri(tf)
self.tracker.ensure_resource(
fixtures.DOCUMENTS_GRAPH,
f"a nfo:Document ; nie:isStoredAs <{url}>",
timeout=cfg.AWAIT_TIMEOUT,
)
except Exception:
cfg.remove_monitored_test_dir(self.workdir)
raise
logging.info("%s.setUp(): complete", self)
def create_test_data(self):
monitored_files = [
"test-monitored/file1.txt",
"test-monitored/dir1/file2.txt",
"test-monitored/dir1/dir2/file3.txt",
]
unmonitored_files = ["test-no-monitored/file0.txt"]
for tf in itertools.chain(monitored_files, unmonitored_files):
testfile = self.path(tf)
os.makedirs(os.path.dirname(testfile), exist_ok=True)
with open(testfile, "w") as f:
f.write(DEFAULT_TEXT)
return monitored_files
def __get_text_documents(self):
return self.tracker.query(
"""
SELECT DISTINCT ?url WHERE {
?u a nfo:TextDocument ;
nie:isStoredAs/nie:url ?url.
}
"""
)
def __get_parent_urn(self, filepath):
result = self.tracker.query(
"""
SELECT DISTINCT ?p WHERE {
?u a nfo:FileDataObject ;
nie:url \"%s\" ;
nfo:belongsToContainer ?p
}
"""
% (self.uri(filepath))
)
self.assertEqual(len(result), 1)
return result[0][0]
def __get_file_urn(self, filepath):
result = self.tracker.query(
"""
SELECT DISTINCT ?ia WHERE {
?u a nfo:FileDataObject ;
nie:interpretedAs ?ia ;
nie:url \"%s\" .
}
"""
% (self.uri(filepath))
)
self.assertEqual(len(result), 1)
return result[0][0]
"""
Boot the miner with the correct configuration and check everything is fine
"""
def test_01_initial_crawling(self):
"""
The precreated files and folders should be there
"""
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
# We don't check (yet) folders, because Applications module is injecting results
# class copy(TestUpdate):
# FIXME all tests in one class because the miner-fs restarting takes some time (~5 sec)
# Maybe we can move the miner-fs initialization to setUpModule and then move these
# tests to different classes
def test_02_copy_from_unmonitored_to_monitored(self):
"""
Copy an file from unmonitored directory to monitored directory
and verify if data base is updated accordingly
"""
source = os.path.join(self.workdir, "test-no-monitored", "file0.txt")
dest = os.path.join(self.workdir, "test-monitored", "file0.txt")
with self.await_document_inserted(dest) as resource:
shutil.copyfile(source, dest)
dest_id = resource.id
# Verify if miner indexed this file.
result = self.__get_text_documents()
self.assertEqual(len(result), 4)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/file0.txt"), unpacked_result)
# Clean the new file so the test directory is as before
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, dest_id, timeout=cfg.AWAIT_TIMEOUT
):
os.remove(dest)
def test_03_copy_from_monitored_to_unmonitored(self):
"""
Copy an file from a monitored location to an unmonitored location
Nothing should change
"""
# Copy from monitored to unmonitored
source = os.path.join(self.workdir, "test-monitored", "file1.txt")
dest = os.path.join(self.workdir, "test-no-monitored", "file1.txt")
shutil.copyfile(source, dest)
time.sleep(1)
# Nothing changed
result = self.__get_text_documents()
self.assertEqual(len(result), 3, "Results:" + str(result))
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
# Clean the file
os.remove(dest)
def test_04_copy_from_monitored_to_monitored(self):
"""
Copy a file between monitored directories
"""
source = os.path.join(self.workdir, "test-monitored", "file1.txt")
dest = os.path.join(
self.workdir, "test-monitored", "dir1", "dir2", "file-test04.txt"
)
with self.await_document_inserted(dest) as resource:
shutil.copyfile(source, dest)
dest_id = resource.id
result = self.__get_text_documents()
self.assertEqual(len(result), 4)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
self.assertIn(
self.uri("test-monitored/dir1/dir2/file-test04.txt"), unpacked_result
)
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, dest_id, timeout=cfg.AWAIT_TIMEOUT
):
os.remove(dest)
self.assertEqual(3, self.tracker.count_instances("nfo:TextDocument"))
@ut.skip("https://gitlab.gnome.org/GNOME/tracker-miners/issues/56")
def test_05_move_from_unmonitored_to_monitored(self):
"""
Move a file from unmonitored to monitored directory
"""
source = os.path.join(self.workdir, "test-no-monitored", "file0.txt")
dest = os.path.join(self.workdir, "test-monitored", "dir1", "file-test05.txt")
with self.await_document_inserted(dest) as resource:
shutil.move(source, dest)
dest_id = resource.id
result = self.__get_text_documents()
self.assertEqual(len(result), 4)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file-test05.txt"), unpacked_result)
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, dest_id, timeout=cfg.AWAIT_TIMEOUT
):
os.remove(dest)
self.assertEqual(3, self.tracker.count_instances("nfo:TextDocument"))
## """ move operation and tracker-miner response test cases """
# class move(TestUpdate):
def test_06_move_from_monitored_to_unmonitored(self):
"""
Move a file from monitored to unmonitored directory
"""
source = self.path("test-monitored/dir1/file2.txt")
dest = self.path("test-no-monitored/file2.txt")
source_id = self.tracker.get_content_resource_id(self.uri(source))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, source_id, timeout=cfg.AWAIT_TIMEOUT
):
shutil.move(source, dest)
result = self.__get_text_documents()
self.assertEqual(len(result), 2)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
with self.await_document_inserted(source):
shutil.move(dest, source)
self.assertEqual(3, self.tracker.count_instances("nfo:TextDocument"))
def test_07_move_from_monitored_to_monitored(self):
"""
Move a file between monitored directories
"""
source = self.path("test-monitored/dir1/file2.txt")
dest = self.path("test-monitored/file2.txt")
source_dir_urn = self.__get_file_urn(os.path.dirname(source))
parent_before = self.__get_parent_urn(source)
self.assertEqual(source_dir_urn, parent_before)
resource_id = self.tracker.get_content_resource_id(url=self.uri(source))
with self.await_document_uri_change(resource_id, source, dest):
shutil.move(source, dest)
# Checking fix for NB#214413: After a move operation, nfo:belongsToContainer
# should be changed to the new one
dest_dir_urn = self.__get_file_urn(os.path.dirname(dest))
parent_after = self.__get_parent_urn(dest)
self.assertNotEqual(parent_before, parent_after)
self.assertEqual(dest_dir_urn, parent_after)
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
# Restore the file
with self.await_document_uri_change(resource_id, dest, source):
shutil.move(dest, source)
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
def test_08_deletion_single_file(self):
"""
Delete one of the files
"""
victim = self.path("test-monitored/dir1/file2.txt")
victim_id = self.tracker.get_content_resource_id(self.uri(victim))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, victim_id, timeout=cfg.AWAIT_TIMEOUT
):
os.remove(victim)
result = self.__get_text_documents()
self.assertEqual(len(result), 2)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
# Restore the file
with self.await_document_inserted(victim):
with open(victim, "w") as f:
f.write("Don't panic, everything is fine")
def test_09_deletion_directory(self):
"""
Delete a directory
"""
victim = self.path("test-monitored/dir1")
file_inside_victim_url = self.uri(os.path.join(victim, "file2.txt"))
file_inside_victim_id = self.tracker.get_content_resource_id(
file_inside_victim_url
)
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, file_inside_victim_id, timeout=cfg.AWAIT_TIMEOUT
):
shutil.rmtree(victim)
# We have 2 text files inside the directory, but only look for one, assert that
# the other file is gone as well.
file_inside_victim_url2 = self.uri(os.path.join(victim, "dir2/file3.txt"))
counter = 0
while counter < 10 and self.tracker.ask(
"ASK { <%s> a nfo:FileDataObject }" % (file_inside_victim_url2)
):
counter += 1
time.sleep(1)
result = self.__get_text_documents()
self.assertEqual(result, [[self.uri("test-monitored/file1.txt")]])
# Restore the dirs
os.makedirs(self.path("test-monitored/dir1"))
os.makedirs(self.path("test-monitored/dir1/dir2"))
for f in [
"test-monitored/dir1/file2.txt",
"test-monitored/dir1/dir2/file3.txt",
]:
filename = self.path(f)
with self.await_document_inserted(filename):
with open(filename, "w") as f:
f.write("Don't panic, everything is fine")
# Check everything is fine
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
def test_10_folder_update(self):
"""
Check that updating a folder updates nfo:belongsToContainer on its children
"""
directory_uri = self.uri("test-monitored")
directory = self.path("test-monitored")
document = self.path("test-monitored/unrelated.txt")
urn = self.__get_file_urn(directory)
with self.await_document_inserted(document) as resource:
# Force an update on the monitored folder, it needs both
# a explicit request, and an attribute change (obtained
# indirectly by the new file)
with open(document, "w") as f:
f.write(DEFAULT_TEXT)
self.miner_fs.index_location(directory_uri, [], [])
new_urn = self.__get_file_urn(directory)
# Ensure that children remain consistent, old and new ones
self.assertEqual(
new_urn, self.__get_parent_urn(self.path("test-monitored/file1.txt"))
)
self.assertEqual(
self.__get_parent_urn(document),
self.__get_parent_urn(self.path("test-monitored/file1.txt")),
)
def test_11_move_from_visible_to_hidden(self):
"""
Move a file from monitored to unmonitored directory
"""
source = self.path("test-monitored/dir1/file2.txt")
dest = self.path("test-monitored/dir1/.file2.txt")
source_id = self.tracker.get_content_resource_id(self.uri(source))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, source_id, timeout=cfg.AWAIT_TIMEOUT
):
shutil.move(source, dest)
result = self.__get_text_documents()
self.assertEqual(len(result), 2)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
def test_12_move_from_hidden_to_visible(self):
"""
Move a file from monitored to unmonitored directory
"""
source = self.path("test-monitored/dir1/.hidden.txt")
dest = self.path("test-monitored/dir1/visible.txt")
with open(source, "w") as f:
f.write(DEFAULT_TEXT)
with self.await_document_inserted(dest) as resource:
shutil.move(source, dest)
result = self.__get_text_documents()
self.assertEqual(len(result), 4)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/visible.txt"), unpacked_result)
def test_13_move_directory_from_visible_to_hidden_and_back(self):
"""
Move a directory from monitored to unmonitored
"""
file = self.path("test-monitored/dir1/file2.txt")
source = self.path("test-monitored/dir1")
dest = self.path("test-monitored/.dir1")
file_id = self.tracker.get_content_resource_id(self.uri(file))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, file_id, timeout=cfg.AWAIT_TIMEOUT
):
os.rename(source, dest)
result = self.__get_text_documents()
self.assertEqual(len(result), 1)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
"""
And move it back to the same place
"""
with self.await_document_inserted(file) as resource:
shutil.move(dest, source)
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
def test_14_trigger_parent_hidden(self):
"""
Insert a file triggering parent to be hidden
"""
file = self.path("test-monitored/dir1/.nomedia")
doc = self.path("test-monitored/dir1/file2.txt")
doc_id = self.tracker.get_content_resource_id(self.uri(doc))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, doc_id, timeout=cfg.AWAIT_TIMEOUT
):
with open(file, "w") as f:
f.write(DEFAULT_TEXT)
result = self.__get_text_documents()
self.assertEqual(len(result), 1)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
def test_15_monitor_nofollow_symlinks(self):
"""
Insert a file triggering parent to be hidden
"""
source = self.path("test-no-monitored")
dest = self.path("test-monitored/folder")
deleted = self.path("test-monitored/file1.txt")
deleted_id = self.tracker.get_content_resource_id(self.uri(deleted))
with self.tracker.await_delete(
fixtures.DOCUMENTS_GRAPH, deleted_id, timeout=cfg.AWAIT_TIMEOUT
):
os.symlink(source, dest)
os.remove(deleted)
result = self.__get_text_documents()
self.assertEqual(len(result), 2)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/dir1/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/dir2/file3.txt"), unpacked_result)
query = "ASK { <%s> a nfo:FileDataObject }" % self.uri(dest)
result = self.tracker.query(query)
self.assertEqual(result[0][0], "true")
query = "ASK { ?u nie:isStoredAs <%s> }" % self.uri(dest)
result = self.tracker.query(query)
self.assertEqual(result[0][0], "false")
def test_16_folder_update_offline(self):
"""
Check that updating a folder deletes the old nfo:Folder
"""
directory_uri = self.uri("test-monitored/dir1")
document_uri = self.uri("test-monitored/dir1/unrelated.txt")
dest_uri = self.uri("test-monitored/dir1/unrelated2.txt")
directory = self.path("test-monitored/dir1")
document = self.path("test-monitored/dir1/unrelated.txt")
dest = self.path("test-monitored/dir1/unrelated2.txt")
ie_urn = self.__get_file_urn(directory)
self.assertResourceExists(ie_urn)
# Create a dir to overwrite the original first, to guarantee
# a different inode.
os.makedirs(self.path("zzz"))
self.sandbox.stop_daemon('org.freedesktop.LocalSearch3')
# Replace the dir
shutil.rmtree(directory)
shutil.move(self.path("zzz"), directory)
conn = self.miner_fs.get_sparql_connection()
# Write document
with self.await_document_inserted(document) as resource:
with open(document, "w") as f:
f.write(DEFAULT_TEXT)
new_ie_urn = self.__get_file_urn(directory)
self.assertNotEqual(new_ie_urn, ie_urn)
self.assertResourceMissing(ie_urn)
self.assertResourceExists(new_ie_urn)
self.assertResourceExists(document_uri)
query = "SELECT ?u { ?u nie:isStoredAs <%s> }" % self.uri(directory)
result = self.tracker.query(query)
self.assertEqual(len(result), 1)
self.assertEqual(result[0][0], new_ie_urn)
query = "SELECT ?u { <%s> nie:interpretedAs ?u }" % self.uri(directory)
result = self.tracker.query(query)
self.assertEqual(len(result), 1)
self.assertEqual(result[0][0], new_ie_urn)
# Move document
resource_id = self.tracker.get_content_resource_id(document_uri)
dest = self.path("test-monitored/dir1/unrelated2.txt")
with self.await_document_uri_change(resource_id, document, dest):
shutil.move(document, dest)
self.assertResourceMissing(document_uri)
self.assertResourceExists(dest_uri)
class IndexedFolderTest(fixtures.TrackerMinerTest):
"""
Tests handling of data across multiple data sources
"""
def setUp(self):
# We must create the test data before the miner does its
# initial crawl, or it may miss some files due
# https://gitlab.gnome.org/GNOME/tracker-miners/issues/79.
monitored_files = self.create_test_data()
try:
# Start the miner.
fixtures.TrackerMinerTest.setUp(self)
for tf in monitored_files:
url = self.uri(tf)
self.tracker.ensure_resource(
fixtures.DOCUMENTS_GRAPH,
f"a nfo:Document ; nie:isStoredAs <{url}>",
timeout=cfg.AWAIT_TIMEOUT,
)
except Exception:
cfg.remove_monitored_test_dir(self.workdir)
raise
logging.info("%s.setUp(): complete", self)
def create_test_data(self):
monitored_files = [
"test-monitored/file1.txt",
"test-monitored/dir1/file3.txt",
"test-non-recursive/file2.txt",
]
unmonitored_files = ["test-no-monitored/file0.txt"]
for tf in monitored_files:
testfile = self.path(tf)
os.makedirs(os.path.dirname(testfile), exist_ok=True)
with open(testfile, "w") as f:
f.write(DEFAULT_TEXT)
return monitored_files
def __get_text_documents(self):
return self.tracker.query(
"""
SELECT DISTINCT ?url WHERE {
?u a nfo:TextDocument ;
nie:isStoredAs/nie:url ?url.
}
"""
)
def __get_index_folder(self, filepath):
result = self.tracker.query(
"""
SELECT DISTINCT ?p WHERE {
?u a nfo:FileDataObject ;
nie:url \"%s\" ;
nie:dataSource/nie:isStoredAs ?p
}
"""
% (self.uri(filepath))
)
self.assertEqual(len(result), 1)
return result[0][0]
"""
Move a file between indexed folders and check the data source changed
"""
def test_01_move_between_indexed_folders(self):
"""
The precreated files and folders should be there
"""
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file3.txt"), unpacked_result)
self.assertIn(self.uri("test-non-recursive/file2.txt"), unpacked_result)
source = os.path.join(self.workdir, "test-non-recursive", "file2.txt")
dest = os.path.join(self.workdir, "test-monitored", "file2.txt")
datasource1 = self.__get_index_folder(source);
self.assertEqual(datasource1, self.uri("test-non-recursive"))
with self.await_document_inserted(dest) as resource:
shutil.move(source, dest)
result = self.__get_text_documents()
self.assertEqual(len(result), 3)
unpacked_result = [r[0] for r in result]
self.assertIn(self.uri("test-monitored/file1.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/file2.txt"), unpacked_result)
self.assertIn(self.uri("test-monitored/dir1/file3.txt"), unpacked_result)
# The file was moved to test-monitored
datasource2 = self.__get_index_folder(dest);
self.assertEqual(datasource2, self.uri("test-monitored"))
self.assertNotEqual(datasource1, datasource2)
if __name__ == "__main__":
fixtures.tracker_test_main()
|