def test_creator_redirection(fpath, lipsum_item): # ensure we can't add if not started c = Creator(fpath) with pytest.raises(RuntimeError, match="not started"): c.add_redirection("home", "hello", HOME_PATH) del c with Creator(fpath) as c: c.add_item(lipsum_item) c.add_redirection("home", "hello", HOME_PATH) c.add_redirection("accueil", "bonjour", HOME_PATH) zim = Archive(fpath) assert zim.entry_count == 3 assert zim.has_entry_by_path("home") is True assert zim.has_entry_by_path("accueil") is True assert zim.get_entry_by_path("home").is_redirect assert (zim.get_entry_by_path("home").get_redirect_entry().path == zim.get_entry_by_path(HOME_PATH).path) assert zim.get_entry_by_path("accueil").get_item().path == HOME_PATH assert "home" in list(zim.suggest("hello")) assert "accueil" in list(zim.suggest("bonjour"))
def test_reader_get_entries( all_zims, filename, test_path, test_title, test_mimetype, test_size, test_content_includes, ): zim = Archive(all_zims / filename) # entries with pytest.raises(KeyError): zim.get_entry_by_path("___missing") if test_path: assert zim.has_entry_by_path(test_path) entry = zim.get_entry_by_path(test_path) assert entry.title == test_title assert entry.path == test_path assert test_path in str(entry) assert test_title in str(entry) item = entry.get_item() assert item.title == test_title assert item.path == test_path assert test_path in str(item) assert test_title in str(item) assert item.mimetype == test_mimetype assert item.size == test_size assert isinstance(item.content, memoryview) assert test_content_includes in bytes(item.content).decode("UTF-8") with pytest.raises(KeyError): zim.get_entry_by_title("___missing") if test_title: assert zim.has_entry_by_title(test_title) assert zim.get_entry_by_title(test_title).path == entry.path