-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI - Ability to highlight text and have it offered as a ignore-text o…
…ption, really nice easy way to set ignores on changing text (#1746)
- Loading branch information
Showing
7 changed files
with
174 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/usr/bin/python3 | ||
|
||
import time | ||
from flask import url_for | ||
from .util import live_server_setup, wait_for_all_checks | ||
from changedetectionio import html_tools | ||
from . util import extract_UUID_from_client | ||
|
||
def set_original_ignore_response(): | ||
test_return_data = """<html> | ||
<body> | ||
Some initial text<br> | ||
<p>Which is across multiple lines</p> | ||
<br> | ||
So let's see what happens. <br> | ||
<p>oh yeah 456</p> | ||
</body> | ||
</html> | ||
""" | ||
|
||
with open("test-datastore/endpoint-content.txt", "w") as f: | ||
f.write(test_return_data) | ||
|
||
|
||
def test_highlight_ignore(client, live_server): | ||
live_server_setup(live_server) | ||
set_original_ignore_response() | ||
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 | ||
|
||
# Give the thread time to pick it up | ||
wait_for_all_checks(client) | ||
uuid = extract_UUID_from_client(client) | ||
# use the highlighter endpoint | ||
res = client.post( | ||
url_for("highlight_submit_ignore_url", uuid=uuid), | ||
data={"mode": 'digit-regex', 'selection': 'oh yeah 123'}, | ||
follow_redirects=True | ||
) | ||
|
||
res = client.get(url_for("edit_page", uuid=uuid)) | ||
|
||
# should be a regex now | ||
assert b'/oh\ yeah\ \d+/' in res.data | ||
|
||
# Should return a link | ||
assert b'href' in res.data | ||
|
||
# And it should register in the preview page | ||
res = client.get(url_for("preview_page", uuid=uuid)) | ||
assert b'<div class="ignored">oh yeah 456' in res.data |