anki/pylib/tests/test_stats.py

38 lines
826 B
Python
Raw Normal View History

2021-04-13 10:45:05 +02:00
# Copyright: Ankitects Pty Ltd and contributors
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
2019-12-25 05:18:34 +01:00
import os
2019-12-25 22:00:10 +01:00
import tempfile
2019-12-25 05:18:34 +01:00
from tests.shared import getEmptyCol
def test_stats():
col = getEmptyCol()
note = col.newNote()
note["Front"] = "foo"
col.addNote(note)
c = note.cards()[0]
# card stats
assert col.cardStats(c)
col.reset()
c = col.sched.getCard()
col.sched.answerCard(c, 3)
col.sched.answerCard(c, 2)
assert col.cardStats(c)
2019-12-25 05:18:34 +01:00
def test_graphs_empty():
col = getEmptyCol()
assert col.stats().report()
2019-12-25 05:18:34 +01:00
def test_graphs():
2019-12-25 22:00:10 +01:00
dir = tempfile.gettempdir()
col = getEmptyCol()
g = col.stats()
rep = g.report()
with open(os.path.join(dir, "test.html"), "w", encoding="UTF-8") as note:
note.write(rep)
return