anki/pylib/tests/shared.py

51 lines
1.1 KiB
Python
Raw Normal View History

import os
import shutil
import tempfile
from anki import Collection as aopen
2019-12-25 05:18:34 +01:00
def assertException(exception, func):
found = False
try:
func()
except exception:
found = True
assert found
# Creating new decks is expensive. Just do it once, and then spin off
# copies from the master.
def getEmptyCol():
2014-06-03 10:38:47 +02:00
if len(getEmptyCol.master) == 0:
(fd, nam) = tempfile.mkstemp(suffix=".anki2")
os.close(fd)
os.unlink(nam)
col = aopen(nam)
col.db.close()
2014-06-03 10:38:47 +02:00
getEmptyCol.master = nam
(fd, nam) = tempfile.mkstemp(suffix=".anki2")
2014-06-03 10:38:47 +02:00
shutil.copy(getEmptyCol.master, nam)
2018-01-14 07:58:12 +01:00
col = aopen(nam)
return col
2019-12-25 05:18:34 +01:00
2014-06-03 10:38:47 +02:00
getEmptyCol.master = ""
# Fallback for when the DB needs options passed in.
def getEmptyDeckWith(**kwargs):
(fd, nam) = tempfile.mkstemp(suffix=".anki2")
os.close(fd)
os.unlink(nam)
return aopen(nam, **kwargs)
2019-12-25 05:18:34 +01:00
def getUpgradeDeckPath(name="anki12.anki"):
src = os.path.join(testDir, "support", name)
(fd, dst) = tempfile.mkstemp(suffix=".anki2")
shutil.copy(src, dst)
return dst
2019-12-25 05:18:34 +01:00
testDir = os.path.dirname(__file__)