mirror of
https://github.com/sissbruecker/linkding
synced 2025-02-17 04:48:22 +00:00
* Add basic HTML snapshots * Implement asset list * Add snapshot creation tests * Add deletion tests * Show file size * Remove snapshots * Create new snapshots * Switch to single-file * CSS tweak * Remove auto refresh * Show delete link when there is no file yet * Add current date to display name * Add flag for snapshot support * Add option for disabling automatic snapshots * Make snapshots sharable * Document image variants * Update README.md * Add migrations * Fix tests
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
import gzip
|
|
import os
|
|
from unittest import mock
|
|
import subprocess
|
|
|
|
from django.test import TestCase
|
|
|
|
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):
|
|
with mock.patch("subprocess.run") as mock_run:
|
|
mock_run.side_effect = self.create_test_file
|
|
|
|
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.run") as mock_run:
|
|
mock_run.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.run") as mock_run:
|
|
with self.assertRaises(singlefile.SingeFileError):
|
|
singlefile.create_snapshot("http://example.com", self.html_filepath)
|