mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
25470edb2c
* integrate ublock with single-file * reuse chromium profile
119 lines
4.6 KiB
Python
119 lines
4.6 KiB
Python
import gzip
|
|
import os
|
|
import subprocess
|
|
from unittest import mock
|
|
|
|
from django.test import TestCase, override_settings
|
|
|
|
from bookmarks.services import singlefile
|
|
|
|
|
|
class SingleFileServiceTestCase(TestCase):
|
|
html_content = "<html><body><h1>Hello, World!</h1></body></html>"
|
|
html_filepath = "temp.html.gz"
|
|
temp_html_filepath = "temp.html.gz.tmp"
|
|
|
|
def tearDown(self):
|
|
if os.path.exists(self.html_filepath):
|
|
os.remove(self.html_filepath)
|
|
if os.path.exists(self.temp_html_filepath):
|
|
os.remove(self.temp_html_filepath)
|
|
|
|
def create_test_file(self, *args, **kwargs):
|
|
with open(self.temp_html_filepath, "w") as file:
|
|
file.write(self.html_content)
|
|
|
|
def test_create_snapshot(self):
|
|
mock_process = mock.Mock()
|
|
mock_process.wait.return_value = 0
|
|
self.create_test_file()
|
|
|
|
with mock.patch("subprocess.Popen", return_value=mock_process):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
self.assertTrue(os.path.exists(self.html_filepath))
|
|
self.assertFalse(os.path.exists(self.temp_html_filepath))
|
|
|
|
with gzip.open(self.html_filepath, "rt") as file:
|
|
content = file.read()
|
|
self.assertEqual(content, self.html_content)
|
|
|
|
def test_create_snapshot_failure(self):
|
|
# subprocess fails - which it probably doesn't as single-file doesn't return exit codes
|
|
with mock.patch("subprocess.Popen") as mock_popen:
|
|
mock_popen.side_effect = subprocess.CalledProcessError(1, "command")
|
|
|
|
with self.assertRaises(singlefile.SingeFileError):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
# so also check that it raises error if output file isn't created
|
|
with mock.patch("subprocess.Popen"):
|
|
with self.assertRaises(singlefile.SingeFileError):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
def test_create_snapshot_empty_options(self):
|
|
mock_process = mock.Mock()
|
|
mock_process.wait.return_value = 0
|
|
self.create_test_file()
|
|
|
|
with mock.patch("subprocess.Popen") as mock_popen:
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
expected_args = [
|
|
"single-file",
|
|
'--browser-arg="--headless=new"',
|
|
'--browser-arg="--user-data-dir=./chromium-profile"',
|
|
'--browser-arg="--no-sandbox"',
|
|
'--browser-arg="--load-extension=uBlock0.chromium"',
|
|
"http://example.com",
|
|
self.html_filepath + ".tmp",
|
|
]
|
|
mock_popen.assert_called_with(expected_args, start_new_session=True)
|
|
|
|
@override_settings(
|
|
LD_SINGLEFILE_OPTIONS='--some-option "some value" --another-option "another value" --third-option="third value"'
|
|
)
|
|
def test_create_snapshot_custom_options(self):
|
|
mock_process = mock.Mock()
|
|
mock_process.wait.return_value = 0
|
|
self.create_test_file()
|
|
|
|
with mock.patch("subprocess.Popen") as mock_popen:
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
expected_args = [
|
|
"single-file",
|
|
'--browser-arg="--headless=new"',
|
|
'--browser-arg="--user-data-dir=./chromium-profile"',
|
|
'--browser-arg="--no-sandbox"',
|
|
'--browser-arg="--load-extension=uBlock0.chromium"',
|
|
"--some-option",
|
|
"some value",
|
|
"--another-option",
|
|
"another value",
|
|
"--third-option=third value",
|
|
"http://example.com",
|
|
self.html_filepath + ".tmp",
|
|
]
|
|
mock_popen.assert_called_with(expected_args, start_new_session=True)
|
|
|
|
def test_create_snapshot_default_timeout_setting(self):
|
|
mock_process = mock.Mock()
|
|
mock_process.wait.return_value = 0
|
|
self.create_test_file()
|
|
|
|
with mock.patch("subprocess.Popen", return_value=mock_process):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
mock_process.wait.assert_called_with(timeout=120)
|
|
|
|
@override_settings(LD_SINGLEFILE_TIMEOUT_SEC=180)
|
|
def test_create_snapshot_custom_timeout_setting(self):
|
|
mock_process = mock.Mock()
|
|
mock_process.wait.return_value = 0
|
|
self.create_test_file()
|
|
|
|
with mock.patch("subprocess.Popen", return_value=mock_process):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|
|
|
|
mock_process.wait.assert_called_with(timeout=180)
|