mirror of
https://github.com/pirate/ArchiveBox.git
synced 2025-08-21 13:52:30 +02:00
refactor: Replace --index with --with-headers in the list command to make it more explicit. Change it so it affects the csv output too.
This commit is contained in:
committed by
Cristian Vargas
parent
2aa8d69b72
commit
fa622d3e14
@@ -10,10 +10,10 @@ def test_list_json(process, disable_extractors_dict):
|
||||
assert output_json[0]["url"] == "http://127.0.0.1:8080/static/example.com.html"
|
||||
|
||||
|
||||
def test_list_json_index(process, disable_extractors_dict):
|
||||
def test_list_json_headers(process, disable_extractors_dict):
|
||||
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/example.com.html", "--depth=0"],
|
||||
capture_output=True, env=disable_extractors_dict)
|
||||
list_process = subprocess.run(["archivebox", "list", "--json", "--index"], capture_output=True)
|
||||
list_process = subprocess.run(["archivebox", "list", "--json", "--with-headers"], capture_output=True)
|
||||
output_json = json.loads(list_process.stdout.decode("utf-8"))
|
||||
assert output_json["links"][0]["url"] == "http://127.0.0.1:8080/static/example.com.html"
|
||||
|
||||
@@ -25,17 +25,32 @@ def test_list_html(process, disable_extractors_dict):
|
||||
assert "<footer>" not in output_html
|
||||
assert "http://127.0.0.1:8080/static/example.com.html" in output_html
|
||||
|
||||
def test_list_html_index(process, disable_extractors_dict):
|
||||
def test_list_html_headers(process, disable_extractors_dict):
|
||||
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/example.com.html", "--depth=0"],
|
||||
capture_output=True, env=disable_extractors_dict)
|
||||
list_process = subprocess.run(["archivebox", "list", "--html", "--index"], capture_output=True)
|
||||
list_process = subprocess.run(["archivebox", "list", "--html", "--with-headers"], capture_output=True)
|
||||
output_html = list_process.stdout.decode("utf-8")
|
||||
assert "<footer>" in output_html
|
||||
assert "http://127.0.0.1:8080/static/example.com.html" in output_html
|
||||
|
||||
def test_list_csv(process, disable_extractors_dict):
|
||||
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/example.com.html", "--depth=0"],
|
||||
capture_output=True, env=disable_extractors_dict)
|
||||
list_process = subprocess.run(["archivebox", "list", "--csv", "url"], capture_output=True)
|
||||
output_csv = list_process.stdout.decode("utf-8")
|
||||
assert "http://127.0.0.1:8080/static/example.com.html" in output_csv
|
||||
|
||||
def test_list_csv_headers(process, disable_extractors_dict):
|
||||
subprocess.run(["archivebox", "add", "http://127.0.0.1:8080/static/example.com.html", "--depth=0"],
|
||||
capture_output=True, env=disable_extractors_dict)
|
||||
list_process = subprocess.run(["archivebox", "list", "--csv", "url", "--with-headers"], capture_output=True)
|
||||
output_csv = list_process.stdout.decode("utf-8")
|
||||
assert "http://127.0.0.1:8080/static/example.com.html" in output_csv
|
||||
assert "url" in output_csv
|
||||
|
||||
def test_list_index_with_wrong_flags(process):
|
||||
list_process = subprocess.run(["archivebox", "list", "--index"], capture_output=True)
|
||||
assert "--index can only be used with --json or --html options." in list_process.stderr.decode("utf-8")
|
||||
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")
|
||||
|
||||
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"],
|
||||
|
Reference in New Issue
Block a user