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.
77 lines
2.1 KiB
77 lines
2.1 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
|
||
|
import re
|
||
|
|
||
|
sleep_time_for_fetch_thread = 3
|
||
|
|
||
|
|
||
|
def test_share_watch(client, live_server):
|
||
|
set_original_response()
|
||
|
live_server_setup(live_server)
|
||
|
|
||
|
test_url = url_for('test_endpoint', _external=True)
|
||
|
css_filter = ".nice-filter"
|
||
|
|
||
|
# 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
|
||
|
|
||
|
# Goto the edit page, add our ignore text
|
||
|
# Add our URL to the import page
|
||
|
res = client.post(
|
||
|
url_for("edit_page", uuid="first"),
|
||
|
data={"css_filter": css_filter, "url": test_url, "tag": "", "headers": "", 'fetch_backend': "html_requests"},
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
assert b"Updated watch." in res.data
|
||
|
# Check it saved
|
||
|
res = client.get(
|
||
|
url_for("edit_page", uuid="first"),
|
||
|
)
|
||
|
assert bytes(css_filter.encode('utf-8')) in res.data
|
||
|
|
||
|
# click share the link
|
||
|
res = client.get(
|
||
|
url_for("api_share_put_watch", uuid="first"),
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b"Share this link:" in res.data
|
||
|
assert b"https://changedetection.io/share/" in res.data
|
||
|
|
||
|
html = res.data.decode()
|
||
|
share_link_search = re.search('<span id="share-link">(.*)</span>', html, re.IGNORECASE)
|
||
|
assert share_link_search
|
||
|
|
||
|
# Now delete what we have, we will try to re-import it
|
||
|
# Cleanup everything
|
||
|
res = client.get(url_for("api_delete", uuid="all"), follow_redirects=True)
|
||
|
assert b'Deleted' in res.data
|
||
|
|
||
|
# Add our URL to the import page
|
||
|
res = client.post(
|
||
|
url_for("import_page"),
|
||
|
data={"urls": share_link_search.group(1)},
|
||
|
follow_redirects=True
|
||
|
)
|
||
|
|
||
|
assert b"1 Imported" in res.data
|
||
|
|
||
|
# Now hit edit, we should see what we expect
|
||
|
# that the import fetched the meta-data
|
||
|
|
||
|
# Check it saved
|
||
|
res = client.get(
|
||
|
url_for("edit_page", uuid="first"),
|
||
|
)
|
||
|
assert bytes(css_filter.encode('utf-8')) in res.data
|