9dd54c421b
'\u2068' in position 2724: character maps to <undefined> for pylib/tests/test_stats.py
41 lines
770 B
Python
41 lines
770 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
from tests.shared import getEmptyCol
|
|
|
|
|
|
def test_stats():
|
|
d = getEmptyCol()
|
|
f = d.newNote()
|
|
f["Front"] = "foo"
|
|
d.addNote(f)
|
|
c = f.cards()[0]
|
|
# card stats
|
|
assert d.cardStats(c)
|
|
d.reset()
|
|
c = d.sched.getCard()
|
|
d.sched.answerCard(c, 3)
|
|
d.sched.answerCard(c, 2)
|
|
assert d.cardStats(c)
|
|
|
|
|
|
def test_graphs_empty():
|
|
d = getEmptyCol()
|
|
assert d.stats().report()
|
|
|
|
|
|
def test_graphs():
|
|
from anki import Collection as aopen
|
|
|
|
dir = tempfile.gettempdir()
|
|
|
|
d = aopen(os.path.join(dir, "test.anki2"))
|
|
g = d.stats()
|
|
rep = g.report()
|
|
with open(os.path.join(dir, "test.html"), "w", encoding="UTF-8") as f:
|
|
f.write(rep)
|
|
return
|