38 lines
876 B
Python
38 lines
876 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
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.card_stats(c.id, include_revlog=True)
|
|
col.reset()
|
|
c = col.sched.getCard()
|
|
col.sched.answerCard(c, 3)
|
|
col.sched.answerCard(c, 2)
|
|
assert col.card_stats(c.id, include_revlog=True)
|
|
|
|
|
|
def test_graphs_empty():
|
|
col = getEmptyCol()
|
|
assert col.stats().report()
|
|
|
|
|
|
def test_graphs():
|
|
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
|