aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-10-08 16:44:19 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-10-08 16:44:19 -0700
commit451815af3f0581c654cb38a2aabaef800789d037 (patch)
tree5d246d6b1489d916800616d4aa3920c6fb8593d9
parent984a1b157990f42f8c57815f4b3c00f6455a114f (diff)
downloadfatcat-451815af3f0581c654cb38a2aabaef800789d037.tar.gz
fatcat-451815af3f0581c654cb38a2aabaef800789d037.zip
commit file cleaner tests
-rw-r--r--python/tests/clean_files.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/python/tests/clean_files.py b/python/tests/clean_files.py
new file mode 100644
index 00000000..8a87f218
--- /dev/null
+++ b/python/tests/clean_files.py
@@ -0,0 +1,58 @@
+
+import copy
+import pytest
+from fatcat_tools.cleanups import FileCleaner
+from fatcat_openapi_client import *
+from fixtures import api
+
+
+@pytest.fixture(scope="function")
+def file_cleaner(api):
+ yield FileCleaner(api)
+
+def test_url_cleanups(file_cleaner):
+
+ f = FileEntity(
+ sha1="027e7ed3ea1a40e92dd2657a1e3c992b5dc45dd2",
+ urls=[],
+ )
+
+ f.urls = [
+ FileUrl(url="https://web.archive.org/web/12345542/something.com/blah.pdf", rel="webarchive"),
+ FileUrl(url="https://web.archive.org/web/None/something.com/blah.pdf", rel="webarchive"),
+ FileUrl(url="https://archive.org/details/None/something.com/blah.pdf", rel="repository"),
+ ]
+ f = file_cleaner.clean_entity(f)
+
+ # remove None wayback links
+ assert len(f.urls) == 2
+ for u in f.urls:
+ assert not 'web/None' in u.url
+
+ assert f == file_cleaner.clean_entity(f)
+ assert f == file_cleaner.clean_entity(copy.deepcopy(f))
+
+ # rel=repository -> rel=archive for archive.org links
+ assert f.urls[1].rel == 'archive'
+
+ # short wayback dates
+ f.urls = [
+ FileUrl(url="http://web.archive.org/web/20181031120933/https://www.jstage.jst.go.jp/article/jsci1978/1/1/1_1_231/_pdf", rel="webarchive"),
+ FileUrl(url="http://web.archive.org/web/2018/https://www.jstage.jst.go.jp/article/jsci1978/1/1/1_1_231/_pdf", rel="webarchive"),
+ ]
+ f = file_cleaner.clean_entity(f)
+ assert len(f.urls) == 1
+ assert f.urls[0].url == 'http://web.archive.org/web/20181031120933/https://www.jstage.jst.go.jp/article/jsci1978/1/1/1_1_231/_pdf'
+
+ assert f == file_cleaner.clean_entity(f)
+ assert f == file_cleaner.clean_entity(copy.deepcopy(f))
+
+ f.urls = [
+ FileUrl(url="http://web.archive.org/web/2018/https://www.jstage.jst.go.jp/article/jsci1978/1/1/1_1_231/_pdf", rel="webarchive"),
+ ]
+ f = file_cleaner.clean_entity(f)
+ assert len(f.urls) == 1
+ assert f.urls[0].url == 'http://web.archive.org/web/2018/https://www.jstage.jst.go.jp/article/jsci1978/1/1/1_1_231/_pdf'
+
+ assert f == file_cleaner.clean_entity(f)
+ assert f == file_cleaner.clean_entity(copy.deepcopy(f))