aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/api_files.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-07 18:23:09 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-07 18:23:09 -0700
commitfb4b999d5a7d36acd29e26d36c37f1a57dab0eb6 (patch)
treec7ab473a3071c5488684de73e904eb5634001b30 /python/tests/api_files.py
parent75a824c0fd5697f7748f57f09e022bce97d32e0c (diff)
downloadfatcat-fb4b999d5a7d36acd29e26d36c37f1a57dab0eb6.tar.gz
fatcat-fb4b999d5a7d36acd29e26d36c37f1a57dab0eb6.zip
basic tests for entity deletion, fetch redirects
Diffstat (limited to 'python/tests/api_files.py')
-rw-r--r--python/tests/api_files.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/tests/api_files.py b/python/tests/api_files.py
index 41318e25..377b5798 100644
--- a/python/tests/api_files.py
+++ b/python/tests/api_files.py
@@ -45,6 +45,16 @@ def test_file(api):
assert f1edit.revision == f2_rev.revision
assert f2.revision == f2_rev.revision
+ # get redirects (none)
+ assert api.get_file_redirects(f2.ident) == []
+
+ # delete
+ eg = quick_eg(api)
+ api.delete_file(f2.ident, editgroup_id=eg.editgroup_id)
+ api.accept_editgroup(eg.editgroup_id)
+ f2 = api.get_file(f2.ident)
+ assert f2.state == "deleted"
+
def test_file_examples(api):
api.lookup_file(sha256='ffc1005680cb620eec4c913437dfabbf311b535cfe16cbaeb2faec1f92afc362')