mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
fix tests
This commit is contained in:
parent
0090d36d23
commit
354b4627ed
2 changed files with 4 additions and 4 deletions
|
@ -50,7 +50,7 @@ def test_list_csv_headers(process, disable_extractors_dict):
|
||||||
|
|
||||||
def test_list_index_with_wrong_flags(process):
|
def test_list_index_with_wrong_flags(process):
|
||||||
list_process = subprocess.run(["archivebox", "list", "--with-headers"], capture_output=True)
|
list_process = subprocess.run(["archivebox", "list", "--with-headers"], capture_output=True)
|
||||||
assert "--with-headers can only be used with --json, --html or --csv options." in list_process.stderr.decode("utf-8")
|
assert "--with-headers can only be used with --json, --html or --csv options" in list_process.stderr.decode("utf-8")
|
||||||
|
|
||||||
def test_link_sort_by_url(process, disable_extractors_dict):
|
def test_link_sort_by_url(process, disable_extractors_dict):
|
||||||
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/iana.org.html", "--depth=0"],
|
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/iana.org.html", "--depth=0"],
|
||||||
|
@ -64,4 +64,4 @@ def test_link_sort_by_url(process, disable_extractors_dict):
|
||||||
|
|
||||||
list_process = subprocess.run(["archivebox", "list", "--sort=url"], capture_output=True)
|
list_process = subprocess.run(["archivebox", "list", "--sort=url"], capture_output=True)
|
||||||
link_list = list_process.stdout.decode("utf-8").split("\n")
|
link_list = list_process.stdout.decode("utf-8").split("\n")
|
||||||
assert "http://127.0.0.1:8080/static/example.com.html" in link_list[0]
|
assert "http://127.0.0.1:8080/static/example.com.html" in link_list[0]
|
||||||
|
|
|
@ -104,8 +104,8 @@ def test_remove_before(tmp_path, process, disable_extractors_dict):
|
||||||
conn.commit()
|
conn.commit()
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
lowerts = lowerts[0].split(".")[0]
|
lowerts = lowerts[0]
|
||||||
higherts = higherts[0].split(".")[0]
|
higherts = higherts[0]
|
||||||
|
|
||||||
# before is less than, so only the lower snapshot gets deleted
|
# before is less than, so only the lower snapshot gets deleted
|
||||||
subprocess.run(['archivebox', 'remove', '--filter-type=regex', '.*', '--yes', '--delete', '--before', higherts], capture_output=True)
|
subprocess.run(['archivebox', 'remove', '--filter-type=regex', '.*', '--yes', '--delete', '--before', higherts], capture_output=True)
|
||||||
|
|
Loading…
Reference in a new issue