# 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.addFile(path) == "foo.jpg" # adding the same file again should not create a duplicate assert col.media.addFile(path) == "foo.jpg" # but if it has a different sha1, it should with open(path, "w") as note: note.write("world") assert col.media.addFile(path) == "foo-7c211433f02071597741e6ff5a8ea34789abbf43.jpg" def test_strings(): col = getEmptyCol() mf = col.media.filesInStr mid = col.models.current()["id"] assert mf(mid, "aoeu") == [] assert mf(mid, "aoeuao") == ["foo.jpg"] assert mf(mid, "aoeuao") == ["foo.jpg"] assert mf(mid, "aoeuao") == [ "foo.jpg", "bar.jpg", ] assert mf(mid, "aoeuao") == ["foo.jpg"] assert mf(mid, "") == ["one", "two"] assert mf(mid, 'aoeuao') == ["foo.jpg"] assert mf(mid, 'aoeuao') == [ "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("aoeu") == "aoeu" es = col.media.escapeImages assert es("aoeu") == "aoeu" assert es("") == "" assert es('') == '' 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.addFile(file) # add a note which references it note = col.newNote() note["Front"] = "one" note["Back"] = "" col.addNote(note) # and one which references a non-existent file note = col.newNote() note["Front"] = "one" note["Back"] = "" 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"]