fix: Remove link from sql index on remove command

This commit is contained in:
Cristian 2020-07-23 15:07:00 -05:00
parent 4cb671ae61
commit fe0884f1ec
3 changed files with 27 additions and 3 deletions

8
tests/test_remove.py Normal file
View file

@ -0,0 +1,8 @@
from .fixtures import *
def test_remove_leaves_index_in_consistent_state(tmp_path, process):
os.chdir(tmp_path)
subprocess.run(['archivebox', 'add', 'http://127.0.0.1:8080/static/example.com.html'], capture_output=True)
remove_process = subprocess.run(['archivebox', 'remove', '127.0.0.1:8080/static/example.com.html', '--yes'], capture_output=True)
list_process = subprocess.run(['archivebox', 'list'], capture_output=True)
assert "Warning: SQL index does not match JSON index!" not in list_process.stderr.decode("utf-8")