You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.5 KiB
95 lines
2.5 KiB
3 years ago
|
#!/usr/bin/python3
|
||
|
|
||
|
import time
|
||
|
from flask import url_for
|
||
|
from urllib.request import urlopen
|
||
|
from .util import set_original_response, set_modified_response, live_server_setup
|
||
|
|
||
|
sleep_time_for_fetch_thread = 3
|
||
|
|
||
|
def test_setup(live_server):
|
||
|
live_server_setup(live_server)
|
||
|
|
||
|
def test_check_basic_change_detection_functionality_source(client, live_server):
|
||
|
set_original_response()
|
||
|
test_url = 'source:'+url_for('test_endpoint', _external=True)
|
||
|
# Add our URL to the import page
|
||
|
res = client.post(
|
||
|
url_for("import_page"),
|
||
|
data={"urls": test_url},
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b"1 Imported" in res.data
|
||
|
|
||
|
time.sleep(sleep_time_for_fetch_thread)
|
||
|
|
||
|
#####################
|
||
|
|
||
|
# Check HTML conversion detected and workd
|
||
|
res = client.get(
|
||
|
url_for("preview_page", uuid="first"),
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
# Check this class DOES appear (that we didnt see the actual source)
|
||
|
assert b'foobar-detection' in res.data
|
||
|
|
||
|
# Make a change
|
||
|
set_modified_response()
|
||
|
|
||
|
# Force recheck
|
||
|
res = client.get(url_for("api_watch_checknow"), follow_redirects=True)
|
||
|
assert b'1 watches are queued for rechecking.' in res.data
|
||
|
|
||
|
time.sleep(5)
|
||
|
|
||
|
# Now something should be ready, indicated by having a 'unviewed' class
|
||
|
res = client.get(url_for("index"))
|
||
|
assert b'unviewed' in res.data
|
||
|
|
||
|
res = client.get(
|
||
|
url_for("diff_history_page", uuid="first"),
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b'<title>modified head title' in res.data
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
def test_check_ignore_elements(client, live_server):
|
||
|
set_original_response()
|
||
|
|
||
|
time.sleep(2)
|
||
|
test_url = 'source:'+url_for('test_endpoint', _external=True)
|
||
|
# Add our URL to the import page
|
||
|
res = client.post(
|
||
|
url_for("import_page"),
|
||
|
data={"urls": test_url},
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b"1 Imported" in res.data
|
||
|
|
||
|
time.sleep(sleep_time_for_fetch_thread)
|
||
|
|
||
|
#####################
|
||
|
# We want <span> and <p> ONLY, but ignore span with .foobar-detection
|
||
|
|
||
|
res = client.post(
|
||
|
url_for("edit_page", uuid="first"),
|
||
|
data={"css_filter": 'span,p', "url": test_url, "tag": "", "subtractive_selectors": ".foobar-detection", 'fetch_backend': "html_requests"},
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
time.sleep(sleep_time_for_fetch_thread)
|
||
|
|
||
|
res = client.get(
|
||
|
url_for("preview_page", uuid="first"),
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b'foobar-detection' not in res.data
|
||
|
assert b'<br' not in res.data
|
||
|
assert b'<p' in res.data
|