#!/usr/bin/python3 import time from flask import url_for from .util import live_server_setup, wait_for_all_checks def test_setup(live_server): live_server_setup(live_server) # Should be the same as set_original_ignore_response() but with a little more whitespacing def set_original_ignore_response_but_with_whitespace(): test_return_data = """ Some initial text

Which is across multiple lines



So let's see what happens.
""" with open("test-datastore/endpoint-content.txt", "w") as f: f.write(test_return_data) def set_original_ignore_response(): test_return_data = """ Some initial text

Which is across multiple lines


So let's see what happens.
""" with open("test-datastore/endpoint-content.txt", "w") as f: f.write(test_return_data) # If there was only a change in the whitespacing, then we shouldnt have a change detected def test_check_ignore_whitespace(client, live_server): # Give the endpoint time to spin up time.sleep(1) set_original_ignore_response() # Goto the settings page, add our ignore text res = client.post( url_for("settings_page"), data={ "requests-time_between_check-minutes": 180, "application-ignore_whitespace": "y", "application-fetch_backend": "html_requests" }, follow_redirects=True ) assert b"Settings updated." in res.data # Add our URL to the import page test_url = url_for('test_endpoint', _external=True) res = client.post( url_for("import_page"), data={"urls": test_url}, follow_redirects=True ) assert b"1 Imported" in res.data wait_for_all_checks(client) # Trigger a check client.get(url_for("form_watch_checknow"), follow_redirects=True) set_original_ignore_response_but_with_whitespace() wait_for_all_checks(client) # Trigger a check client.get(url_for("form_watch_checknow"), follow_redirects=True) # Give the thread time to pick it up wait_for_all_checks(client) # It should report nothing found (no new 'unviewed' class) res = client.get(url_for("index")) assert b'unviewed' not in res.data assert b'/test-endpoint' in res.data