Skip to content

Commit

Permalink
Improve test and logic
Browse files Browse the repository at this point in the history
  • Loading branch information
dgtlmoon committed Aug 19, 2024
1 parent 4e887d1 commit 6a20c1a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
12 changes: 7 additions & 5 deletions changedetectionio/flask_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1380,14 +1380,16 @@ def watch_get_latest_html(uuid):
if watch and watch.history.keys() and os.path.isdir(watch.watch_data_dir):
latest_filename = list(watch.history.keys())[-1]
html_fname = os.path.join(watch.watch_data_dir, f"{latest_filename}.html.br")
if html_fname.endswith('.br'):
# Read and decompress the Brotli file
with open(html_fname, 'rb') as f:
with open(html_fname, 'rb') as f:
if html_fname.endswith('.br'):
# Read and decompress the Brotli file
decompressed_data = brotli.decompress(f.read())
else:
decompressed_data = f.read()

buffer = BytesIO(decompressed_data)
buffer = BytesIO(decompressed_data)

return send_file(buffer, as_attachment=True, download_name=f"{latest_filename}.html", mimetype='text/html')
return send_file(buffer, as_attachment=True, download_name=f"{latest_filename}.html", mimetype='text/html')


# Return a 500 error
Expand Down
14 changes: 7 additions & 7 deletions changedetectionio/tests/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ def test_check_basic_change_detection_functionality(client, live_server, measure

wait_for_all_checks(client)

uuid = extract_UUID_from_client(client)

# Check the 'get latest snapshot works'
res = client.get(url_for("watch_get_latest_html", uuid=uuid))
assert b'which has this one new line' in res.data

# Now something should be ready, indicated by having a 'unviewed' class
res = client.get(url_for("index"))
assert b'unviewed' in res.data
Expand All @@ -86,7 +92,7 @@ def test_check_basic_change_detection_functionality(client, live_server, measure
assert expected_url.encode('utf-8') in res.data

# Following the 'diff' link, it should no longer display as 'unviewed' even after we recheck it a few times
res = client.get(url_for("diff_history_page", uuid="first"))
res = client.get(url_for("diff_history_page", uuid=uuid))
assert b'selected=""' in res.data, "Confirm diff history page loaded"

# Check the [preview] pulls the right one
Expand Down Expand Up @@ -143,18 +149,12 @@ def test_check_basic_change_detection_functionality(client, live_server, measure
assert b'unviewed' not in res.data

# #2458 "clear history" should make the Watch object update its status correctly when the first snapshot lands again
uuid = extract_UUID_from_client(client)
client.get(url_for("clear_watch_history", uuid=uuid))
client.get(url_for("form_watch_checknow"), follow_redirects=True)
wait_for_all_checks(client)
res = client.get(url_for("index"))
assert b'preview/' in res.data


# Check the 'get latest snapshot works'
res = client.get(url_for("watch_get_latest_html", uuid=uuid))
assert b'<head><title>head title</title></head>' in res.data

#
# Cleanup everything
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
Expand Down

0 comments on commit 6a20c1a

Please sign in to comment.