mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
from pathlib import Path
|
|
|
|
from archivebox.tests.conftest import cli_env, run_archivebox_cmd, run_queued_crawls
|
|
|
|
import pytest
|
|
|
|
from archivebox.core.models import Snapshot
|
|
from archivebox.tests.test_orm_helpers import use_archivebox_db
|
|
from .conftest import resolve_abxpkg_chrome_env
|
|
|
|
pytestmark = pytest.mark.django_db(transaction=True)
|
|
|
|
|
|
def _install_chrome(tmp_path, env):
|
|
env["CHROME_ISOLATION"] = "snapshot"
|
|
env["ABXPKG_LIB_DIR"] = str(tmp_path / "lib")
|
|
install_process = run_archivebox_cmd(
|
|
["install", "chrome"],
|
|
cwd=tmp_path,
|
|
env=env,
|
|
timeout=600,
|
|
)
|
|
assert install_process.returncode == 0, install_process.stderr or install_process.stdout
|
|
env.update(resolve_abxpkg_chrome_env(Path(env["ABXPKG_LIB_DIR"]), env))
|
|
|
|
|
|
def test_title_is_extracted(tmp_path, initialized_archive, recursive_test_site):
|
|
"""Test that title is extracted from the page."""
|
|
env = cli_env(disable_extractors=True)
|
|
env.update({"SAVE_TITLE": "true"})
|
|
_install_chrome(tmp_path, env)
|
|
add_process = run_archivebox_cmd(
|
|
["add", "--plugins=chrome,wget,title", recursive_test_site["root_url"]],
|
|
cwd=tmp_path,
|
|
env=env,
|
|
)
|
|
assert add_process.returncode == 0, add_process.stderr or add_process.stdout
|
|
run_queued_crawls(tmp_path, env=env)
|
|
|
|
with use_archivebox_db(tmp_path):
|
|
title = Snapshot.objects.get().resolved_title
|
|
assert title is not None
|
|
assert "Root" in title
|
|
|
|
|
|
def test_title_is_listed_by_search_alias(tmp_path, initialized_archive, recursive_test_site):
|
|
"""
|
|
https://github.com/ArchiveBox/ArchiveBox/issues/330
|
|
Unencoded content should not be rendered as it facilitates xss injections
|
|
and breaks the layout.
|
|
"""
|
|
env = cli_env(disable_extractors=True)
|
|
env.update({"SAVE_TITLE": "true"})
|
|
_install_chrome(tmp_path, env)
|
|
add_process = run_archivebox_cmd(
|
|
["add", "--plugins=chrome,wget,title", recursive_test_site["root_url"]],
|
|
cwd=tmp_path,
|
|
env=env,
|
|
)
|
|
assert add_process.returncode == 0, add_process.stderr or add_process.stdout
|
|
list_process = run_archivebox_cmd(
|
|
["search"],
|
|
cwd=tmp_path,
|
|
env=env,
|
|
)
|
|
assert list_process.returncode == 0, list_process.stderr or list_process.stdout
|
|
|
|
output = list_process.stdout
|
|
assert recursive_test_site["root_url"] in output
|