9dc3cf216a
* PEP8 dbproxy.py * PEP8 errors.py * PEP8 httpclient.py * PEP8 lang.py * PEP8 latex.py * Add decorator to deprectate key words * Make replacement for deprecated attribute optional * Use new helper `_print_replacement_warning()` * PEP8 media.py * PEP8 rsbackend.py * PEP8 sound.py * PEP8 stdmodels.py * PEP8 storage.py * PEP8 sync.py * PEP8 tags.py * PEP8 template.py * PEP8 types.py * Fix DeprecatedNamesMixinForModule The class methods need to be overridden with instance methods, so every module has its own dicts. * Use `# pylint: disable=invalid-name` instead of id * PEP8 utils.py * Only decorate `__getattr__` with `@no_type_check` * Fix mypy issue with snakecase Importing it from `anki._vendor` raises attribute errors. * Format * Remove inheritance of DeprecatedNamesMixin There's almost no shared code now and overriding classmethods with instance methods raises mypy issues. * Fix traceback frames of deprecation warnings * remove fn/TimedLog (dae) Neither Anki nor add-ons appear to have been using it * fix some issues with stringcase use (dae) - the wheel was depending on the PyPI version instead of our vendored version - _vendor:stringcase should not have been listed in the anki py_library. We already include the sources in py_srcs, and need to refer to them directly. By listing _vendor:stringcase as well, we were making a top-level stringcase library available, which would have only worked for distributing because the wheel definition was also incorrect. - mypy errors are what caused me to mistakenly add the above - they were because the type: ignore at the top of stringcase.py was causing mypy to completely ignore the file, so it was not aware of any attributes it contained.
84 lines
2.7 KiB
Python
84 lines
2.7 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
# coding: utf-8
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
from tests.shared import getEmptyCol, testDir
|
|
|
|
|
|
# copying files to media folder
|
|
def test_add():
|
|
col = getEmptyCol()
|
|
dir = tempfile.mkdtemp(prefix="anki")
|
|
path = os.path.join(dir, "foo.jpg")
|
|
with open(path, "w") as note:
|
|
note.write("hello")
|
|
# new file, should preserve name
|
|
assert col.media.add_file(path) == "foo.jpg"
|
|
# adding the same file again should not create a duplicate
|
|
assert col.media.add_file(path) == "foo.jpg"
|
|
# but if it has a different sha1, it should
|
|
with open(path, "w") as note:
|
|
note.write("world")
|
|
assert (
|
|
col.media.add_file(path) == "foo-7c211433f02071597741e6ff5a8ea34789abbf43.jpg"
|
|
)
|
|
|
|
|
|
def test_strings():
|
|
col = getEmptyCol()
|
|
mf = col.media.files_in_str
|
|
mid = col.models.current()["id"]
|
|
assert mf(mid, "aoeu") == []
|
|
assert mf(mid, "aoeu<img src='foo.jpg'>ao") == ["foo.jpg"]
|
|
assert mf(mid, "aoeu<img src='foo.jpg' style='test'>ao") == ["foo.jpg"]
|
|
assert mf(mid, "aoeu<img src='foo.jpg'><img src=\"bar.jpg\">ao") == [
|
|
"foo.jpg",
|
|
"bar.jpg",
|
|
]
|
|
assert mf(mid, "aoeu<img src=foo.jpg style=bar>ao") == ["foo.jpg"]
|
|
assert mf(mid, "<img src=one><img src=two>") == ["one", "two"]
|
|
assert mf(mid, 'aoeu<img src="foo.jpg">ao') == ["foo.jpg"]
|
|
assert mf(mid, 'aoeu<img src="foo.jpg"><img class=yo src=fo>ao') == [
|
|
"foo.jpg",
|
|
"fo",
|
|
]
|
|
assert mf(mid, "aou[sound:foo.mp3]aou") == ["foo.mp3"]
|
|
sp = col.media.strip
|
|
assert sp("aoeu") == "aoeu"
|
|
assert sp("aoeu[sound:foo.mp3]aoeu") == "aoeuaoeu"
|
|
assert sp("a<img src=yo>oeu") == "aoeu"
|
|
es = col.media.escape_media_filenames
|
|
assert es("aoeu") == "aoeu"
|
|
assert es("<img src='http://foo.com'>") == "<img src='http://foo.com'>"
|
|
assert es('<img src="foo bar.jpg">') == '<img src="foo%20bar.jpg">'
|
|
|
|
|
|
def test_deckIntegration():
|
|
col = getEmptyCol()
|
|
# create a media dir
|
|
col.media.dir()
|
|
# put a file into it
|
|
file = str(os.path.join(testDir, "support", "fake.png"))
|
|
col.media.add_file(file)
|
|
# add a note which references it
|
|
note = col.newNote()
|
|
note["Front"] = "one"
|
|
note["Back"] = "<img src='fake.png'>"
|
|
col.addNote(note)
|
|
# and one which references a non-existent file
|
|
note = col.newNote()
|
|
note["Front"] = "one"
|
|
note["Back"] = "<img src='fake2.png'>"
|
|
col.addNote(note)
|
|
# and add another file which isn't used
|
|
with open(os.path.join(col.media.dir(), "foo.jpg"), "w") as note:
|
|
note.write("test")
|
|
# check media
|
|
ret = col.media.check()
|
|
assert ret.missing == ["fake2.png"]
|
|
assert ret.unused == ["foo.jpg"]
|